Add MCP tool annotations to chunker and PM servers#1779
Merged
Conversation
Adds ToolAnnotations to all 28 tools across 2 MCP servers: chunker_server (7 tools): - chunk_text, chunk_markdown, semantic_chunk, sentence_chunk - fixed_size_chunk, analyze_text, get_strategies pm_mcp_server (21 tools): - Planning: generate_work_breakdown, build_schedule, critical_path_analysis, produce_gantt_diagram, schedule_optimizer, scope_guardrails, sprint_planning_helper - Governance: risk_register_manager, change_request_tracker, baseline_vs_actual, earned_value_calculator - Reporting: status_report_generator, project_health_dashboard, project_brief_generator, lessons_learned_catalog, document_template_library - Collaboration: meeting_minutes_summarizer, action_item_tracker, resource_allocator, stakeholder_matrix, communications_planner - Utility: glossary_lookup, sample_data_catalog All tools are computational/analytical with: - readOnlyHint=True (no external state modification) - openWorldHint=False (no external API/network access) These annotations help AI assistants understand tool capabilities for safer and more effective tool selection. 🤖 Generated with [Claude Code](https://claude.com/claude-code)
Member
|
Good catch, yes, annotations help, thanks for the PR. Reviewing and merging soon :-) |
kcostell06
pushed a commit
to kcostell06/mcp-context-forge
that referenced
this pull request
Feb 24, 2026
Adds ToolAnnotations to all 28 tools across 2 MCP servers: chunker_server (7 tools): - chunk_text, chunk_markdown, semantic_chunk, sentence_chunk - fixed_size_chunk, analyze_text, get_strategies pm_mcp_server (21 tools): - Planning: generate_work_breakdown, build_schedule, critical_path_analysis, produce_gantt_diagram, schedule_optimizer, scope_guardrails, sprint_planning_helper - Governance: risk_register_manager, change_request_tracker, baseline_vs_actual, earned_value_calculator - Reporting: status_report_generator, project_health_dashboard, project_brief_generator, lessons_learned_catalog, document_template_library - Collaboration: meeting_minutes_summarizer, action_item_tracker, resource_allocator, stakeholder_matrix, communications_planner - Utility: glossary_lookup, sample_data_catalog All tools are computational/analytical with: - readOnlyHint=True (no external state modification) - openWorldHint=False (no external API/network access) These annotations help AI assistants understand tool capabilities for safer and more effective tool selection. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: triepod-ai <noreply@github.com>
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
ToolAnnotationsto all 28 tools across 2 MCP servers to help AI assistants understand tool capabilities.Changes
chunker_server (7 tools):
chunk_text,chunk_markdown,semantic_chunk,sentence_chunkfixed_size_chunk,analyze_text,get_strategiespm_mcp_server (21 tools):
generate_work_breakdown,build_schedule,critical_path_analysis,produce_gantt_diagram,schedule_optimizer,scope_guardrails,sprint_planning_helperrisk_register_manager,change_request_tracker,baseline_vs_actual,earned_value_calculatorstatus_report_generator,project_health_dashboard,project_brief_generator,lessons_learned_catalog,document_template_librarymeeting_minutes_summarizer,action_item_tracker,resource_allocator,stakeholder_matrix,communications_plannerglossary_lookup,sample_data_catalogAnnotation Details
All tools are computational/analytical with:
readOnlyHint=True- No external state modificationopenWorldHint=False- No external API/network accessWhy This Matters
MCP Tool Annotations help AI assistants understand:
Testing
🤖 Generated with Claude Code