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.
MCP setup
One Streamable HTTP server works across VS Code, the Codex app, and the CLI.
Credentials
Transport
Streamable HTTP
MCP protocol over HTTP
Server URL
https://fusekit.chahatkesh.me/mcp/http
Paste this into your client
Bearer Token
••••••••••••••••••••••••••••
Authorization header value
Client setup
Connect inside the project so agent tools travel with the workspace.
Open the Command Palette and run “MCP: Add Server”.
Choose HTTP transport and name the server fusekit.
Paste the Server URL and bearer token from above.
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
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