INDIVIDUAL MCP TOOL
task_list
List tasks as a table of id, project, column, title, priority, due, estimate, actual and tags, sorted by due date, with the total estimate.
LIVE ENDPOINT
https://mcp.zovo.one/mcp/standup
Connect to this endpoint to inspect the live schema for task_list and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.mcp-kanban]
url = "https://mcp.zovo.one/mcp/standup"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"mcp-kanban": {
"type": "http",
"url": "https://mcp.zovo.one/mcp/standup"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: mcp-kanban
Remote MCP URL: https://mcp.zovo.one/mcp/standup
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"mcp-kanban": {
"url": "https://mcp.zovo.one/mcp/standup"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"mcp-kanban": {
"type": "http",
"url": "https://mcp.zovo.one/mcp/standup"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "mcp-kanban",
"transport": "streamable-http",
"url": "https://mcp.zovo.one/mcp/standup"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
license_status— Report this endpoint's licence state for your token as JSON: the product, the tier free or pro, why it is not Pro, and the checkout URL.license_activate— Turn Pro on for this connection with key, an MCPL1.task_add— Add one task to a board and return its id, board and column.task_move— Move one task to another column of its own board and report the old and new column.task_update— Change a task by id: only the fields you pass are touched.task_done— Mark one task finished: it moves to the board's done column (named done, else the last) and is stamped, leaving task_list and the open counts.task_delete— Delete one task by id, permanently; the id is never reused.task_search— Find tasks whose id, title, notes or tags contain the query, across every board, finished ones included.