Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
MCP server for Runware AI image generation MCP Runware Server **✨ Vercel-ready with Fluid compute** | Serverless MCP deployment with streaming support An MCP (Model Context Protocol) server for AI image generation through Runware's API. Generate images from text using FLUX.1, FLUX.2, HiDream, and more with full control over dimensions, steps, schedulers, and other parameters. **✨ Fully compatible with Vercel with Fluid compute** - Deploy as a serverless MCP e Capability contract not published. No trust telemetry is available yet. 2 GitHub stars reported by the source. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
mcp-runware is best for mcp, runware, ai workflows where MCP compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB MCP, runtime-metrics, public facts pack
MCP server for Runware AI image generation MCP Runware Server **✨ Vercel-ready with Fluid compute** | Serverless MCP deployment with streaming support An MCP (Model Context Protocol) server for AI image generation through Runware's API. Generate images from text using FLUX.1, FLUX.2, HiDream, and more with full control over dimensions, steps, schedulers, and other parameters. **✨ Fully compatible with Vercel with Fluid compute** - Deploy as a serverless MCP e
Public facts
5
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. 2 GitHub stars reported by the source. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Feb 25, 2026
Vendor
Cladjules
Artifacts
0
Benchmarks
0
Last release
1.0.0
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. 2 GitHub stars reported by the source. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/cladjules/mcp-runware.gitSetup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Cladjules
Protocol compatibility
MCP
Adoption signal
2 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
bash
# Install npm install # Configure cp .env.example .env # Edit .env and add your RUNWARE_API_KEY # Build and run npm run build npm start
bash
# Required - Your Runware API key RUNWARE_API_KEY=rwk_abc123xyz456 # Optional - Transport mode (stdio|http) # - stdio: Local Claude Desktop (default) # - http: HTTP server for remote connections MCP_TRANSPORT=stdio # Optional - HTTP server configuration (http mode only) PORT=3000 HOST=127.0.0.1 # Optional - API key authentication (http mode) # Comma-separated list for multiple keys MCP_API_KEYS=secret-key-1,secret-key-2
json
{
"mcpServers": {
"runware": {
"command": "node",
"args": ["/absolute/path/to/mcp-runware/dist/index.js"]
}
}
}bash
curl http://127.0.0.1:3000/health
bash
curl -X POST http://127.0.0.1:3000/mcp \
-H "x-api-key: your-key" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize",...}'bash
# Start HTTP server
npm run start:http
# Test endpoints
curl http://127.0.0.1:3000/health
curl -X POST http://127.0.0.1:3000/mcp \
-H "x-api-key: your-key" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize",...}'Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB MCP
Editorial quality
ready
MCP server for Runware AI image generation MCP Runware Server **✨ Vercel-ready with Fluid compute** | Serverless MCP deployment with streaming support An MCP (Model Context Protocol) server for AI image generation through Runware's API. Generate images from text using FLUX.1, FLUX.2, HiDream, and more with full control over dimensions, steps, schedulers, and other parameters. **✨ Fully compatible with Vercel with Fluid compute** - Deploy as a serverless MCP e
✨ Vercel-ready with Fluid compute | Serverless MCP deployment with streaming support
An MCP (Model Context Protocol) server for AI image generation through Runware's API. Generate images from text using FLUX.1, FLUX.2, HiDream, and more with full control over dimensions, steps, schedulers, and other parameters.
✨ Fully compatible with Vercel with Fluid compute - Deploy as a serverless MCP endpoint with streaming support.
# Install
npm install
# Configure
cp .env.example .env
# Edit .env and add your RUNWARE_API_KEY
# Build and run
npm run build
npm start
Prerequisites: Node.js 22+, Runware API key (get one)
Create a .env file in the project root:
# Required - Your Runware API key
RUNWARE_API_KEY=rwk_abc123xyz456
# Optional - Transport mode (stdio|http)
# - stdio: Local Claude Desktop (default)
# - http: HTTP server for remote connections
MCP_TRANSPORT=stdio
# Optional - HTTP server configuration (http mode only)
PORT=3000
HOST=127.0.0.1
# Optional - API key authentication (http mode)
# Comma-separated list for multiple keys
MCP_API_KEYS=secret-key-1,secret-key-2
RUNWARE_API_KEY (required): Get from Runware Dashboard → API Keys. Used to authenticate with Runware's image generation API.
MCP_TRANSPORT: Controls how the server communicates with clients:
stdio - Standard input/output for local Claude Desktop (default)http - HTTP server with /mcp endpoint for remote accessPORT / HOST: HTTP server binding (default: 3000 / 127.0.0.1). Only used when MCP_TRANSPORT=http.
MCP_API_KEYS: Security for HTTP/Vercel modes. Without this, the server accepts all requests (dev mode). With keys, clients must send x-api-key header. Health checks (/health) bypass authentication.
Add to your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"runware": {
"command": "node",
"args": ["/absolute/path/to/mcp-runware/dist/index.js"]
}
}
}
Restart Claude Desktop. The server loads environment variables from .env automatically.
# Start HTTP server
npm run start:http
# Test endpoints
curl http://127.0.0.1:3000/health
curl -X POST http://127.0.0.1:3000/mcp \
-H "x-api-key: your-key" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize",...}'
Connect from MCP client:
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js";
const transport = new StreamableHTTPClientTransport(
new URL("http://127.0.0.1:3000/mcp"),
{ headers: { "x-api-key": "your-key" } },
);
✨ Fully compatible with Vercel Fluid compute for streaming MCP responses.
RUNWARE_API_KEY - Your Runware API key (required)MCP_API_KEYS - Authentication keys, comma-separated (recommended)vercel.json with Fluid enabledYour MCP server: https://your-project.vercel.app/mcp
Connect with same client code as HTTP mode using your Vercel URL. The server leverages Vercel's experimental Fluid compute to support streaming responses required by MCP.
Important Notes:
initialize request with the same mcp-session-id header to recreate the session.src/data/ to dist/data/. After updating models with npm run fetch-models, rebuild before deploying.Visual testing with MCP Inspector:
npm run build
npx @modelcontextprotocol/inspector node dist/index.js
OR using HTTP+Streamable
npm run build
npm run start:http
npm run inspect
Opens browser UI at http://localhost:6274 to test tools interactively. If you see SSE errors, check .env has valid RUNWARE_API_KEY.
# List tools
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | node dist/index.js
# Generate image
cat <<EOF | node dist/index.js
{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}}}
{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"generate_image","arguments":{"prompt":"Mountain sunset","width":1024,"height":768}}}
EOF
Generate an image from a text prompt.
Parameters:
prompt (required): Text description of the image (2-3000 characters)model (optional): Model ID (default: runware:101@1 - FLUX.1 Dev)negativePrompt (optional): What to avoid in the imagewidth (optional): Width in pixels, divisible by 64 (128-2048, default: 1024)height (optional): Height in pixels, divisible by 64 (128-2048, default: 1024)steps (optional): Generation steps (1-100, default: 20)cfgScale (optional): Guidance scale (0-50, default: 7)scheduler (optional): Sampling scheduler (e.g., "DPM++ 2M Karras", "Euler A")seed (optional): Seed for reproducible resultsnumberResults (optional): Number of images to generate (default: 1)includeCost (optional): Include cost in response (default: true)Example:
{
"prompt": "A futuristic city at sunset with flying cars and neon lights",
"model": "runware:101@1",
"width": 1024,
"height": 768,
"steps": 30,
"cfgScale": 7
}
Get a comprehensive list of AI models available on Runware with their AIR identifiers, pricing, and descriptions. Models are automatically sorted by price (cheapest first).
No parameters required
Returns: A merged, deduplicated list of 44+ models from popular and curated collections.
Features:
generate_image toolExample Response:
[
{
"name": "Stable Diffusion XL Lightning",
"air": "civitai:133005@782002",
"description": "Fast SDXL with 4-step generation",
"price_usd": 0.001,
"configuration": "4-step",
"discount": "80% cheaper"
},
{
"name": "FLUX.1 Schnell",
"air": "runware:100@1",
"description": "Ultra-fast FLUX variant",
"price_usd": 0.003,
"configuration": "4-step",
"discount": "70% cheaper"
}
// ... more models
]
Model Data Management:
src/data/popular_models.json and src/data/best_models.jsonsrc/data/pricing.jsonnpm run fetch-models (requires RUNWARE_API_KEY in .env)src/data/ to dist/data/Returns:
A formatted list of all available models including:
The tool merges data from both popular models and specialized collections, providing up to 44+ unique models sorted by cost-effectiveness.
Example output:
runware:400@4) - $0.0006 (1024x1024) [Save 40%]runware:z-image@turbo) - $0.0006 (1024x1024 · 4 steps)runware:400@2) - $0.00078 (1024x1024 · 4 steps) [Save 87%]alibaba:qwen-image@2512) - $0.0051 (1024x1024) [Save 74%]All pricing and model data is automatically updated when running npm run fetch-models.
mcp-runware/
├── src/
│ ├── index.ts # Main entry point
│ ├── transports.ts # Transport setup (stdio, HTTP)
│ ├── utils.ts # Shared utilities (server factory, auth, transport factory)
│ ├── tools.ts # MCP tool definitions
│ ├── runware-client.ts # Runware SDK wrapper
│ └── data/ # Model and pricing data
│ ├── popular_models.json # Popular models with AIR & pricing
│ ├── best_models.json # Best text-on-images models
│ └── pricing.json # Pricing data source
├── scripts/
│ └── fetch_curated_models.py # Model data fetcher/enricher
├── api/
│ └── index.ts # Vercel serverless function
├── dist/ # Compiled JavaScript (generated)
├── vercel.json # Vercel deployment configuration
├── .env # Environment variables (create from .env.example)
├── .env.example # Environment variables template
├── package.json # Dependencies and scripts
├── tsconfig.json # TypeScript configuration
└── README.md # This file
For active development with auto-recompilation:
npm run watch
In another terminal, run the server:
node dist/index.js
Compile TypeScript to JavaScript:
npm run build
Start the MCP server:
npm start
Or build and run in one command:with pricing information, automatically scraped and enriched from Runware. To refresh these lists:
Install Python dependencies (one-time setup):
pip3 install requests python-dotenv
Run the fetch script:
npm run fetch-models
This will:
src/data/pricing.jsonsrc/data/Data sources:
src/data/popular_models.json (manually curated from https://runware.ai/models)src/data/best_models.json (scraped from https://runware.ai/collections/best-for-text-on-images)src/data/pricing.json (extracted from https://runware.ai/pricing)The get_models tool automatically merges these sources and sorts by price.
To modify the model collections, edit the POPULAR_MODELS and SCRAPE_COLLECTIONS arrays API
src/data/Collections fetched:
src/data/popular_models.json (from https://runware.ai/models)src/data/best_models.json (from https://runware.ai/collections/best-for-text-on-images)To add more collections, edit the COLLECTIONS array in scripts/fetch_curated_models.py.
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/mcp-cladjules-mcp-runware/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-cladjules-mcp-runware/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-cladjules-mcp-runware/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-cladjules-mcp-runware/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/mcp-cladjules-mcp-runware/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/mcp-cladjules-mcp-runware/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/mcp-cladjules-mcp-runware/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-cladjules-mcp-runware/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-cladjules-mcp-runware/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_MCP",
"generatedAt": "2026-04-17T04:48:05.571Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "mcp",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "runware",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "ai",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "image-generation",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "cli",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile capability:mcp|supported|profile capability:runware|supported|profile capability:ai|supported|profile capability:image-generation|supported|profile capability:cli|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Cladjules",
"href": "https://github.com/cladjules/mcp-runware",
"sourceUrl": "https://github.com/cladjules/mcp-runware",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T03:13:47.123Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/mcp-cladjules-mcp-runware/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-cladjules-mcp-runware/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T03:13:47.123Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "2 GitHub stars",
"href": "https://github.com/cladjules/mcp-runware",
"sourceUrl": "https://github.com/cladjules/mcp-runware",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T03:13:47.123Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/mcp-cladjules-mcp-runware/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-cladjules-mcp-runware/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to mcp-runware and adjacent AI workflows.