/ Verzeichnis / Playground / arcade-mcp
● Community ArcadeAI ⚡ Sofort

arcade-mcp

von ArcadeAI · ArcadeAI/arcade-mcp

Python framework to scaffold, deploy, and share MCP servers — built-in OAuth, secret management, and one-command client configuration.

Arcade MCP (ArcadeAI) is a Python framework focused on the full server lifecycle: scaffold (arcade new), add tools (including OAuth'd integrations), and deploy to any client. Distinct from Golf in emphasizing distribution — easy to share servers with teammates or users.

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

arcade.replay ▶ bereit
0/0

Installieren

Wählen Sie Ihren Client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "arcade": {
      "command": "uvx",
      "args": [
        "arcade-mcp"
      ],
      "_inferred": true
    }
  }
}

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "arcade": {
      "command": "uvx",
      "args": [
        "arcade-mcp"
      ],
      "_inferred": true
    }
  }
}

Cursor nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "arcade": {
      "command": "uvx",
      "args": [
        "arcade-mcp"
      ],
      "_inferred": true
    }
  }
}

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "arcade": {
      "command": "uvx",
      "args": [
        "arcade-mcp"
      ],
      "_inferred": true
    }
  }
}

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "arcade",
      "command": "uvx",
      "args": [
        "arcade-mcp"
      ]
    }
  ]
}

Continue nutzt ein Array von Serverobjekten statt einer Map.

~/.config/zed/settings.json
{
  "context_servers": {
    "arcade": {
      "command": {
        "path": "uvx",
        "args": [
          "arcade-mcp"
        ]
      }
    }
  }
}

In context_servers hinzufügen. Zed lädt beim Speichern neu.

claude mcp add arcade -- uvx arcade-mcp

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: arcade-mcp

Scaffold a working MCP server in under 5 minutes with Arcade

👤 Anyone new to MCP development ⏱ ~15 min beginner

Wann einsetzen: You've never built an MCP and don't want to hand-wire the SDK.

Voraussetzungen
  • uv — astral.sh/uv
Ablauf
  1. Install + create
    Run uv tool install arcade-mcp then arcade new my_server. Open the generated project.✓ Kopiert
    → Project with example tools
  2. Run locally
    Run uv run server.py and use mcp tools (from f/mcptools) to list what's advertised.✓ Kopiert
    → Default tools visible
  3. Configure Claude Desktop
    Run arcade configure claude to wire it up.✓ Kopiert
    → Claude Desktop config updated; server appears on next launch

Ergebnis: A working MCP you can iterate on without reading spec docs.

Kombinieren mit: mcptools

Build an MCP tool that calls an OAuth-protected API

👤 Developers integrating third-party SaaS ⏱ ~45 min advanced

Wann einsetzen: You need Claude to call Reddit/Linear/GitHub on behalf of the user, not your service.

Voraussetzungen
  • OAuth app registered with the target provider — Provider's dev console
Ablauf
  1. Configure OAuth in arcade.yaml
    Set up Reddit OAuth per the example in arcade's README.✓ Kopiert
    → OAuth provider registered
  2. Write the tool
    Add a tool get_saved_posts that uses the injected OAuth token to hit Reddit's API.✓ Kopiert
    → Tool works after user authorizes
  3. First run triggers auth
    Call get_saved_posts from Claude — arcade sends the user through the OAuth flow once.✓ Kopiert
    → Token stored; subsequent calls don't re-prompt

Ergebnis: User-scoped MCP integrations without you holding credentials.

Share an MCP server with your team using Arcade

👤 Platform / DevEx teams ⏱ ~20 min intermediate

Wann einsetzen: You built a handy internal MCP and want others to install it in one command.

Ablauf
  1. Publish the project (internal registry or git)
    Publish your arcade project to internal pypi or a tagged GitHub release.✓ Kopiert
    → Install command ready
  2. Teammates install
    Teammates run uvx <your-package> and arcade configure claude — done.✓ Kopiert
    → Server appears in their clients

Ergebnis: New MCP adopted across the team in minutes.

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

arcade + mcptools

Inspect tool surfaces during development

Run mcp tools against my arcade dev server to verify the schema after each change.✓ Kopiert
arcade + hyper

Compare Python/Arcade vs WASM/hyper for the same tool

Implement the same 'fetch_user' tool in both Arcade and hyper-mcp; benchmark latency.✓ Kopiert

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
arcade new <name> project_name: str Start 0
arcade configure <client> client: claude|cursor|vscode Wire into a client 0
arcade dev Local iteration 0

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
None — framework
Tokens pro Aufruf
Depends on tools
Kosten in €
Free, open source
Tipp
Use secret scopes per tool instead of global env vars — easier to audit later

Sicherheit

Rechte, Secrets, Reichweite

Credential-Speicherung: Arcade's secret store; OAuth tokens kept separately from static secrets
Datenabfluss: Whatever your tools call

Fehlerbehebung

Häufige Fehler und Lösungen

arcade command not found after install

Ensure uv's tool bin is on PATH: export PATH=$HOME/.local/share/uv/tools/bin:$PATH

Prüfen: which arcade
OAuth redirect loop

Callback URL mismatch — must exactly match the provider's registered URL, including trailing slash

Tool schema not refreshed in client

Most clients cache; restart the client after adding/removing tools

Alternativen

arcade-mcp vs. andere

AlternativeWann stattdessenKompromiss
GolfYou prioritize enterprise auth/telemetry over distribution ergonomicsMore backend-oriented
FastMCPSingle-file MCP, no OAuth neededBYO everything beyond basic
TS SDK directTypeScript shopDifferent language

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen