Merged
Conversation
Update Kotlin to version 2.2.0 to match kotlin-sdk 0.7.0+ requirements. Build completes successfully with all tests passing. Part of kotlin-sdk 0.7.2 integration. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Update MCP SDK version from 0.5.0 to 0.7.2, addressing breaking changes in the addTool API signature. Changes: - Updated mcpSdk version in libs.versions.toml to 0.7.2 - Fixed ToolRegistryTest.kt to match new addTool signature with named parameters (name, description, inputSchema, title, outputSchema, toolAnnotations, handler) The new SDK requires explicit named parameters for all addTool arguments including optional parameters and the handler function. Build successful with all tests passing. Part of kotlin-sdk 0.7.2 integration. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Document the upgrade from kotlin-sdk 0.5.0 to 0.7.2, including: - Dependency version updates (Kotlin 2.2.0, kotlin-sdk 0.7.2) - Single breaking change fix (addTool API signature) - Validation results (all tests pass, Docker build successful) Notes that expected breaking changes (callbacks, JSON serialization) did not affect the codebase as code was already compatible. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
- Added optional title property to ToolDefinition with default null value - Updated ToolRegistry.registerWithServer() to pass title to server.addTool() - Maintains backward compatibility - existing tools without titles continue working - Enables better tool organization and discoverability in MCP clients 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Added optional outputSchema property to ToolDefinition with default null value - Updated ToolRegistry.registerWithServer() to pass outputSchema to server.addTool() - Maintains backward compatibility - existing tools without schemas continue working - Enables structured output definitions for better agent workflow integration (n8n, Zapier) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Added descriptive titles to improve discoverability in MCP clients: Task Management Tools (6): - create_task → "Create New Task" - get_task → "Get Task Details" - update_task → "Update Task" - delete_task → "Delete Task" - search_tasks → "Search Tasks" - get_overview → "Get Project Overview" Feature Management Tools (6): - create_feature → "Create New Feature" - get_feature → "Get Feature Details" - update_feature → "Update Feature" - delete_feature → "Delete Feature" - search_features → "Search Features" - get_feature_tasks → "Get Feature Tasks" 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Added descriptive titles to improve discoverability in MCP clients: Project Management Tools (5): - create_project → "Create New Project" - get_project → "Get Project Details" - update_project → "Update Project" - delete_project → "Delete Project" - search_projects → "Search Projects" Dependency Management Tools (3): - create_dependency → "Create Task Dependency" - get_task_dependencies → "Get Task Dependencies" - delete_dependency → "Delete Task Dependency" Progress: 20/39 tools completed 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Added descriptive titles to improve discoverability in MCP clients: Template Management Tools (9): - create_template → "Create New Template" - get_template → "Get Template Details" - update_template_metadata → "Update Template Metadata" - delete_template → "Delete Template" - list_templates → "List Available Templates" - apply_template → "Apply Template to Entity" - add_template_section → "Add Section to Template" - enable_template → "Enable Template" - disable_template → "Disable Template" Progress: 29/39 tools completed 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Added descriptive titles to improve discoverability in MCP clients: Section Management Tools (10): - add_section → "Add Section to Entity" - get_sections → "Get Entity Sections" - update_section → "Update Section" - update_section_text → "Update Section Text" - update_section_metadata → "Update Section Metadata" - delete_section → "Delete Section" - bulk_create_sections → "Bulk Create Sections" - bulk_update_sections → "Bulk Update Sections" - bulk_delete_sections → "Bulk Delete Sections" - reorder_sections → "Reorder Sections" Progress: 39/39 tools completed ✅ All MCP tools now have user-friendly titles for better organization and discoverability in MCP clients (Claude Code, n8n, Zapier, etc.) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Add comprehensive Tool.Output schemas for all 6 task management tools: - create_task: includes task object with optional appliedTemplates - update_task: updated task object with all fields - get_task: task with optional feature, sections, and dependencies - delete_task: deletion confirmation with counts - search_tasks: paginated results with items and pagination - get_overview: hierarchical structure with features and orphaned tasks Output schemas enable structured response formatting for better integration with agent workflow systems and provide clear API contracts. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Document recent enhancements to MCP tool infrastructure: - Output schemas for Task Management tools - Tool titles for all 39 tools - ToolDefinition and ToolRegistry enhancements 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Add Tool.Output schemas to all 5 feature management tools: - CreateFeatureTool: feature creation with optional templates - GetFeatureTool: feature retrieval with optional relations - UpdateFeatureTool: feature updates - DeleteFeatureTool: feature deletion with cascade info - SearchFeaturesTool: paginated feature search results Schemas document complete response structures including standard fields (success, message, data, error, metadata) and tool-specific data properties for better integration with agent workflow systems. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Add Tool.Output schemas to all 3 dependency management tools: - CreateDependencyTool: dependency creation with validation - GetTaskDependenciesTool: dependency retrieval with filtering - DeleteDependencyTool: flexible dependency deletion Schemas document complete response structures including dependency relationships, counts, filters, and deletion results for better integration with agent workflow systems. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Add Tool.Output schemas to UpdateProjectTool, DeleteProjectTool, and SearchProjectsTool defining structured output formats. Completes Project management tools portion of kotlin-sdk 0.7.2 output schema integration. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Add Tool.Output schemas to all 10 section management tools including AddSectionTool, GetSectionsTool, UpdateSectionTool, DeleteSectionTool, UpdateSectionTextTool, UpdateSectionMetadataTool, BulkCreateSectionsTool, BulkUpdateSectionsTool, BulkDeleteSectionsTool, and ReorderSectionsTool. Completes Section management tools portion of kotlin-sdk 0.7.2 output schema integration. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Add Tool.Output schemas to all 9 template management tools including CreateTemplateTool, GetTemplateTool, ListTemplatesTool, ApplyTemplateTool, UpdateTemplateMetadataTool, DeleteTemplateTool, AddTemplateSectionTool, EnableTemplateTool, and DisableTemplateTool. Completes Template management tools portion and finishes the entire kotlin-sdk 0.7.2 output schema integration task. All 39 tools now have properly defined output schemas. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Added changelog entries for: - Project Management tools (5 tools) - Section Management tools (10 tools) - Template Management tools (9 tools) All 39 MCP tools now have complete output schema definitions for better agent integration and type safety. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Bumped from 1.0.2 to 1.1.0 to reflect new features: - Output schemas for all 39 MCP tools - Tool titles for better discoverability - kotlin-sdk 0.7.2 integration complete This is a minor version bump as all changes are backward compatible feature additions. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Changed version qualifier to "alpha-01" to indicate this is a pre-release version on the feature branch. The version will be finalized to 1.1.0 when merged to main. Full version: 1.1.0.138-alpha-01 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
jpicklyk
added a commit
that referenced
this pull request
Oct 14, 2025
Comprehensive documentation for get_blocked_tasks tool including: API Reference: - Added to natural language mapping examples - Added to task management tools list - Created dedicated "Workflow Management with get_blocked_tasks" section - Included usage examples, response format, and AI patterns - Added bottleneck analysis and sprint planning workflows AI Guidelines: - Added Workflow Optimization Pattern (#8) to Task Management Patterns - Created comprehensive "Workflow Management and Blocked Tasks Patterns" section - Included bottleneck identification, sprint planning, and daily standup patterns - Added AI decision tree for blocked task scenarios - Documented common usage patterns for workflow optimization 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.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
Upgrades the MCP kotlin-sdk from 0.5.0 to 0.7.2 and integrates new output schema capabilities across all 39 MCP tools. This release adds structured output formatting and tool titles
for better agent integration and discoverability.
Changes
SDK Upgrade (kotlin-sdk 0.5.0 → 0.7.2)
Output Schema Integration
✅ Added
Tool.Outputschemas to all 39 MCP tools:bulk_update_sections, bulk_delete_sections, reorder_sections
disable_template
✅ All schemas define complete response structures with:
Tool Enhancements
titleproperty to all 39 toolstitleandoutputSchemapropertiesDocumentation & Versioning
Testing
./gradlew test)./gradlew compileKotlin)Impact
Breaking Changes
None - all changes are backward compatible additions.
Related Issues
🤖 Generated with Claude Code
Co-Authored-By: Claude noreply@anthropic.com
For the PR title, use:
feat: kotlin-sdk 0.7.2 integration with output schemas