TOKREPO · ARSENAL
Promoted from Trending

MCP Server Stack

The MCP servers that ship in every serious agent setup — from browser to database to popup-fix patches.

8 assets

What's in this pack

The Model Context Protocol (MCP) is the open standard Anthropic shipped in late 2024 for connecting AI agents to external tools. A year later, the same eight MCP servers appear in nearly every serious agent configuration. This pack collects them.

Server What it gives the agent Why it ships in every stack
Chrome DevTools MCP Live DOM, console, network from a real Chromium The only browser MCP with a fix for the multi-instance lock that breaks Cursor + Claude Code in parallel
Playwright MCP Headless browser automation Stable selector engine + screenshot + accessibility tree
Filesystem MCP Scoped read/write to project files Replaces shell cat/echo for tool-call accuracy
Postgres MCP Direct SQL queries against any Postgres Schema-aware completions and result rendering
GitHub MCP Read PRs, issues, file blobs Lets the agent do code review without a clone
Puppeteer MCP Lower-level browser control Useful when Playwright's abstractions get in the way
Slack MCP Read + post in workspaces Where most ops happens day to day
Figma MCP Read frames, components, variables Design-to-code without screenshots

Why MCP matters in 2026

Before MCP, every IDE-agent pair invented its own tool format: Cursor had its own, Claude Code had its own, Codex CLI had its own. Each integration was a custom shim. MCP killed that — a single server now serves any host that speaks the protocol. Install once, work in Claude Code, Cursor, Codex CLI, Cline, Roo Code, Windsurf, GitHub Copilot, or Gemini CLI.

That's the structural reason this pack matters. The practical reason: most production blockers in agent setups come from missing MCP servers. The agent can't see the DOM, can't query the DB, can't read GitHub — and it hallucinates instead of asking.

Install in one command

tokrepo install pack/mcp-server-stack

# Or pick the ones you need
tokrepo install chrome-devtools-mcp
tokrepo install postgres-mcp
tokrepo install github-mcp

The TokRepo CLI wires each server into your active host's config (~/.claude/mcp.json for Claude Code, ~/.cursor/mcp.json for Cursor, etc) and starts them on next session.

Watch out for

  • Chrome DevTools MCP needs the patched build. The vanilla version locks Chrome to a single agent at a time, which breaks anyone running Cursor and Claude Code in parallel. The pack defaults to the patched fork.
  • Postgres MCP runs read-only by default. That's the right default. Flip the flag explicitly when you want write access.
  • GitHub MCP rate-limits at 5,000 req/h on classic tokens. For teams, swap in a fine-grained token with bumped quota.
  • Filesystem MCP scope is path-prefix based. Always pass the project root, not your home dir, to avoid the agent reading ~/.ssh/.

When this pack alone isn't enough

If you live in the browser → also install the Browser Automation pack (Browser-Use, Skyvern, Stagehand). If you're DB-heavy → also install Postgres for AI Agents for Neon, Supabase, and DBHub MCPs.

INSTALL · ONE COMMAND
$ tokrepo install pack/mcp-server-stack
hand it to your agent — or paste it in your terminal
What's inside

8 assets in this pack

MCP#01
Pal MCP Server — Multi-Model AI Gateway for Claude Code

MCP server that lets Claude Code use Gemini, OpenAI, Grok, and Ollama as a unified AI dev team. Features model routing, CLI-to-CLI bridge, and conversation continuity across 7+ providers.

by TokRepo Curated·260 views
$ tokrepo install pal-mcp-server-multi-model-ai-gateway-claude-code-09c904b2
MCP#02
Google Stitch MCP — AI Design via Model Context Protocol

Connect Claude Code, Cursor, Gemini CLI, or VS Code to Google Stitch for AI-driven UI design. Create projects, generate screens from text, edit designs, manage design systems — all via MCP.

by Google · Gemini Team·269 views
$ tokrepo install google-stitch-mcp-ai-design-via-model-context-protocol-05e7ef0b
MCP#03
Chrome DevTools MCP — Browser Debugging for AI Agents

Give your AI coding agent full access to Chrome DevTools for browser automation, debugging, and performance analysis. Works with Claude, Cursor, Copilot, and 15+ AI tools.

by MCP Hub·96 views
$ tokrepo install chrome-devtools-mcp-browser-debugging-ai-agents-17f46368
Script#04★ 1
Chrome MCP Background Proxy — Fix Popups, Focus Stealing & Multi-Agent Conflicts

Drop-in proxy for Chrome MCP. Solves Chrome 146+ debugging popups, focus stealing, and multi-agent conflicts with persistent CDP connection, request ID remapping, and sessionId-based event routing.

by henuwangkai·235 views
$ tokrepo install chrome-mcp-background-proxy-fix-popups-focus-stealing-multi-29944683
MCP#05
Firecrawl MCP — Web Scraping Server for AI Agents

Official Firecrawl MCP server for AI agents to scrape, crawl, and extract structured data from any website. Supports batch scraping, search, and markdown extraction. 15,000+ stars.

by MCP Hub·122 views
$ tokrepo install firecrawl-mcp-web-scraping-server-ai-agents-3de63ffe
MCP#06
Playwright MCP — Browser Automation for AI Agents

Official Playwright MCP server that gives AI agents full browser control — navigate pages, fill forms, click buttons, take screenshots, and run end-to-end tests. 3,000+ stars.

by Microsoft AI·112 views
$ tokrepo install playwright-mcp-browser-automation-ai-agents-c07ce036
MCP#07
GitHub MCP Server — Official GitHub AI Integration

GitHub's official MCP server that lets AI assistants manage repos, issues, PRs, Actions, and code search through the Model Context Protocol.

by GitHub·95 views
$ tokrepo install github-mcp-server-official-github-ai-integration-679a2650
MCP#08
Neon MCP — Serverless Postgres via AI Agents

MCP server for Neon serverless Postgres. Create projects, branch databases, run SQL, optimize queries via natural language. Safe migration workflow with branching. MIT, 574+ stars.

by MCP Hub·129 views
$ tokrepo install neon-mcp-serverless-postgres-via-ai-agents-439d1fdb
FAQ

Frequently asked questions

What is the Model Context Protocol (MCP)?

MCP is an open standard introduced by Anthropic in late 2024 for connecting AI agents to external data sources and tools. Instead of every IDE-agent pair inventing its own tool format, MCP defines a single JSON-RPC protocol that any host (Claude Code, Cursor, Codex CLI, etc) can speak to any server (Postgres, Filesystem, Chrome DevTools, etc). Spec at modelcontextprotocol.io.

Why these 8 servers specifically?

We pulled the install lists from the most-viewed agent setup guides on TokRepo and kept the servers that appeared in 4+ of them. The result is the de-facto core stack — browser, filesystem, source control, database, chat. Other useful servers exist (Slack, Notion, Linear) but those are workflow-specific.

Will MCP servers work in Cursor and Codex CLI, or just Claude Code?

All major hosts support MCP: Claude Code, Cursor, Codex CLI, Cline, Roo Code, Windsurf, GitHub Copilot, Gemini CLI. The TokRepo CLI writes to the right config file for whichever host is active. The same server binary serves all hosts.

Do MCP servers need API keys?

Some yes (GitHub MCP needs a personal access token, Slack MCP needs a workspace token, Figma MCP needs a personal token). Filesystem and Chrome DevTools MCPs run with no keys. The pack ships an .env.example listing each server's required keys.

What's the difference vs the Browser Automation pack?

MCP servers are how the agent sees state (DOM tree, network log, console). Browser Automation tools (Browser-Use, Skyvern, Stagehand) are how the agent acts on a page (click, fill, navigate) at higher abstraction. Most production setups install both.

MORE FROM THE ARSENAL

12 packs · 80+ hand-picked assets

Browse every curated bundle on the home page

Back to all packs