| name | one-list-work |
| description | List planned, shipped, blocked, and open work across One Horizon initiatives, bugs, and Todos. Use when asked "what's on my plate", "what did I ship", "show blockers", "what initiatives are active", "show open bugs", "what should I pick up next", or "what is the team working on". Requires One Horizon MCP. |
List Work
Query work in One Horizon. Choose the MCP tool that matches the user's question.
Instructions
Descriptions are trimmed in list output. Use get-task-details for full context on any task.
Planned work
Call list-planned-work:
list-planned-work()
Team or member scope:
list-planned-work({ "teamId": "<teamId>", "userId": "<userId>", "includeInitiatives": true })
Planned work is the broad view. It can include roadmap initiatives, ongoing work, and linked follow-up items depending on the workspace.
Completed work
Call list-completed-work:
list-completed-work({
"startDate": "2024-01-20T00:00:00Z",
"endDate": "2024-01-26T23:59:59Z",
"includeInitiatives": true
})
Blockers
Call list-blockers:
list-blockers({ "includeInitiatives": true })
Team scope:
list-blockers({ "teamId": "<teamId>", "includeInitiatives": true })
Initiatives
Call list-initiatives:
list-initiatives({
"workspaceId": "<workspaceId>",
"statuses": ["Open", "Planned", "In Progress", "In Review"],
"includeHierarchy": true
})
If statuses is omitted, defaults to active statuses (Open, Planned, In Progress, In Review).
Call this when the user is asking specifically about roadmap work rather than the broader planned-work view.
Bugs
Call list-bugs:
list-bugs({
"workspaceId": "<workspaceId>",
"statuses": ["Open", "Planned", "In Progress", "In Review"],
"teamIds": ["<teamId>"],
"assigneeIds": ["<userId>"]
})
If statuses is omitted, defaults to Idea, Open, Planned, In Progress, and In Review.