feat: support MCP tool hints mapped to ToolAnnotations#239
Open
feat: support MCP tool hints mapped to ToolAnnotations#239
Conversation
b835b79 to
5369009
Compare
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.
Related Issue
Closes #200
What does this PR do?
Adds support for MCP tool hints — optional behavioral metadata on tools that maps to
ToolAnnotationsin the MCP protocol (spec 2025-11-25).Capability authors can now declare
hintson any MCP tool with four advisory properties:readOnly— tool does not modify its environmentdestructive— tool may perform destructive updatesidempotent— repeating the call has no additional effectopenWorld— tool interacts with external entitiesThese are YAML-facing names (no
Hintsuffix — thehintsparent provides context). On the wire, they map to the MCP spec field names (readOnlyHint,destructiveHint, etc.) inside theannotationsobject.The existing
labelfield continues to map to bothTool.titleandannotations.title.Example YAML:
Changes by layer:
McpToolHintsdefinition +hintsproperty onMcpToolMcpToolHintsSpecclass +hintsfield onMcpServerToolSpecMcpServerAdapter.buildMcpTool()maps hints →McpSchema.ToolAnnotations;ProtocolDispatcher.handleToolsList()emitsannotationsin the wire responsehintsonget-current-weatherTests
McpToolHintsIntegrationTest(7 tests):buildToolAnnotations()mapping: hints + label, label-only, neithertools/listresponse includesannotationswith correct MCP field names, omits absent hints, omitsannotationsentirely when no hints or labelAll 395 existing tests pass (0 failures, 0 errors).
Checklist
mainAgent Context (optional)