MCP Registry
Model Context Protocol servers give an AI coding agent real hands: a database to query, a browser to drive, an issue tracker to read. Every server below is wired into one or more Setuproll builds. Copy the snippet to drop it into your own setup.
GitHub
Connects to the GitHub API so the agent can read and create issues and pull requests, browse files and commits, and search code across repositories. Authenticates with a personal access token.
claude mcp add github -- npx -y @modelcontextprotocol/server-githubFilesystem
Gives the agent scoped read and write access to a set of allowed local directories, with operations to list, read, search, move and edit files. The allowed roots are passed as arguments so the model cannot wander outside them.
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/project"
]
}
}
}Postgres
Lets the agent inspect a PostgreSQL schema and run read-only SQL queries against a live database, so it can reason about real tables and data before writing handlers or migrations. Connection is supplied as a database URL.
{
"mcpServers": {
"postgres": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-postgres",
"postgresql://localhost/mydb"
]
}
}
}Sentry
Pulls issues, error events and stack traces from Sentry so the agent can triage a production incident with real context and trace a crash back to the code path that caused it.
claude mcp add --transport http sentry https://mcp.sentry.dev/mcpPlaywright
Drives a real browser through Playwright so the agent can navigate pages, click and type, read the accessibility tree and take screenshots. It is how an agent verifies UI changes end to end instead of guessing.
claude mcp add playwright -- npx -y @playwright/mcp@latestContext7
Fetches current, version-accurate library documentation and code examples on demand, so the agent grounds its edits in real API signatures instead of stale training data.
claude mcp add --transport http context7 https://mcp.context7.com/mcpCloudflare
Provides access to Cloudflare Workers, KV, R2, D1 and account analytics so the agent can build, configure and observe edge infrastructure. Exposed as a set of remote MCP servers per product area.
claude mcp add --transport sse cloudflare https://bindings.mcp.cloudflare.com/sseFigma
Reads Figma files and frames over the Dev Mode API, returning layout, styles and design tokens so the agent can turn a selected frame into matching components instead of eyeballing a screenshot.
{
"mcpServers": {
"figma": {
"command": "npx",
"args": [
"-y",
"figma-developer-mcp",
"--stdio"
],
"env": {
"FIGMA_API_KEY": "your-figma-token"
}
}
}
}Git
Exposes local Git operations such as status, diff, log, blame, branch and commit so the agent can inspect history and stage changes against a working tree without shelling out manually.
{
"mcpServers": {
"git": {
"command": "uvx",
"args": [
"mcp-server-git",
"--repository",
"/path/to/repo"
]
}
}
}Jupyter
Connects to a running Jupyter kernel so the agent can execute notebook cells, read their outputs and capture plots or metrics. It turns a notebook into a live tool for data exploration and ML experiments.
{
"mcpServers": {
"jupyter": {
"command": "uvx",
"args": [
"jupyter-mcp-server"
],
"env": {
"JUPYTER_TOKEN": "your-token"
}
}
}
}Fetch
Fetches a web page and converts it to clean Markdown so the agent can read live documentation, articles or API references that are not in its training data.
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": [
"mcp-server-fetch"
]
}
}
}Linear
Connects to Linear so the agent can read, create and update issues, projects and cycles. Useful for turning a ticket directly into a branch and PR, or filing follow-up work it discovers.
claude mcp add --transport sse linear https://mcp.linear.app/sseSemgrep
Runs Semgrep static analysis so the agent can scan a diff or codebase for security and correctness issues, then reason about which findings are actually exploitable rather than reporting raw noise.
claude mcp add semgrep -- uvx semgrep-mcpMemory
A local knowledge-graph store the agent can write facts and relations to and recall later, giving it persistent memory of project decisions and preferences across sessions.
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Sequential Thinking
Provides a structured tool for breaking a hard problem into explicit, revisable reasoning steps, letting the agent plan, branch and backtrack on complex tasks in a controlled way.
{
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}Chrome Devtools MCP
Chrome DevTools for coding agents
claude mcp add chrome-devtools-mcp -- npx -y chrome-devtools-mcpPlaywright MCP
Playwright MCP server
claude mcp add playwright-mcp -- npx -y playwright-mcpGithub MCP Server
GitHub's official MCP Server
claude mcp add github-mcp-server -- npx -y github-mcp-serverFastmcp
🚀 The fast, Pythonic way to build MCP servers and clients.
claude mcp add fastmcp -- npx -y fastmcpN8n MCP
A MCP for Claude Desktop / Claude Code / Windsurf / Cursor to build n8n workflows for you
claude mcp add n8n-mcp -- npx -y n8n-mcpMCP Toolbox
MCP Toolbox for Databases is an open source MCP server for databases.
claude mcp add mcp-toolbox -- npx -y mcp-toolboxFigma Context MCP
MCP server to provide Figma layout information to AI coding agents like Cursor
claude mcp add figma-context-mcp -- npx -y Figma-Context-MCPXiaohongshu MCP
MCP for xiaohongshu.com
claude mcp add xiaohongshu-mcp -- npx -y xiaohongshu-mcpMCP Chrome
Chrome MCP Server is a Chrome extension-based Model Context Protocol (MCP) server that exposes your Chrome browser functionality to AI assistants like Claude, enabling complex browser automation, content analysis, and semantic search.
claude mcp add mcp-chrome -- npx -y mcp-chromeFastapi MCP
Expose your FastAPI endpoints as Model Context Protocol (MCP) tools, with Auth!
claude mcp add fastapi-mcp -- npx -y fastapi_mcpCodebase Memory MCP
High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.
claude mcp add codebase-memory-mcp -- npx -y codebase-memory-mcpPal MCP Server
The power of Claude Code / GeminiCLI / CodexCLI + [Gemini / OpenAI / OpenRouter / Azure / Grok / Ollama / Custom Model / All Of The Above] working as one.
claude mcp add pal-mcp-server -- npx -y pal-mcp-serverUnity MCP
Unity MCP acts as a bridge between AI assistants and your Unity Editor. Give your LLM tools to manage assets, control scenes, edit scripts, and automate tasks within Unity.
claude mcp add unity-mcp -- npx -y unity-mcpMCP Use
The fullstack MCP framework to develop MCP Apps for ChatGPT / Claude & MCP Servers for AI Agents.
claude mcp add mcp-use -- npx -y mcp-useIda Pro MCP
AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
claude mcp add ida-pro-mcp -- npx -y ida-pro-mcpMCP
Open source MCP Servers for AWS
claude mcp add mcp -- npx -y mcpGhidraMCP
MCP Server for Ghidra
claude mcp add ghidramcp -- npx -y GhidraMCPMCP Agent
Build effective agents using Model Context Protocol and simple workflow patterns
claude mcp add mcp-agent -- npx -y mcp-agentGit MCP
Put an end to code hallucinations! GitMCP is a free, open-source, remote MCP server for any GitHub project
claude mcp add git-mcp -- npx -y git-mcpBrowser Tools MCP
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
claude mcp add browser-tools-mcp -- npx -y browser-tools-mcpCursor Talk To Figma MCP
TalkToFigma: MCP integration between AI Agent (Cursor, Claude Code, Codex) and Figma, allowing Agentic AI to communicate with Figma for reading designs and modifying them programmatically.
claude mcp add cursor-talk-to-figma-mcp -- npx -y cursor-talk-to-figma-mcpMCP
Browser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
claude mcp add mcp-2 -- npx -y mcpFirecrawl MCP Server
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
claude mcp add firecrawl-mcp-server -- npx -y firecrawl-mcp-serverWindows MCP
MCP Server for Computer Use in Windows
claude mcp add windows-mcp -- npx -y Windows-MCPDesktopCommanderMCP
This is MCP server for Claude that gives it terminal control, file system search and diff file editing capabilities
claude mcp add desktopcommandermcp -- npx -y DesktopCommanderMCPXcodeBuildMCP
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
claude mcp add xcodebuildmcp -- npx -y XcodeBuildMCPWhatsapp MCP
WhatsApp MCP server
claude mcp add whatsapp-mcp -- npx -y whatsapp-mcpMCP Atlassian
MCP server for Atlassian tools (Confluence, Jira)
claude mcp add mcp-atlassian -- npx -y mcp-atlassianMobile MCP
Model Context Protocol Server for Mobile Automation and Scraping (iOS, Android, Emulators, Simulators and Real Devices)
claude mcp add mobile-mcp -- npx -y mobile-mcpMagic MCP
It's like v0 but in your Cursor/WindSurf/Cline. 21st dev Magic MCP server for working with your frontend like Magic
claude mcp add magic-mcp -- npx -y magic-mcpNotebooklm MCP CLI
Programmatic access to Google NotebookLM via command-line interface (CLI), Model Context Protocol (MCP) server, and AI agent skills.
claude mcp add notebooklm-mcp-cli -- npx -y notebooklm-mcp-cliMCP UI
UI over MCP. Create next-gen UI experiences with the protocol and SDK!
claude mcp add mcp-ui -- npx -y mcp-uiMcporter
Call MCPs via TypeScript, masquerading as simple TypeScript API. Or package them as cli.
claude mcp add mcporter -- npx -y mcporter