Kpital OS MCP

Every client below talks to the same server. Copy, paste, done.
Placeholder mode. Open /t/<MCP_ACCESS_TOKEN>/ to get these snippets with your real token filled in.

Any client that takes only a URL

Claude iOS/Android and web (Custom Connector), ChatGPT connectors. Paste this as the server URL — nothing else to configure.

https://mcp.kpitaltech.com/t/YOUR_MCP_ACCESS_TOKEN/mcp

Claude Code

Run once on each machine. Works on laptop and in the web app.

claude mcp add --transport http kpital-os "https://mcp.kpitaltech.com/t/YOUR_MCP_ACCESS_TOKEN/mcp"

Codex CLI ~/.codex/config.toml

[mcp_servers.kpital-os]
url = "https://mcp.kpitaltech.com/t/YOUR_MCP_ACCESS_TOKEN/mcp"

Gemini CLI ~/.gemini/settings.json

{
  "mcpServers": {
    "kpital-os": {
      "httpUrl": "https://mcp.kpitaltech.com/t/YOUR_MCP_ACCESS_TOKEN/mcp"
    }
  }
}

Header-based clients (optional, keeps the token out of the URL)

{
  "mcpServers": {
    "kpital-os": {
      "type": "http",
      "url": "https://mcp.kpitaltech.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_MCP_ACCESS_TOKEN"
      }
    }
  }
}