Runware MCP
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Runware MCPGenerate an image of a cyberpunk city street in the rain"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Runware MCP
MCP server that gives AI agents (Claude, Cursor, Codex, etc.) access to the full Runware API — image generation, video generation, audio generation, 3D, upscaling, background removal, captioning, and more.
Install
Pick one — npx is simplest, global install is faster on repeat use.
# Use directly with npx (no install)
npx -y @runware/mcp
# Or install globally
npm install -g @runware/mcpRelated MCP server: WavespeedMCP
Connect
Get an API key at runware.ai. Then point your agent at the MCP.
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"runware": {
"command": "npx",
"args": ["-y", "@runware/mcp"],
"env": {
"RUNWARE_API_KEY": "your-api-key"
}
}
}
}If you installed globally:
{
"mcpServers": {
"runware": {
"command": "runware-mcp",
"env": {
"RUNWARE_API_KEY": "your-api-key"
}
}
}
}Cursor
Settings → MCP → Add server — same config as above.
Codex
Add to your MCP configuration with the same command and env.
How to use it
Once connected, just talk to your agent. It picks the right tool, picks the right model, and fills in the parameters.
"Generate an image of a cat in a forest"
"What models do you have for video generation?"
"Upscale https://example.com/photo.jpg by 4x"
"Show me my account balance"
"Find me a Civitai LoRA for anime style"
The agent figures out which model fits, what parameters to pass, and how to interpret the response. Parameters are validated against each model's schema before submission, so the agent gets fast feedback when it picks wrong values.
Tools the agent has access to
You don't call these directly — the agent does, based on what you ask for.
run— execute any Runware inference task (image, video, audio, 3D, upscaling, captioning, etc.) on a given modelmodel_schema— fetch the parameter schema for a specific modellist_models— list Runware's official, curated model integrations (supportscapability,category,creator,searchfilters)model_details— get full metadata for a curated model by AIRmodel_examples— get sample input/output pairs for a curated modelmodel_pricing— get pricing overview + per-configuration examples for a curated modellist_capabilities— list every model capability (e.g.io:text-to-image,op:upscale) with labelsmodel_search— search the community model catalog (Civitai fine-tunes, custom uploads)media_storage— store media (images, video, audio, 3D models) for use as input, or delete stored mediamodel_upload— upload a custom modelaccount— retrieve account information including balance and usageget_task_details— retrieve the original request and response for a previous task
Environment variables
Variable | Required | Description |
| Yes | Your Runware API key |
Development
# Run directly (no build step)
npm run dev
# Build
npm run build
# Test
npm test
# Lint
npm run lint
# Smoke-test the stdio protocol
echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0.0"}}}
{"jsonrpc":"2.0","method":"notifications/initialized"}
{"jsonrpc":"2.0","id":2,"method":"tools/list"}' | RUNWARE_API_KEY=your-key node dist/index.js
# Or use the MCP Inspector for a UI
npx @modelcontextprotocol/inspector node dist/index.jsThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityBmaintenanceMCP server for AI-powered image, audio, and video generation, enabling media creation directly from Claude, Cursor, and other MCP clients.Last updated11297MIT
- FlicenseAqualityDmaintenanceAn MCP server that provides a standardized interface for accessing WaveSpeed AI's image and video generation capabilities, including text-to-image, image-to-image, inpainting, and dynamic video generation.Last updated3
- Alicense-qualityDmaintenanceMCP server for AI-powered media generation: images, videos, audio, and upscaling using 99 AI models.Last updatedMIT
- Alicense-qualityDmaintenanceMCP server that provides image generation, captioning, and tagging via ComfyUI API, configurable for agent tools.Last updated3MIT
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
MCP server for Wan AI video generation
MCP server for Google Veo AI video generation
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Runware/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server