feat(capabilities): advertise protocolVersion/pluginVersion in ping; 404 on unknown route - #20
Closed
D3vCrow wants to merge 1 commit into
Closed
feat(capabilities): advertise protocolVersion/pluginVersion in ping; 404 on unknown route#20D3vCrow wants to merge 1 commit into
D3vCrow wants to merge 1 commit into
Conversation
…4 on unknown route
New MCPCapabilities.cs (ProtocolVersion=1, PluginVersion=2.27.0). /api/ping now
carries both so the MCP server can feature-detect this plugin and degrade
gracefully on version drift. Unknown routes return a typed {error,unknownRoute}
dict, mapped to HTTP 404 on the direct sync path so a route miss cannot read as
HTTP-200 success (queued path keeps its in-band error; server detects both).
Pattern ported (not copied) from Unity ML-Agents UnityRLCapabilities.
Ref: knowledge/research/2026-07-12-vet-unity-ml-agents.md
NOTE: not yet compiler-verified - needs a Unity recompile (domain reload).
Contributor
|
Thank you for this, @D3vCrow — the capability-handshake idea (advertise Closing as superseded by the forward-port — but the idea and the credit are yours. 🙏 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Plugin half of a capability handshake so the server can negotiate features across version drift.
protocolVersionandpluginVersion.Pairs with the server-side
protocolVersiongate. No behavior change for existing routes.