Home / MCP

Talocode MCP

One endpoint. 14 tools. One API key.

What is Talocode MCP?

Two ways to connect:

Remote HTTP — For clients that support custom HTTP headers (some VS Code MCP extensions, OpenCode). Point to https://api.talocode.site/mcp with Authorization: Bearer $TALOCODE_API_KEY.

Local Bridge — For clients that do not support custom headers (Claude Desktop, Cursor standard config). Use npx @talocode/mcp as a local stdio bridge. The bridge reads TALOCODE_API_KEY from the environment and forwards requests to the remote endpoint.

Talocode MCP exposes all Talocode Cloud product APIs through the Model Context Protocol. AI coding agents can call Talocode capabilities as MCP tools using a single TALOCODE_API_KEY.

Endpoint: POST https://api.talocode.site/mcp
Auth:     Authorization: Bearer $TALOCODE_API_KEY

Client Setup

Cursor

.cursor/mcp.json:
{
  "mcpServers": {
    "talocode": {
      "url": "https://api.talocode.site/mcp",
      "headers": {
        "Authorization": "Bearer ${TALOCODE_API_KEY}"
      }
    }
  }
}

Claude Desktop

claude_desktop_config.json:
{
  "mcpServers": {
    "talocode": {
      "url": "https://api.talocode.site/mcp",
      "headers": {
        "Authorization": "Bearer ${TALOCODE_API_KEY}"
      }
    }
  }
}

Local Bridge (for clients without header support)

Use when your MCP client cannot send custom HTTP headers.
Works with Claude Desktop, Cursor, OpenCode:

{
  "mcpServers": {
    "talocode": {
      "command": "npx",
      "args": ["@talocode/mcp"],
      "env": {
        "TALOCODE_API_KEY": "tk_live_xxxxxxxxxxxx"
      }
    }
  }
}

The bridge forwards all requests to https://api.talocode.site/mcp
with Authorization: Bearer $TALOCODE_API_KEY.

Available Tools

ToolProductEst. Credits
tera_writing_rewriteTera5
tera_writing_draftTera10
tera_coding_explainTera10
tera_coding_reviewTera20
router_chatRouterVariable
agent_browser_checkAgent Browser5
agent_browser_screenshotAgent Browser8
agent_browser_trace_reportAgent Browser15
cliploop_brief_generateClipLoop15
cliploop_script_generateClipLoop15
cliploop_video_renderClipLoop200
cliploop_campaign_createClipLoop50
cliploop_campaign_packageClipLoop400
cloud_pricingCloudFree

Billing

MCP tool calls are billed as standard Talocode Cloud API requests. Credits are deducted from your wallet. No separate MCP billing.

Security

Never commit API keys to configuration files. Use environment variable substitution (${TALOCODE_API_KEY}) where supported. Talocode MCP never logs raw keys and redacts authorization headers.

Try It

100 free credits on every new project.