MCP setup

Connect to Codex

One Streamable HTTP server works across VS Code, the Codex app, and the CLI.

Live endpointCheck wallet

Credentials

Transport

Streamable HTTP

Server URL

https://fusekit.chahatkesh.me/mcp/http

Bearer Token

••••••••••••••••••••••••••••

Client setup

Connect inside the project so agent tools travel with the workspace.

  1. 1

    Open the Command Palette and run “MCP: Add Server”.

  2. 2

    Choose HTTP transport and name the server fusekit.

  3. 3

    Paste the Server URL and bearer token from above.

  4. 4

    Save, then refresh tools from the chat or agent panel.

.vscode/mcp.json

{
  "servers": {
    "fusekit": {
      "type": "http",
      "url": "https://fusekit.chahatkesh.me/mcp/http",
      "headers": {
        "Authorization": "Bearer demo-token-fusekit-2026"
      }
    }
  }
}

Pre-flight checklist

  • Platform service is running on the URL above.
  • Bearer token is present in the selected client.
  • Wallet balance can cover the first tool calls.
  • Third-party credentials are loaded by the platform, not the client.

Demo critical path

Discover

tools/list

scrape_url, send_email, send_sms visible

Execute

tools/call

Run scrape_url then send_email or send_sms

Spend

wallet.check

Wallet middleware runs before routing

Grow

TOOL_NOT_FOUND

Missing tool triggers the integration pipeline