Skip to main content

Arcade.dev - Tool Calling platform for Agents

Project description

Arcade

License CI PyPI Python Version

Arcade MCP

Open-source Python framework for building MCP servers and tools.

DocumentationExamplesDiscord

What is arcade-mcp

arcade-mcp is the Python framework for building Model Context Protocol servers and the tools that run inside them. It powers the 7,500+ prebuilt tools across 81 MCP servers at Arcade.dev, and is open-sourced so you can build your own.

Use it when you need MCP tools that aren't already in the prebuilt catalog: internal APIs, custom OAuth providers, domain-specific integrations.

Highlights:

  • Decorator API covering the full MCP spec: tools, resources, prompts, sampling, elicitation, progress, logging.
  • Authorized tool calling. Declare requires_auth=GitHub(scopes=["repo"]) and Arcade handles OAuth, token refresh, and per-call scoping. The client and the LLM never see the token.
  • Vendor-neutral. Any MCP client, any LLM, any agent framework (LangChain, Mastra, Pydantic AI, CrewAI, Google ADK, OpenAI Agents).
  • arcade evals for testing tool-call accuracy against real LLMs.
  • arcade deploy for one-command hosting on Arcade Cloud.

Authorized tool calling

Tools can declare:

  1. Which OAuth scopes they need, and Arcade handles the rest: prompting the end user to authorize, storing and refreshing tokens, scoping them per call
  2. API keys or any other secrets, and Arcade hosts the secrets securely in an encrypted environment.

The secrets (OAuth tokens, API keys, etc) are securely injected by Arcade into your tool call at runtime, so that your tool can authorize requests to upstream APIs, for example. The client and the LLM never see the secret values.

A tool that reads the user's GitHub repos is one decorator away:

from arcade_mcp_server import MCPApp, Context
from arcade_mcp_server.auth import GitHub

app = MCPApp(name="gh", version="1.0.0")

@app.tool(requires_auth=GitHub(scopes=["repo"]))
async def list_my_repos(context: Context) -> list[str]:
    """List the authenticated user's GitHub repositories."""
    token = context.get_auth_token_or_empty()
    ...

When the tool is invoked through Arcade Cloud, the user is presented with a URL to complete the OAuth challenge in their browser. On success, the token is injected into context for that call. Subsequent calls reuse and refresh the token automatically.

22 helper classes ship with the framework for popular providers:

Asana, Atlassian, Attio, ClickUp, Discord, Dropbox, Figma, GitHub, Google, Hubspot, Linear, LinkedIn, Microsoft, Notion, PagerDuty, Reddit, Slack, Spotify, Twitch, X, Zoom.

For any other OAuth API, use the generic OAuth2(...) class and register your OAuth app in the Arcade Dashboard.

Quick Start

Install the CLI

uv tool install arcade-mcp

Scaffold a new server

arcade new my_server
cd my_server/src/my_server

The scaffold creates pyproject.toml, .env.example, and a server.py with example tools.

A minimal tool:

from typing import Annotated
from arcade_mcp_server import MCPApp

app = MCPApp(name="my_server", version="1.0.0")

@app.tool
def greet(name: Annotated[str, "Name to greet"]) -> str:
    """Greet a person by name."""
    return f"Hello, {name}!"

if __name__ == "__main__":
    app.run(transport="stdio")

Run

uv run server.py             # stdio (default), for Claude Desktop and CLI tools
uv run server.py http        # HTTP+SSE, for Cursor and VS Code; docs at http://127.0.0.1:8000/docs

Configure your MCP client

arcade configure claude                                 # Claude Desktop, stdio
arcade configure cursor --transport http --port 8080    # Cursor, local HTTP on :8080
arcade configure vscode --entrypoint my_server.py       # VS Code, stdio launching my_server.py

For more patterns (MCP resources, sampling, progress reporting, tool chaining, end-to-end agents, eval suites, Resource Server Auth), browse examples/mcp_servers/. Run arcade --help for the full CLI.

With Arcade Cloud

arcade login followed by arcade deploy packages your server, discovers and upserts required secrets, and polls until it's healthy on Arcade Cloud. From there, the Arcade Engine fulfills authorized tool calling flows for end users, and arcade server logs/list/status plus arcade dashboard provide observability and management.

Standalone is supported too. Run your server in any MCP client over stdio or HTTP. Supply your own access tokens for tools with requires_auth=..., and protect production HTTP endpoints with Resource Server Auth (OAuth 2.1 Bearer tokens validated against your IdP).

Install from Source

Requires Python 3.10+ and uv.

git clone https://github.com/ArcadeAI/arcade-mcp.git
cd arcade-mcp
make install

See CONTRIBUTING.md for development workflow and SECURITY.md for vulnerability reporting.

Community

License

MIT. See LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

arcade_mcp-1.14.3.tar.gz (895.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

arcade_mcp-1.14.3-py3-none-any.whl (203.9 kB view details)

Uploaded Python 3

File details

Details for the file arcade_mcp-1.14.3.tar.gz.

File metadata

  • Download URL: arcade_mcp-1.14.3.tar.gz
  • Upload date:
  • Size: 895.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for arcade_mcp-1.14.3.tar.gz
Algorithm Hash digest
SHA256 dec659839eb992c5d99a4113d1bebfcfafea236f3c5fd8f92d68c56ba40e169e
MD5 5731e47dfb4711f96e8157fbe892551b
BLAKE2b-256 aafde7231fa9650f8a7227aed8135db760621d8395747d98522c5097831104e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcade_mcp-1.14.3.tar.gz:

Publisher: release-on-version-change.yml on ArcadeAI/arcade-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcade_mcp-1.14.3-py3-none-any.whl.

File metadata

  • Download URL: arcade_mcp-1.14.3-py3-none-any.whl
  • Upload date:
  • Size: 203.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for arcade_mcp-1.14.3-py3-none-any.whl
Algorithm Hash digest
SHA256 eef2a23912fd08df0ddb4147f12503e2dce22747c9ec4746a2d81e09985d8854
MD5 a0f07b94b7aac998f3acbfcba342bff7
BLAKE2b-256 0e7c76ddaf2032d88702c41485581cf52b89147b4664ca7f93a09a28c5b9cc77

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcade_mcp-1.14.3-py3-none-any.whl:

Publisher: release-on-version-change.yml on ArcadeAI/arcade-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page