Integrate Runflow from any AI coding assistant — Claude, Cursor, GitHub Copilot, ChatGPT — in three steps. The whole page is designed as a 30-second land-and-integrate.
1. Give your agent this instruction
Paste the following into your agent’s system prompt, rules file, or custom instructions field.Show instruction
Show instruction
INSTRUCTION
Where to paste it by platform
| Platform | Location |
|---|---|
| Claude Code / Claude Desktop / claude.ai | Custom Instructions |
| Cursor | .cursorrules (project root) |
| GitHub Copilot | .github/copilot-instructions.md |
| ChatGPT (custom GPT) | “Instructions” field |
| Anything else | System prompt / project-level instructions |
2. Create an API key
- Sign up or log in → app.runflow.io/signup
- Open Settings → API Keys → app.runflow.io/settings/api-keys
- Create a key, scope it minimally, copy it (it’s shown once).
- Save as
RUNFLOW_API_KEYin an env var or secret manager. Never commit it.
3. Ship
Ask your agent something like:
“Generate background-removed versions of every image in ./product-shots/ using Runflow.”
The skill it fetched in step 1 tells it everything: which Solution endpoint to call, the request schema, the webhook flow for async solutions, auth header, retry logic, and common errors.
Canonical host map
| Host | Purpose |
|---|---|
www.runflow.io | Marketing + agent-discovery (llms.txt, /.well-known/*, skill, MCP card) |
api.runflow.io | Production API — OpenAPI at /v1/openapi.json, Swagger UI at /v1/docs, health at /v1/health |
app.runflow.io | Dashboard — sign up, API keys, usage, billing |
docs.runflow.io | This site — human-readable docs |
public.runflow.io | Public CDN for example assets |
For MCP-aware agents (Cursor MCP, Claude Desktop MCP)
Point your MCP client at:capabilities.skills.recommended surfaces the skill URL directly so your agent doesn’t have to heuristic-pick from the index.
This is a content-discovery card, not a tool server — there are no callable MCP tools yet.
For browser-based agents (WebMCP)
Pages onwww.runflow.io register three read-only browser tools via navigator.modelContext:
search_runflow_models— filter the live model catalogget_runflow_pricing— price + category for a specific modelget_runflow_endpoint— compute thePOSTruns URL
Discovery endpoints (reference)
- Skill (install this) — www.runflow.io/.well-known/agent-skills/runflow/SKILL.md
- Skills index — www.runflow.io/.well-known/agent-skills/index.json
- MCP server card — www.runflow.io/.well-known/mcp/server-card.json
- API catalog (RFC 9727) — www.runflow.io/.well-known/api-catalog
- Summary for LLMs — www.runflow.io/llms.txt
- Full LLM context — www.runflow.io/llms-full.txt
- OpenAPI (real-time, authoritative) — api.runflow.io/v1/openapi.json
Where to go next
Human Quickstart
Prefer a manual integration? The 5-minute Score Image walkthrough.
Authentication
How the
x-api-key header works.Webhooks
Handling async solutions.
Vibe-Coder Integration
Paste-ready prompts for specific endpoints.