KosmoKrator

productivity

Todoist MCP Gateway for AI Agents

Expose Todoist tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.

21 functions 9 read 12 write Bearer token auth

Todoist MCP Gateway

Expose Todoist to MCP clients with `kosmokrator mcp:serve --integration=todoist`.

If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.

curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
kosmokrator mcp:gateway:install --integration=todoist --write=deny --json
{
  "mcpServers": {
    "kosmokrator-todoist": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=todoist",
        "--write=deny"
      ]
    }
  }
}

Serve Manually

kosmokrator mcp:serve --integration=todoist --write=deny

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP Tool Names (21 tools)
MCP toolSource functionType
integration__todoist__todoist_close_task todoist.todoist_close_task Write write
integration__todoist__todoist_create_comment todoist.todoist_create_comment Write write
integration__todoist__todoist_create_project todoist.todoist_create_project Write write
integration__todoist__todoist_create_section todoist.todoist_create_section Write write
integration__todoist__todoist_create_task todoist.todoist_create_task Write write
integration__todoist__todoist_delete_project todoist.todoist_delete_project Write write
integration__todoist__todoist_delete_section todoist.todoist_delete_section Write write
integration__todoist__todoist_delete_task todoist.todoist_delete_task Write write
integration__todoist__todoist_get_current_user todoist.todoist_get_current_user Read read
integration__todoist__todoist_get_project todoist.todoist_get_project Read read
integration__todoist__todoist_get_section todoist.todoist_get_section Read read
integration__todoist__todoist_get_task todoist.todoist_get_task Read read
integration__todoist__todoist_list_comments todoist.todoist_list_comments Read read
integration__todoist__todoist_list_labels todoist.todoist_list_labels Read read
integration__todoist__todoist_list_projects todoist.todoist_list_projects Read read
integration__todoist__todoist_list_sections todoist.todoist_list_sections Read read
integration__todoist__todoist_list_tasks todoist.todoist_list_tasks Read read
integration__todoist__todoist_quick_add todoist.todoist_quick_add Write write
integration__todoist__todoist_reopen_task todoist.todoist_reopen_task Write write
integration__todoist__todoist_update_project todoist.todoist_update_project Write write
integration__todoist__todoist_update_task todoist.todoist_update_task Write write

Write Access

Start with --write=deny for read-only MCP clients. Use --write=ask or --write=allow only when the client and workspace are trusted.