Skip to main content
Base URL: http://localhost:3100 The MCP server exposes task management as tools for LLM applications.

Endpoint

POST /mcp     # JSON-RPC transport
GET  /mcp     # SSE transport
DELETE /mcp   # Close connection

Available tools

list_tasks

List tasks with optional filters.
ParameterTypeDescription
statusstringFilter by status
prioritystringFilter by priority

get_task

Fetch a single task by ID.
ParameterTypeDescription
idnumberTask ID

update_task

Modify task fields.
ParameterTypeDescription
idnumberTask ID
statusstringNew status
prioritystringNew priority
labelsstring[]New labels
descriptionstringAppended description

delete_task

Remove a task.
ParameterTypeDescription
idnumberTask ID
Hybrid search across tasks.
ParameterTypeDescription
querystringSearch query

find_duplicates

Find similar tasks using vector similarity.
ParameterTypeDescription
textstringText to compare

set_task_status

Change a task’s status.
ParameterTypeDescription
idnumberTask ID
statusstringNew status