Connect

MCP setup

VidMee is one MCP server: https://mcp.vidmee.ai/mcp (Streamable HTTP, Authorization: Bearer <key>). Add it once and your agent gets all 49 tools. Works in any HTTP-MCP harness; stdio-only clients bridge in one line.

One-line install

Paste this to any agent (Claude Code, Cursor, OpenClaw, Hermes). It pulls the skill, adds the MCP, and runs a health check.

Install VidMee: https://vidmee.ai/install.md

// then, anytime:
vidmee doctor   // key ok, MCP reachable, tools loaded, sessions

The universal config block

Works in Claude Code, Cursor, Cline, KiloCode, and opencode. Swap in your key from the dashboard.

{ "mcpServers": { "vidmee": {
  "type": "http",
  "url": "https://mcp.vidmee.ai/mcp",
  "headers": { "Authorization": "Bearer ${VIDMEE_API_KEY}" } } } }
The dashboard pre-injects your real key into every config at key-creation time. The machine-readable form of this page is GET /v1/integrations.

Per-harness config

Claude Code

.mcp.json (project root) · transport: http

{
  "mcpServers": {
    "vidmee": {
      "type": "http",
      "url": "https://mcp.vidmee.ai/mcp",
      "headers": { "Authorization": "Bearer ${VIDMEE_API_KEY}" }
    }
  }
}

Cursor

.cursor/mcp.json · transport: http

{
  "mcpServers": {
    "vidmee": {
      "url": "https://mcp.vidmee.ai/mcp",
      "headers": { "Authorization": "Bearer ${VIDMEE_API_KEY}" }
    }
  }
}

KiloCode

kilo.json (Settings → MCP → Add Remote HTTP) · transport: http

{
  "mcp": {
    "vidmee": {
      "type": "remote",
      "url": "https://mcp.vidmee.ai/mcp",
      "headers": { "Authorization": "Bearer ${VIDMEE_API_KEY}" },
      "enabled": true,
      "timeout": 30000
    }
  }
}

OpenClaw / Hermes

~/.hermes/config.yaml (mcp_servers) · transport: http

mcp_servers:
  vidmee:
    url: https://mcp.vidmee.ai/mcp
    headers:
      Authorization: "Bearer ${VIDMEE_API_KEY}"

opencode

opencode.json · transport: http

{
  "mcp": {
    "vidmee": {
      "type": "remote",
      "url": "https://mcp.vidmee.ai/mcp",
      "headers": { "Authorization": "Bearer ${VIDMEE_API_KEY}" }
    }
  }
}

codex (stdio bridge)

config.toml · transport: stdio

[mcp_servers.vidmee]
command = "npx"
args = ["-y", "mcp-remote", "https://mcp.vidmee.ai/mcp",
        "--header", "Authorization: Bearer ${VIDMEE_API_KEY}"]

Any stdio-only MCP client (bridge)

mcpServers config · transport: stdio

{
  "mcpServers": {
    "vidmee": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.vidmee.ai/mcp", "--header", "Authorization: Bearer ${VIDMEE_API_KEY}"]
    }
  }
}

Verify it is wired

// ask your agent
list_providers()      // should return zark / fal / replicate
inspect({ source: "https://example.com", goal: "page renders" })

Stdio-only clients (codex, older harnesses)

Bridge the HTTP endpoint with npx mcp-remote:

[mcp_servers.vidmee]
command = "npx"
args = ["-y", "mcp-remote", "https://mcp.vidmee.ai/mcp",
        "--header", "Authorization: Bearer ${VIDMEE_API_KEY}"]

Get your API key   Tool reference