KosmoKrator

productivity

Linear MCP Gateway for AI Agents

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

20 functions 11 read 9 write API key auth

Linear MCP Gateway

Expose Linear to MCP clients with `kosmokrator mcp:serve --integration=linear`.

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

Serve Manually

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

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP Tool Names (20 tools)
MCP toolSource functionType
integration__linear__linear_create_issue linear.linear_create_issue Write write
integration__linear__linear_get_issue linear.linear_get_issue Read read
integration__linear__linear_update_issue linear.linear_update_issue Write write
integration__linear__linear_search_issues linear.linear_search_issues Read read
integration__linear__linear_list_issues linear.linear_list_issues Read read
integration__linear__linear_delete_issue linear.linear_delete_issue Write write
integration__linear__linear_create_comment linear.linear_create_comment Write write
integration__linear__linear_list_comments linear.linear_list_comments Read read
integration__linear__linear_get_teams linear.linear_get_teams Read read
integration__linear__linear_list_projects linear.linear_list_projects Read read
integration__linear__linear_create_project linear.linear_create_project Write write
integration__linear__linear_update_project linear.linear_update_project Write write
integration__linear__linear_list_initiatives linear.linear_list_initiatives Read read
integration__linear__linear_create_initiative linear.linear_create_initiative Write write
integration__linear__linear_list_labels linear.linear_list_labels Read read
integration__linear__linear_add_label linear.linear_add_label Write write
integration__linear__linear_remove_label linear.linear_remove_label Write write
integration__linear__linear_get_current_user linear.linear_get_current_user Read read
integration__linear__linear_list_workflows linear.linear_list_workflows Read read
integration__linear__linear_raw_query linear.linear_raw_query 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.