arcade-mcp-server
Model Context Protocol (MCP) server framework for Arcade.dev
What it is and what it does
Arcade MCP Server is a framework for building Model Context Protocol (MCP) servers that expose your tools to AI assistants like Claude and development tools like Cursor. It uses a FastAPI-like decorator-based API to define tools, then automatically handles the MCP protocol negotiation and transport (stdio for local clients, HTTP/SSE for remote ones). The package includes built-in support for tool discovery, environment-based configuration, and hot reload during development.
You install it, define your tools with the @app.tool decorator, and run the server—it handles the rest. It's designed for both development (with automatic reloading) and production deployment (Docker, systemd, PM2, cloud platforms). The framework collects anonymous usage data by default (opt-out via ARCADE_USAGE_TRACKING=0) to track server starts and reliability.
Use it for:
- Expose custom Python functions as tools available to Claude Desktop or other MCP-compatible AI assistants.
- Build a local tool server for Cursor or other development environments that support the MCP protocol.
- Deploy a production MCP server over HTTP/SSE to serve multiple remote AI clients simultaneously.
- Integrate existing Arcade packages as discoverable tools without manual registration.
- Develop and test MCP tools locally with hot reload, then deploy the same code to production.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Arcade MCP Server provides a FastAPI-like framework for building Model Context Protocol servers that expose tools to AI assistants and development tools through stdio and HTTP/SSE transports.
Yes. The package is actively maintained, production-stable, has low install friction, and solves a clear problem—exposing Python tools to MCP-compatible AI assistants. MIT licensing is permissive. No known vulnerabilities. Install if you need to build an MCP server or integrate tools with Claude, Cursor, or similar platforms.
Install
arcade-mcp-server on PyPI
pip
pip install arcade-mcp-serveruv
uv add arcade-mcp-serverpoetry
poetry add arcade-mcp-serverInstalling arcade-mcp-server
Before you install
Low install friction with a pure-Python wheel. Active maintenance (released 4 days ago) and marked production-stable. Supports current Python versions (3.10–3.13).
License in practice
MIT license is permissive; you can use, modify, and distribute this package with minimal restrictions, provided you include the license notice.
Quickstart
pip install arcade-mcp-server
from arcade_mcp_server import MCPApp
from typing import Annotated
app = MCPApp(name="my-tools", version="1.0.0")
@app.tool
def greet(name: Annotated[str, "Name to greet"]) -> str:
return f"Hello, {name}!"
if __name__ == "__main__":
app.run()
Verify before relying
- Whether tool discovery automatically indexes all Arcade packages in the environment or requires explicit registration.
- Performance characteristics and concurrency limits under multi-client load.
- Specifics of the hot-reload mechanism and its interaction with long-running tools.
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 17 — anyio, arcade-core, arcade-serve, arcade-tdk, arcadepy, fastapi, httpx, joserfc, opentelemetry-api, opentelemetry-sdk, pydantic-settings, pydantic, python-dotenv, sse-starlette, starlette, uvicorn, watchfiles |
| Maintenance | actively maintained — 4 days since the last release |
| First released | |
| Downloads | 695,956/month — #5,308 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: arcade_mcp_server-1.25.2-py3-none-any.whl
Tags
More Application Frameworks packages
FastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
textualTextual is a Python framework for building…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
mcpBuild and connect to Model Context Protocol…
permissive · top 1,000 on PyPI
WerkzeugWerkzeug is a WSGI utility library providing…
permissive · top 1,000 on PyPI
arcade-mcpFramework for building Model Context Protocol…
permissive · top 15,000 on PyPI
postgres-mcpA Model Context Protocol server that connects…
permissive · top 15,000 on PyPI
arcade-serveArcade Serve provides FastAPI and Model Context…
permissive · top 15,000 on PyPI
pagerduty-mcpAn MCP (Model Context Protocol) server that…
unclear · top 15,000 on PyPI
mcp-proxymcp-proxy bridges Model Context Protocol (MCP)…
permissive · top 5,000 on PyPI
mcpforunityserverRuns a Model Context Protocol server that lets…
permissive · top 15,000 on PyPI
astro-airflow-mcpProvides AI assistants with programmatic access…
unclear · top 15,000 on PyPI
nextcloud-mcp-serverProvides a Model Context Protocol (MCP) server…
agpl · top 15,000 on PyPI
minimax-coding-plan-mcpAn MCP server that connects MiniMax's AI APIs…
permissive · top 15,000 on PyPI
arcade-tdkArcade TDK provides decorators, authentication…
permissive · top 15,000 on PyPI