Crawler Summary

mcp-runware answer-first brief

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

Claim this agent
Agent DossierGitHubSafety: 89/100

mcp-runware

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

MCPself-declared

Public facts

5

Change events

1

Artifacts

0

Freshness

Feb 25, 2026

Verifiededitorial-contentNo verified compatibility signals2 GitHub stars

Capability contract not published. No trust telemetry is available yet. 2 GitHub stars reported by the source. Last updated 2/25/2026.

2 GitHub starsTrust evidence available

Trust score

Unknown

Compatibility

MCP

Freshness

Feb 25, 2026

Vendor

Cladjules

Artifacts

0

Benchmarks

0

Last release

1.0.0

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

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.git
  1. 1

    Setup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.

  2. 2

    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.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Cladjules

profilemedium
Observed Feb 25, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

MCP

contractmedium
Observed Feb 25, 2026Source linkProvenance
Adoption (1)

Adoption signal

2 GitHub stars

profilemedium
Observed Feb 25, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB MCP

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Executable Examples

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",...}'

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB MCP

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

Full README

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 endpoint with streaming support.

Quick Start

# 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)

Environment Variables

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

Variable Details

  • 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 access
  • PORT / 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.

Usage

Claude Desktop (Local)

Add to your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %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.

HTTP Server (Remote Access)

# 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" } },
);

Vercel Deployment (Serverless)

✨ Fully compatible with Vercel Fluid compute for streaming MCP responses.

  1. Connect repo to Vercel - Import your Git repository
  2. Set environment variables in Vercel dashboard:
    • RUNWARE_API_KEY - Your Runware API key (required)
    • MCP_API_KEYS - Authentication keys, comma-separated (recommended)
  3. Deploy - Vercel auto-detects configuration from vercel.json with Fluid enabled

Your 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:

  • Session Management: Vercel's serverless functions are stateless. Each session creates its own MCP server instance. If a client receives a "Session not found" error, it should reinitialize by sending a new initialize request with the same mcp-session-id header to recreate the session.
  • Model Data: The build process automatically copies model data from src/data/ to dist/data/. After updating models with npm run fetch-models, rebuild before deploying.
  • Cold Starts: Initial requests may be slower due to serverless cold starts. Subsequent requests within the same instance are faster.

Testing

MCP Inspector (Recommended)

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.

Command Line

# 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

Available Tools

generate_image

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 image
  • width (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 results
  • numberResults (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_models

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:

  • Pricing information (USD per image/generation)
  • Model configurations and discounts
  • AIR identifiers for direct usage with generate_image tool
  • Combines manually curated popular models and "Best for Text on Images" collection
  • Sorted by price with cheapest models first

Example 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:

  • Model information stored in src/data/popular_models.json and src/data/best_models.json
  • Pricing data in src/data/pricing.json
  • Update models: npm run fetch-models (requires RUNWARE_API_KEY in .env)
  • Build process automatically copies data from src/data/ to dist/data/
  • Rebuild and redeploy after updating model data

Returns:

A formatted list of all available models including:

  • Model name and AIR identifier
  • Pricing information (USD per generation)
  • Configuration details (resolution, steps, etc.)
  • Discount information where applicable
  • Model category and tags

The tool merges data from both popular models and specialized collections, providing up to 44+ unique models sorted by cost-effectiveness.

Example output:

  • FLUX.2 [klein] 4B (runware:400@4) - $0.0006 (1024x1024) [Save 40%]
  • Z-Image-Turbo (runware:z-image@turbo) - $0.0006 (1024x1024 · 4 steps)
  • FLUX.2 [klein] 9B (runware:400@2) - $0.00078 (1024x1024 · 4 steps) [Save 87%]
  • Qwen-Image-2512 (alibaba:qwen-image@2512) - $0.0051 (1024x1024) [Save 74%]

All pricing and model data is automatically updated when running npm run fetch-models.

Project Structure

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

Development

Watch Mode

For active development with auto-recompilation:

npm run watch

In another terminal, run the server:

node dist/index.js

Build

Compile TypeScript to JavaScript:

npm run build

Run

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:

  1. Install Python dependencies (one-time setup):

    pip3 install requests python-dotenv
    
  2. Run the fetch script:

    npm run fetch-models
    

This will:

  • Scrape model IDs and names from Runware collection pages
  • Fetch AIR identifiers and metadata from the Runware API
  • Merge pricing data from src/data/pricing.json
  • Filter out models without AIR identifiers
  • Save enriched data to JSON files in src/data/

Data sources:

  • Popular Models → src/data/popular_models.json (manually curated from https://runware.ai/models)
  • Best Models → src/data/best_models.json (scraped from https://runware.ai/collections/best-for-text-on-images)
  • Pricing Data → 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

  • Save enriched data to JSON files in src/data/

Collections fetched:

  • Popular Models → src/data/popular_models.json (from https://runware.ai/models)
  • Best 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.

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

MissingGITHUB MCP

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

MCP: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
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"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

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

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITLAB_AI_CATALOGgitlab-mcp

Rank

83

A Model Context Protocol (MCP) server for GitLab

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_PUBLIC_PROJECTSgitlab-mcp

Rank

80

A Model Context Protocol (MCP) server for GitLab

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_AI_CATALOGrmcp-openapi

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

MCP
GITLAB_AI_CATALOGrmcp-actix-web

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

MCP
Machine Appendix

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.