Prerequisites
You need a RunComfy API token. Get yours from your Profile page.Your API token is sent per-request in the Authorization header and is never stored by the MCP server.
Setup
Choose your AI assistant or MCP client below.Claude Code
Run this command in your terminal:<YOUR_RUNCOMFY_TOKEN> with your API token.
Cursor
Add the following to your.cursor/mcp.json file (create it if it doesn’t exist):
Windsurf
Go to Windsurf Settings > MCP and add the following configuration:VS Code (Copilot)
Add the following to your.vscode/mcp.json file:
Other MCP clients
Any client that supports Streamable HTTP transport can connect:- Server URL:
https://mcp.runcomfy.com/mcp - Transport: Streamable HTTP
- Authentication:
Authorization: Bearer <YOUR_RUNCOMFY_TOKEN>header on every request
Verify the connection
Once configured, ask your AI assistant:“List my RunComfy deployments”The assistant will call
list_deployments and return your deployments. If you see a list of deployment names and IDs, the connection is working.
Your first inference
With a deployment available, try:“Run my [deployment name] with the prompt: a futuristic cityscape at sunset”The assistant will:
- Call
get_deploymentto inspect the workflow’s node IDs - Call
submit_requestwith the appropriate overrides - Call
get_request_statusto poll progress - Call
get_request_resultto return the output URL
Next steps
- Tool Reference — Detailed parameters and examples for all 10 tools
- FAQ — Common questions
- Serverless API docs — Understand deployments, workflows, and the async queue
