/ Diretório / Playground / arcade-mcp
● Comunidade ArcadeAI ⚡ Instantâneo

arcade-mcp

por 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.

Por que usar

Principais recursos

Demo ao vivo

Como fica na prática

arcade.replay ▶ pronto
0/0

Instalar

Escolha seu cliente

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

Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.

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

Cursor usa o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a global.

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

Clique no ícone MCP Servers na barra lateral do Cline, depois "Edit Configuration".

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

Mesmo formato do Claude Desktop. Reinicie o Windsurf para aplicar.

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

O Continue usa um array de objetos de servidor em vez de um map.

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

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

claude mcp add arcade -- uvx arcade-mcp

Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.

Casos de uso

Usos do mundo real: arcade-mcp

Scaffold a working MCP server in under 5 minutes with Arcade

👤 Anyone new to MCP development ⏱ ~15 min beginner

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

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

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

Combine com: mcptools

Build an MCP tool that calls an OAuth-protected API

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

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

Pré-requisitos
  • OAuth app registered with the target provider — Provider's dev console
Fluxo
  1. Configure OAuth in arcade.yaml
    Set up Reddit OAuth per the example in arcade's README.✓ Copiado
    → OAuth provider registered
  2. Write the tool
    Add a tool get_saved_posts that uses the injected OAuth token to hit Reddit's API.✓ Copiado
    → 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.✓ Copiado
    → Token stored; subsequent calls don't re-prompt

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

Share an MCP server with your team using Arcade

👤 Platform / DevEx teams ⏱ ~20 min intermediate

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

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

Resultado: New MCP adopted across the team in minutes.

Combinações

Combine com outros MCPs para 10× de alavancagem

arcade + mcptools

Inspect tool surfaces during development

Run mcp tools against my arcade dev server to verify the schema after each change.✓ Copiado
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.✓ Copiado

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
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

Custo e limites

O que custa rodar

Cota de API
None — framework
Tokens por chamada
Depends on tools
Monetário
Free, open source
Dica
Use secret scopes per tool instead of global env vars — easier to audit later

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: Arcade's secret store; OAuth tokens kept separately from static secrets
Saída de dados: Whatever your tools call

Solução de problemas

Erros comuns e correções

arcade command not found after install

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

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

Alternativas

arcade-mcp vs. outros

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

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills