feat: Add tool annotations for improved LLM tool understanding#17
Open
bryankthompson wants to merge 1 commit into
Open
feat: Add tool annotations for improved LLM tool understanding#17bryankthompson wants to merge 1 commit into
bryankthompson wants to merge 1 commit into
Conversation
Add readOnlyHint annotations to all 5 recipe query tools to help LLMs understand that these are safe, read-only operations. Changes: - mcp_howtocook_getAllRecipes: title="Get All Recipes", readOnlyHint=true - mcp_howtocook_getRecipesByCategory: title="Get Recipes by Category", readOnlyHint=true - mcp_howtocook_getRecipeById: title="Get Recipe by ID", readOnlyHint=true - mcp_howtocook_recommendMeals: title="Recommend Weekly Meals", readOnlyHint=true - mcp_howtocook_whatToEat: title="What to Eat", readOnlyHint=true This enables MCP clients to auto-approve these safe operations and improves tool selection accuracy. 🤖 Generated with [Claude Code](https://claude.com/claude-code)
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.
Summary
Adds MCP tool annotations (
readOnlyHint,title) to all 5 recipe query tools to help LLMs understand that these are safe, read-only operations.Changes
All tools receive
readOnlyHint: trueannotation with English titles:mcp_howtocook_getAllRecipesreadOnlyHint: truemcp_howtocook_getRecipesByCategoryreadOnlyHint: truemcp_howtocook_getRecipeByIdreadOnlyHint: truemcp_howtocook_recommendMealsreadOnlyHint: truemcp_howtocook_whatToEatreadOnlyHint: trueWhy This Matters
Tool annotations provide semantic metadata that:
Testing
npm run build)tools/listreturns all 5 tools with annotationsBefore/After
Before:
After: