From 52308931aee0db5a77bbe59884c1a8fad0b92360 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 11 Feb 2026 11:46:45 +0000 Subject: [PATCH] feat: add Todoist MCP server definition Add Todoist remote MCP server with OAuth at ai.todoist.net/mcp. Enables managing tasks, projects, and labels via Doist's official server. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/com.todoist-mcp.json | 45 ++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 servers/com.todoist-mcp.json diff --git a/servers/com.todoist-mcp.json b/servers/com.todoist-mcp.json new file mode 100644 index 0000000..d288f02 --- /dev/null +++ b/servers/com.todoist-mcp.json @@ -0,0 +1,45 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.todoist-mcp", + "name": "Todoist", + "alias": "todoist", + "description": "Manage Todoist tasks, projects, and labels through Doist's official remote MCP server with OAuth authentication.", + "icon": "https://avatars.githubusercontent.com/u/2565372?v=4", + "schema_version": "2.1", + "categories": ["productivity"], + "tags": ["todoist", "tasks", "todo", "project-management", "productivity", "doist"], + + "transport": { + "type": "http", + "url": "https://ai.todoist.net/mcp", + "metadata": { + "inputs": [] + } + }, + + "auth": { + "type": "oauth", + "instructions": "Connect via OAuth when prompted by your MCP client. You will be redirected to Todoist to authorize access via browser." + }, + + "contributor": { + "name": "Doist", + "github": "Doist", + "url": "https://todoist.com" + }, + + "links": { + "repository": "https://github.com/Doist/todoist-ai", + "homepage": "https://todoist.com", + "documentation": "https://github.com/Doist/todoist-ai#readme" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +}