The Tools Behind The Builds

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.

289Servers
289Matching
98Build Links
Sort
Category

GitHub

VCS

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.

terminal
claude mcp add github -- npx -y @modelcontextprotocol/server-github

Filesystem

Data

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.

.mcp.json
{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/project"
      ]
    }
  }
}

Postgres

Data

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.

.mcp.json
{
  "mcpServers": {
    "postgres": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-postgres",
        "postgresql://localhost/mydb"
      ]
    }
  }
}

Sentry

Observability

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.

terminal
claude mcp add --transport http sentry https://mcp.sentry.dev/mcp

Playwright

Browser

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.

terminal
claude mcp add playwright -- npx -y @playwright/mcp@latest

Context7

Docs

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.

terminal
claude mcp add --transport http context7 https://mcp.context7.com/mcp

Cloudflare

Infra

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.

terminal
claude mcp add --transport sse cloudflare https://bindings.mcp.cloudflare.com/sse

Figma

Design

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.

.mcp.json
{
  "mcpServers": {
    "figma": {
      "command": "npx",
      "args": [
        "-y",
        "figma-developer-mcp",
        "--stdio"
      ],
      "env": {
        "FIGMA_API_KEY": "your-figma-token"
      }
    }
  }
}

Git

VCS

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.

.mcp.json
{
  "mcpServers": {
    "git": {
      "command": "uvx",
      "args": [
        "mcp-server-git",
        "--repository",
        "/path/to/repo"
      ]
    }
  }
}

Jupyter

Notebook

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.

.mcp.json
{
  "mcpServers": {
    "jupyter": {
      "command": "uvx",
      "args": [
        "jupyter-mcp-server"
      ],
      "env": {
        "JUPYTER_TOKEN": "your-token"
      }
    }
  }
}

Fetch

Web

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.

.mcp.json
{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": [
        "mcp-server-fetch"
      ]
    }
  }
}

Linear

Project Mgmt

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.

terminal
claude mcp add --transport sse linear https://mcp.linear.app/sse

Semgrep

Security

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.

terminal
claude mcp add semgrep -- uvx semgrep-mcp

Memory

Agent Memory

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.

.mcp.json
{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}
Used by0
Not used by any build yet.

Sequential Thinking

Agent Memory

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.

.mcp.json
{
  "mcpServers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}
Used by0
Not used by any build yet.

Chrome Devtools MCP

Browser

Chrome DevTools for coding agents

terminal
claude mcp add chrome-devtools-mcp -- npx -y chrome-devtools-mcp
Used by0
Not used by any build yet.

Playwright MCP

Browser

Playwright MCP server

terminal
claude mcp add playwright-mcp -- npx -y playwright-mcp
Used by0
Not used by any build yet.

Github MCP Server

VCS

GitHub's official MCP Server

terminal
claude mcp add github-mcp-server -- npx -y github-mcp-server
Used by0
Not used by any build yet.

Fastmcp

Agent Memory

🚀 The fast, Pythonic way to build MCP servers and clients.

terminal
claude mcp add fastmcp -- npx -y fastmcp
Used by0
Not used by any build yet.

N8n MCP

Other

A MCP for Claude Desktop / Claude Code / Windsurf / Cursor to build n8n workflows for you

terminal
claude mcp add n8n-mcp -- npx -y n8n-mcp
Used by0
Not used by any build yet.

MCP Toolbox

Web

MCP Toolbox for Databases is an open source MCP server for databases.

terminal
claude mcp add mcp-toolbox -- npx -y mcp-toolbox
Used by0
Not used by any build yet.

Figma Context MCP

Design

MCP server to provide Figma layout information to AI coding agents like Cursor

terminal
claude mcp add figma-context-mcp -- npx -y Figma-Context-MCP
Used by0
Not used by any build yet.

Xiaohongshu MCP

Other

MCP for xiaohongshu.com

terminal
claude mcp add xiaohongshu-mcp -- npx -y xiaohongshu-mcp
Used by0
Not used by any build yet.

MCP Chrome

Browser

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.

terminal
claude mcp add mcp-chrome -- npx -y mcp-chrome
Used by0
Not used by any build yet.

Fastapi MCP

Data

Expose your FastAPI endpoints as Model Context Protocol (MCP) tools, with Auth!

terminal
claude mcp add fastapi-mcp -- npx -y fastapi_mcp
Used by0
Not used by any build yet.

Codebase Memory MCP

Agent Memory

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.

terminal
claude mcp add codebase-memory-mcp -- npx -y codebase-memory-mcp
Used by0
Not used by any build yet.

Pal MCP Server

Infra

The power of Claude Code / GeminiCLI / CodexCLI + [Gemini / OpenAI / OpenRouter / Azure / Grok / Ollama / Custom Model / All Of The Above] working as one.

terminal
claude mcp add pal-mcp-server -- npx -y pal-mcp-server
Used by0
Not used by any build yet.

Unity MCP

Browser

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.

terminal
claude mcp add unity-mcp -- npx -y unity-mcp
Used by0
Not used by any build yet.

MCP Use

Agent Memory

The fullstack MCP framework to develop MCP Apps for ChatGPT / Claude & MCP Servers for AI Agents.

terminal
claude mcp add mcp-use -- npx -y mcp-use
Used by0
Not used by any build yet.

Ida Pro MCP

Other

AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.

terminal
claude mcp add ida-pro-mcp -- npx -y ida-pro-mcp
Used by0
Not used by any build yet.

MCP

Infra

Open source MCP Servers for AWS

terminal
claude mcp add mcp -- npx -y mcp
Used by0
Not used by any build yet.

GhidraMCP

Other

MCP Server for Ghidra

terminal
claude mcp add ghidramcp -- npx -y GhidraMCP
Used by0
Not used by any build yet.

MCP Agent

Other

Build effective agents using Model Context Protocol and simple workflow patterns

terminal
claude mcp add mcp-agent -- npx -y mcp-agent
Used by0
Not used by any build yet.

Git MCP

VCS

Put an end to code hallucinations! GitMCP is a free, open-source, remote MCP server for any GitHub project

terminal
claude mcp add git-mcp -- npx -y git-mcp
Used by0
Not used by any build yet.

Browser Tools MCP

Browser

Monitor browser logs directly from Cursor and other MCP compatible IDEs.

terminal
claude mcp add browser-tools-mcp -- npx -y browser-tools-mcp
Used by0
Not used by any build yet.

Cursor Talk To Figma MCP

Design

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.

terminal
claude mcp add cursor-talk-to-figma-mcp -- npx -y cursor-talk-to-figma-mcp
Used by0
Not used by any build yet.

MCP

Browser

Browser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser

terminal
claude mcp add mcp-2 -- npx -y mcp
Used by0
Not used by any build yet.

Firecrawl MCP Server

Web

🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.

terminal
claude mcp add firecrawl-mcp-server -- npx -y firecrawl-mcp-server
Used by0
Not used by any build yet.

Windows MCP

Other

MCP Server for Computer Use in Windows

terminal
claude mcp add windows-mcp -- npx -y Windows-MCP
Used by0
Not used by any build yet.

DesktopCommanderMCP

Web

This is MCP server for Claude that gives it terminal control, file system search and diff file editing capabilities

terminal
claude mcp add desktopcommandermcp -- npx -y DesktopCommanderMCP
Used by0
Not used by any build yet.

XcodeBuildMCP

Other

A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.

terminal
claude mcp add xcodebuildmcp -- npx -y XcodeBuildMCP
Used by0
Not used by any build yet.

Whatsapp MCP

Data

WhatsApp MCP server

terminal
claude mcp add whatsapp-mcp -- npx -y whatsapp-mcp
Used by0
Not used by any build yet.

MCP Atlassian

Project Mgmt

MCP server for Atlassian tools (Confluence, Jira)

terminal
claude mcp add mcp-atlassian -- npx -y mcp-atlassian
Used by0
Not used by any build yet.

Mobile MCP

Web

Model Context Protocol Server for Mobile Automation and Scraping (iOS, Android, Emulators, Simulators and Real Devices)

terminal
claude mcp add mobile-mcp -- npx -y mobile-mcp
Used by0
Not used by any build yet.

Magic MCP

Other

It's like v0 but in your Cursor/WindSurf/Cline. 21st dev Magic MCP server for working with your frontend like Magic

terminal
claude mcp add magic-mcp -- npx -y magic-mcp
Used by0
Not used by any build yet.

Notebooklm MCP CLI

Notebook

Programmatic access to Google NotebookLM via command-line interface (CLI), Model Context Protocol (MCP) server, and AI agent skills.

terminal
claude mcp add notebooklm-mcp-cli -- npx -y notebooklm-mcp-cli
Used by0
Not used by any build yet.

MCP UI

Agent Memory

UI over MCP. Create next-gen UI experiences with the protocol and SDK!

terminal
claude mcp add mcp-ui -- npx -y mcp-ui
Used by0
Not used by any build yet.

Mcporter

Data

Call MCPs via TypeScript, masquerading as simple TypeScript API. Or package them as cli.

terminal
claude mcp add mcporter -- npx -y mcporter
Used by0
Not used by any build yet.
Showing 48 of 289