KosmoKrator

productivity

Wrike MCP Gateway for AI Agents

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

14 functions 10 read 4 write Bearer token auth

Wrike MCP Gateway

Expose Wrike to MCP clients with `kosmokrator mcp:serve --integration=wrike`.

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

Serve Manually

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

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP Tool Names (14 tools)
MCP toolSource functionType
integration__wrike__wrike_create_task wrike.wrike_create_task Write write
integration__wrike__wrike_get_task wrike.wrike_get_task Read read
integration__wrike__wrike_update_task wrike.wrike_update_task Write write
integration__wrike__wrike_list_tasks wrike.wrike_list_tasks Read read
integration__wrike__wrike_add_comment wrike.wrike_add_comment Write write
integration__wrike__wrike_get_project wrike.wrike_get_project Read read
integration__wrike__wrike_list_projects wrike.wrike_list_projects Read read
integration__wrike__wrike_create_folder wrike.wrike_create_folder Write write
integration__wrike__wrike_get_folder wrike.wrike_get_folder Read read
integration__wrike__wrike_list_folders wrike.wrike_list_folders Read read
integration__wrike__wrike_get_space wrike.wrike_get_space Read read
integration__wrike__wrike_list_spaces wrike.wrike_list_spaces Read read
integration__wrike__wrike_list_contacts wrike.wrike_list_contacts Read read
integration__wrike__wrike_get_current_user wrike.wrike_get_current_user 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.