🌐
Claube
claube.ai › servers
Claude MCP Servers
Context7 MCP is a server that provides up-to-date documentation for LLMs and AI code editors. ... MarkItDown-MCP is a python tool for converting files and office documents to Markdown.
Discussions

Setting Up MCP Servers in Claude Code: A Tech Ritual for the Quietly Desperate
Took me about 30 min to figure this out, but Claude stores the GLOBAL MCP servers in a top level `mcpServers` property inside the `/Users/USERNAME/.claude.json`. I have no idea why they don't mention this in their docs, but I hope people find it when looking for this. More on reddit.com
🌐 r/ClaudeAI
67
153
March 19, 2025
When working on solo projects with claude code, which MCP servers do you feel are most impactful?
Zen has been huge for me. Having Claude bounce ideas off of Gemini has led to a much more consistent experience. More on reddit.com
🌐 r/ClaudeAI
112
192
June 15, 2025
What MCPs is everyone using with Claude?
I’m using my own gemini-mcp-tool and apparently people are finding it as useful as I do. TLDR: save some tokens. More on reddit.com
🌐 r/mcp
113
115
July 14, 2025
What is the best MCP with Claude Code?
For backend .NET dev: - code-indexer (with my custom modifications for Windows, C# and emb. cache) - context7 - serena (with my custom lsp mode, only: get_symbols_overview, find_symbol, find_referencing_symbols, replace_symbol_body, insert_after_symbol, insert_before_symbol, activate_project) - zen (o3 and gemini 2.5 pro only) I tried many different ones, but came to the conclusion that the fewer there are, the easier it is for LLM to use them and the less context gets clogged up More on reddit.com
🌐 r/ClaudeAI
63
26
July 22, 2025
🌐
Claude
code.claude.com › docs › en › mcp
Connect Claude Code to tools via MCP - Claude Code Docs
Automatic lifecycle: Servers start ... Claude Code to apply MCP server changes (enabling or disabling) Environment variables: Use ${CLAUDE_PLUGIN_ROOT} for plugin-relative paths · User environment access: Access to same environment variables as manually configured servers · Multiple transport types: Support stdio, SSE, and HTTP transports (transport support may vary by server) Viewing plugin MCP servers: ... Plugin servers appear in the list with indicators ...
🌐
GitHub
github.com › punkpeye › awesome-mcp-servers
GitHub - punkpeye/awesome-mcp-servers: A collection of MCP servers.
3 weeks ago - askbudi/roundtable 📇 ☁️ 🏠 🍎 🪟 🐧 - Meta-MCP server that unifies multiple AI coding assistants (Codex, Claude Code, Cursor, Gemini) through intelligent auto-discovery and standardized MCP interface, providing zero-configuration access to the entire AI coding ecosystem. duaraghav8/MCPJungle 🏎️ 🏠 - Self-hosted MCP Server registry for enterprise AI Agents · glenngillen/mcpmcp-server ☁️ 📇 🍎 🪟 🐧 - A list of MCP servers so you can ask your client which servers you can use to improve your daily workflow.
Starred by 77.4K users
Forked by 6.6K users
🌐
MCPcat
mcpcat.io › guides › best-mcp-servers-for-claude-code
Best MCP Servers for Claude Code - Top Tools & Integrations | MCPcat
After installation, you can use ... with the appropriate AWS services. The Cloudflare MCP servers ecosystem comprises 16 specialized servers that give Claude Code comprehensive access to Cloudflare's edge computing ...
🌐
Apidog
apidog.com › blog › top-10-mcp-servers-for-claude-code
Top 10 Essential MCP Servers for Claude Code (2025 Developer Version)
August 14, 2025 - Discover the top 10 MCP servers for Claude Code in 2025, including GitHub, Apidog, and PostgreSQL. Learn how these servers boost productivity, automate tasks, and streamline workflows with step-by-step setup guides.
🌐
MCP Market
mcpmarket.com › server
Browse All MCP Servers
Enables users to create, manage, and summarize sticky notes using an AI agent like Claude through MCP. ... Enables interaction with the Deriv API through Model Context Protocol (MCP) and OpenAI function calling. ... Provides a starter template for building Model Context Protocol (MCP) servers for AI assistants.
🌐
Zapier
zapier.com › productivity › app tips
7 Claude MCP servers you can set up right now
June 17, 2025 - GitHub MCP server to connect your AI to GitHub, extracting and analyzing specific data in repositories. For example, you could search repositories and get a list of commits and their details, straight from Claude. Note that to run the server in a container, you'll need to install and run · Docker—this will work on the free plan. (Using a container provides a safe environment for developers to build, test, and use code...
Find elsewhere
🌐
MCP
mcp.so
MCP Servers
Official Firecrawl MCP Server - Adds powerful web scraping to Cursor, Claude and any other LLM clients.
🌐
Reddit
reddit.com › r/claudeai › setting up mcp servers in claude code: a tech ritual for the quietly desperate
r/ClaudeAI on Reddit: Setting Up MCP Servers in Claude Code: A Tech Ritual for the Quietly Desperate
March 19, 2025 -

After much trial and error I finally got functioning MCP servers in Claude Code albeit with slightly less will to live.

What are MCP Servers?

They're digital prosthetics that give Claude arms and legs to crawl around your computer with. Less poetically: extensions that let it do stuff beyond generating code you'll never actually use.

The Tools (★ = Requires API Key)

  • Sequential Thinking: Helps Claude solve problems step‑by‑step

  • Filesystem: Lets Claude rummage through the folders you allow

  • Playwright: Modern multi‑browser automation

  • Puppeteer: Chrome‑only (deprecated)

  • Web Fetching: Grabs content from websites

  • Browser Tools (Chrome DevTools Integration): Capture and analyze browser data through a Chrome extension

  • ★ Brave Search: Web searching capabilities

  • ★ Firecrawl: Advanced web scraping


🏃‍♂️ One‑Command Installation (The "I Don't Have Time For This" Version)

Copy everything in the block, paste into a macOS/Linux terminal, and hit ↵.

bash <<'EOF'
echo "🔧  Installing Claude MCP servers (latest versions)…"

# Sequential Thinking — Claude's chain‑of‑thought engine
claude mcp add sequential-thinking -s user \
  -- npx -y @modelcontextprotocol/server-sequential-thinking || true

# Filesystem — give Claude access to local folders
claude mcp add filesystem -s user \
  -- npx -y @modelcontextprotocol/server-filesystem \
     ~/Documents ~/Desktop ~/Downloads ~/Projects || true

# Playwright — modern multi‑browser automation
claude mcp add playwright -s user \
  -- npx -y @playwright/mcp-server || true

# Puppeteer — Chrome‑only (deprecated but still works)
claude mcp add puppeteer -s user \
  -- npx -y @modelcontextprotocol/server-puppeteer || true

# Fetch — simple HTTP GET/POST
claude mcp add fetch -s user \
  -- npx -y @kazuph/mcp-fetch || true

# Browser‑Tools — DevTools logs, screenshots, etc.
claude mcp add browser-tools -s user \
  -- npx -y @agentdeskai/browser-tools-mcp || true

echo "--------------------------------------------------"
echo "✅  MCP registration finished."
echo ""
echo "🔴  To enable Browser‑Tools, run this in a *second* terminal and leave it open:"
echo "    npx -y @agentdeskai/browser-tools-server"
echo "--------------------------------------------------"
claude mcp list
EOF

Save this as install-mcp-servers.sh, make it executable (chmod +x install-mcp-servers.sh), and run it while questioning your life choices.

Windows users: you'll need a .bat file instead. Good luck with that!

# Essential MCP Servers (Individual Installation)

Sequential Thinking

claude mcp add sequential-thinking -s user \
  -- npx -y @modelcontextprotocol/server-sequential-thinking

Lets Claude actually think through problems instead of making things up with confidence.

Filesystem Access (update paths as desired)

claude mcp add filesystem -s user \
  -- npx -y @modelcontextprotocol/server-filesystem \
     ~/Documents ~/Desktop ~/Downloads ~/Projects

Give Claude access to your files.

Playwright (multi‑browser automation)

claude mcp add playwright -s user \
  -- npx -y @playwright/mcp

Puppeteer (deprecated but still works)

claude mcp add puppeteer -s user \
  -- npx -y @modelcontextprotocol/server-puppeteer

Watch in existential dread as your browser operates itself.

Web Fetching

claude mcp add fetch -s user \
  -- npx -y @kazuph/mcp-fetch

Grabs content from websites.

Browser Tools

Gives Claude access to your browser's console logs, network traffic, and the ability to run performance/accessibility audits.

Step 1: Install the Chrome extension – download from the releases page and load it via Chrome’s extension manager. Step 2: Start the middleware server (keep this terminal open)

npx -y @agentdeskai/[email protected]

Step 3: Add the MCP server to Claude Code (in a separate terminal)

claude mcp add browser-tools -s user \
  -- npx -y @agentdeskai/[email protected]

Step 4: Open Chrome DevTools (F12) and find the BrowserTools tab.

★ Brave Search (Requires API Key)

# Replace YOUR_API_KEY_HERE with your actual Brave Search API key
claude mcp add brave-search -s user \
  -- env BRAVE_API_KEY=YOUR_API_KEY_HERE \
     npx -y @modelcontextprotocol/server-brave-search

Let Claude search the web and bring back results.

★ Firecrawl (Advanced Web Scraping — Requires API Key)

# Replace fc-YOUR_API_KEY with your actual Firecrawl API key
claude mcp add firecrawl -s user \
  -- env FIRECRAWL_API_KEY=fc-YOUR_API_KEY \
     npx -y firecrawl-mcp

For when you need to scrape websites with industrial‑grade efficiency and minimal respect for robots.txt.


# The -s user vs -s local Thing

  • -s user: Makes these tools available globally

  • -s local: Only works in your current directory

# Troubleshooting

  • Windows issues: prepend cmd /c before npx commands

  • Timeout errors: MCP_TIMEOUT=10000 claude

  • Connection problems: Type /mcp in Claude Code to see which servers are napping

  • Filesystem access: Double‑check your paths

That's it. Save yourself the four hours of my life I'll never get back.

PS – Yes, this was written mostly with the help of Claude.

EDIT: Apparently there were some stupid Reddit formatting issues. It converted the "@" to "u/", I'm such a noob, sorry! I updated the script to include playwright which is a pretty good alternative to puppeteer. Thanks all for pointing out my numerous flaws.

🌐
Scott Spence
scottspence.com › home › posts › configuring mcp tools in claude code - the better way
Configuring MCP Tools in Claude Code - The Better Way - Scott Spence
March 30, 2025 - ╭────────────────────────────────────────────╮ │ ✻ Welcome to Claude Code research preview! │ │ │ │ /help for help │ │ │ │ cwd: /home/scott/repos/scottspence.com │ ╰────────────────────────────────────────────╯ ✔ Found 2 MCP servers • /mcp
🌐
GitHub
github.com › steipete › claude-code-mcp
GitHub - steipete/claude-code-mcp: Claude Code as one-shot MCP server to have an agent in your agent.
Did you notice that Cursor sometimes struggles with complex, multi-step edits or operations? This server, with its powerful unified claude_code tool, aims to make Claude a more direct and capable agent for your coding tasks. This MCP server provides one tool that can be used by LLMs to interact with Claude Code.
Starred by 963 users
Forked by 109 users
Languages   JavaScript 74.7% | TypeScript 22.7% | Shell 2.5% | Batchfile 0.1%
🌐
Anthropic
anthropic.com › engineering › claude-code-best-practices
Claude Code: Best practices for agentic coding
In a checked-in .mcp.json file (available to anyone working in your codebase). For example, you can add Puppeteer and Sentry servers to your .mcp.json, so that every engineer working on your repo can use these out of the box. When working with MCP, it can also be helpful to launch Claude with the --mcp-debug flag to help identify configuration issues.
🌐
Model Context Protocol
modelcontextprotocol.io › docs › develop › build-server
Build an MCP server - Model Context Protocol
When you start your client application, the auto-configuration will create, automatically MCP clients from the claude_desktop_config.json.For more information, see the MCP Client Boot Starters reference documentation. The starter-webflux-server demonstrates how to create an MCP server using SSE transport. It showcases how to define and register MCP Tools, Resources, and Prompts, using the Spring Boot’s auto-configuration capabilities. Let’s get started with building our weather server! You can find the complete code for what we’ll be building here.
🌐
MCPcat
mcpcat.io › guides › adding-an-mcp-server-to-claude-code
Add MCP Servers to Claude Code - Setup & Configuration Guide | MCPcat
Popular servers include GitHub for PR management, Perplexity for research, Sequential Thinking for breaking down complex tasks, and Context7 for up-to-date documentation. After making changes, restart Claude Code and verify with claude mcp list.
🌐
Anthropic
anthropic.com › engineering › code-execution-with-mcp
Code execution with MCP: building more efficient AI agents
November 4, 2025 - Today developers routinely build agents with access to hundreds or thousands of tools across dozens of MCP servers. However, as the number of connected tools grows, loading all tool definitions upfront and passing intermediate results through the context window slows down agents and increases costs. In this blog we'll explore how code execution can enable agents to interact with MCP servers more efficiently, handling more tools while using fewer tokens.
🌐
Composio
composio.dev › blog › cluade-code-with-mcp-is-all-you-need
Claude code with MCP is all you need - Composio
August 25, 2025 - I started with a simple prompt to Claude Code. Nothing fancy: That's it. No detailed specs, no wireframes, no technical architecture documents. Just a simple request. Rube is a universal MCP server that you can use to call a list of toolkits for your AI Agents.
🌐
Anthropic
anthropic.com › news › claude-code-remote-mcp
Remote MCP support in Claude Code
June 18, 2025 - You can integrate Claude Code with any remote MCP server, and the growing ecosystem of servers means that new capabilities are constantly coming online.
🌐
Docker
docker.com › blog › add-mcp-servers-to-claude-code-with-mcp-toolkit
Add MCP Servers to Claude Code with MCP Toolkit | Docker
October 14, 2025 - Inside Claude Code, type /mcp to see available MCP servers. You should see the Docker MCP Gateway listed, which provides access to all enabled MCP servers. The /MCP_DOCKER tools indicate a successful connection.