Docs
MCP overview
Connect any MCP client to QuikRun and ship snippets from chat.
QuikRun runs a remote MCP server at https://mcp.quik.run so any MCP client (Claude, GPT, Cursor, Windsurf, VS Code, Zed) can create, run, and deploy snippets on your behalf.
Authenticate
Mint a quik_ token in the dashboard (Tokens) and pass it as a bearer header. The same token works from every client, and every action is attributed to it.
Add it to your client
Claude
claude mcp add --transport http quikrun https://mcp.quik.run --header "Authorization: Bearer quik_..."
Cursor
// .cursor/mcp.json{"mcpServers": {"quikrun": {"url": "https://mcp.quik.run","headers": { "Authorization": "Bearer quik_..." }}}}
VS Code
code --add-mcp '{"name":"quikrun","url":"https://mcp.quik.run","headers":{"Authorization":"Bearer quik_..."}}'
Windsurf
// ~/.codeium/windsurf/mcp_config.json{"mcpServers": {"quikrun": {"serverUrl": "https://mcp.quik.run","headers": { "Authorization": "Bearer quik_..." }}}}
Zed
// settings.json → context_servers"quikrun": {"source": "custom","url": "https://mcp.quik.run","headers": { "Authorization": "Bearer quik_..." }}
›Prefer a visual walkthrough? The /mcp page has these same snippets plus example prompts and a live transcript.