KosmoKrator

productivity

Google Tasks MCP Gateway for AI Agents

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

11 functions 9 read 2 write OAuth browser flow auth

Google Tasks MCP Gateway

Expose Google Tasks to MCP clients with `kosmokrator mcp:serve --integration=google_tasks`.

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=google_tasks --write=deny --json
{
  "mcpServers": {
    "kosmokrator-google_tasks": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=google_tasks",
        "--write=deny"
      ]
    }
  }
}

Serve Manually

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

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP Tool Names (11 tools)
MCP toolSource functionType
integration__google_tasks__google_tasks_clear_completed google_tasks.google_tasks_clear_completed Read read
integration__google_tasks__google_tasks_complete google_tasks.google_tasks_complete Read read
integration__google_tasks__google_tasks_create google_tasks.google_tasks_create Read read
integration__google_tasks__google_tasks_create_list google_tasks.google_tasks_create_list Write write
integration__google_tasks__google_tasks_delete google_tasks.google_tasks_delete Read read
integration__google_tasks__google_tasks_delete_list google_tasks.google_tasks_delete_list Write write
integration__google_tasks__google_tasks_move google_tasks.google_tasks_move Read read
integration__google_tasks__google_tasks_get_task google_tasks.google_tasks_get_task Read read
integration__google_tasks__google_tasks_list_lists google_tasks.google_tasks_list_lists Read read
integration__google_tasks__google_tasks_list_tasks google_tasks.google_tasks_list_tasks Read read
integration__google_tasks__google_tasks_update google_tasks.google_tasks_update Read read

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.