feat(mcp): add get_task tool for fetching single task with full details#70
Open
jeeshofone wants to merge 1 commit intosirsjg:mainfrom
Open
feat(mcp): add get_task tool for fetching single task with full details#70jeeshofone wants to merge 1 commit intosirsjg:mainfrom
jeeshofone wants to merge 1 commit intosirsjg:mainfrom
Conversation
Adds a new get_task MCP tool that returns a single task by ID with all fields including comments and blocked status. This allows agents to fetch detailed task info on demand rather than relying on list_tasks which returns all tasks with all comments, causing token limit issues for LLMs. Closes sirsjg#67
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.
Problem
As reported in #67, the
list_tasksMCP response includes all task comments, causing responses to grow very large over time (222K+ characters reported). This can exceed LLM token limits.Solution
Adds a new
get_taskMCP tool that returns a single task by ID with all fields including comments and blocked status. This lets agents fetch detailed task info on demand rather than relying solely onlist_tasks.New tool
get_task— acceptstask_id(required), returns the full task object with comments and blocked status.No breaking changes
list_tasksbehavior is unchanged.Closes #67