.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/arcadeai/arcade-mcp
home/mcp-servers/arcadeai/arcade-mcp
arcadeai avatar

arcade-mcp

byarcadeai· 1 MCP server

Installs

104k

Stars

983

Forks

101

Category

AI Agents & MCP

View on GitHub

TL;DR

</div>

How to install arcade-mcp?

arcadeai/arcade-mcp
$git clone https://github.com/arcadeai/arcade-mcp

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install arcade-mcp by running `git clone https://github.com/arcadeai/arcade-mcp`, then use it for the current task and follow its documentation at https://github.com/arcadeai/arcade-mcp.

Files · 1

View on GitHub
README.md
1<div align="center">
2 <img src="https://docs.arcade.dev/images/logo/arcade-logo.png" alt="Arcade" width="400">
3</div>
4 
5<div align="center">
6 
7[![License](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/ArcadeAI/arcade-mcp/blob/main/LICENSE)
8[![CI](https://img.shields.io/github/actions/workflow/status/ArcadeAI/arcade-mcp/main.yml?branch=main)](https://github.com/ArcadeAI/arcade-mcp/actions?query=branch%3Amain)
9[![PyPI](https://img.shields.io/pypi/v/arcade-mcp)](https://pypi.org/project/arcade-mcp/)
10[![Python Version](https://img.shields.io/pypi/pyversions/arcade-mcp)](https://pypi.org/project/arcade-mcp/)
11 
12</div>
13 
14# Arcade MCP
15 
16**Open-source Python framework for building MCP servers and tools.**
17 
18[Documentation](https://docs.arcade.dev) • [Examples](examples/mcp_servers/) • [Discord](https://discord.com/invite/GUZEMpEZ9p)
19 
20## What is arcade-mcp
21 
22`arcade-mcp` is the Python framework for building [Model Context Protocol](https://modelcontextprotocol.io) servers and the tools that run inside them. It powers the 7,500+ prebuilt tools across 81 MCP servers at [Arcade.dev](https://arcade.dev), and is open-sourced so you can build your own.
23 
24Use it when you need MCP tools that aren't already in the prebuilt catalog: internal APIs, custom OAuth providers, domain-specific integrations.
25 
26**Highlights:**
27 
28- Decorator API covering the full MCP spec: tools, resources, prompts, sampling, elicitation, progress, logging.
29- [Authorized tool calling](#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.
30- Vendor-neutral. Any MCP client, any LLM, any agent framework (LangChain, Mastra, Pydantic AI, CrewAI, Google ADK, OpenAI Agents).
31- `arcade evals` for testing tool-call accuracy against real LLMs.
32- `arcade deploy` for one-command hosting on Arcade Cloud.
33 
34## Authorized tool calling
35 
36Tools can declare:
37 
381. Which OAuth scopes they need, and Arcade handles the rest: prompting the end user to authorize, storing and refreshing tokens, scoping them per call
392. API keys or any other secrets, and Arcade hosts the secrets securely in an encrypted environment.
40 
41The 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.**
42 
43A tool that reads the user's GitHub repos is one decorator away:
44 
45```python
46from arcade_mcp_server import MCPApp, Context
47from arcade_mcp_server.auth import GitHub
48 
49app = MCPApp(name="gh", version="1.0.0")
50 
51@app.tool(requires_auth=GitHub(scopes=["repo"]))
52async def list_my_repos(context: Context) -> list[str]:
53 """List the authenticated user's GitHub repositories."""
54 token = context.get_auth_token_or_empty()
55 ...
56```
57 
58When 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.
59 
6022 helper classes ship with the framework for popular providers:
61 
62`Asana`, `Atlassian`, `Attio`, `ClickUp`, `Discord`, `Dropbox`, `Figma`, `GitHub`, `Google`, `Hubspot`, `Linear`, `LinkedIn`, `Microsoft`, `Notion`, `PagerDuty`, `Reddit`, `Slack`, `Spotify`, `Twitch`, `X`, `Zoom`.
63 
64For any other OAuth API, use the generic `OAuth2(...)` class and register your OAuth app in the Arcade Dashboard.
65 
66## Quick Start
67 
68### Install the CLI
69 
70```bash
71uv tool install arcade-mcp
72```
73 
74### Scaffold a new server
75 
76```bash
77arcade new my_server
78cd my_server/src/my_server
79```
80 
81The scaffold creates `pyproject.toml`, `.env.example`, and a `server.py` with example tools.
82 
83A minimal tool:
84 
85```python
86from typing import Annotated
87from arcade_mcp_server import MCPApp
88 
89app = MCPApp(name="my_server", version="1.0.0")
90 
91@app.tool
92def greet(name: Annotated[str, "Name to greet

Preview

arcadeai/arcade-mcparcadeai/arcade-mcp
Repoarcadeai/arcade-mcp
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedJul 2026
LicenseMIT
First seenJul 26, 2026

Tags

MCPaiarcade

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k