🌐
Claude
code.claude.com › docs › en › mcp
Connect Claude Code to tools via MCP - Claude Code Docs
HTTP servers are the recommended option for connecting to remote MCP servers. This is the most widely supported transport for cloud-based services. ... # Basic syntax claude mcp add --transport http <name> <url> # Real example: Connect to Notion claude mcp add --transport http notion https://mcp.notion.com/mcp # Example with Bearer token claude mcp add --transport http secure-api https://api.example.com/mcp \ --header "Authorization: Bearer your-token"
🌐
Model Context Protocol
modelcontextprotocol.io › docs › develop › connect-local-servers
Connect to local MCP servers - Model Context Protocol
MCP servers are programs that run on your computer and provide specific capabilities to Claude Desktop through a standardized protocol. Each server exposes tools that Claude can use to perform actions, with your approval.
People also ask

Will Claude automatically recognize my MCP server after integration?
Yes, once integrated, Claude will automatically recognize and use your MCP server based on your prompts.
🌐
weavely.ai
weavely.ai › blog › claude-mcp
How to add MCP servers to Claude (free and paid)
Can I set up integrations in Claude for free?
Yes, you can manually configure integrations via a JSON file on Claude’s free tier. However, this is only available in the Claude desktop app.
🌐
weavely.ai
weavely.ai › blog › claude-mcp
How to add MCP servers to Claude (free and paid)
How easy is it to set up integrations on Claude’s paid tier?
Very easy, just go to Settings → Integrations, press "+ Add Custom Integration" and enter your MCP server's URL.
🌐
weavely.ai
weavely.ai › blog › claude-mcp
How to add MCP servers to Claude (free and paid)
🌐
Zapier
zapier.com › productivity › app tips
7 Claude MCP servers you can set up right now
June 17, 2025 - MCP servers facilitate the connection between AI tools like Claude and all the other apps you use. They make it possible to direct the AI to take actions—like adding new records to a database or CRM—without leaving the chat.
🌐
GitHub
github.com › modelcontextprotocol › servers
GitHub - modelcontextprotocol/servers: Model Context Protocol Servers
Claude Context - Bring your codebase as context to Claude Code · Cleanup Crew - Real-time human support service for non-technical founders using AI coding tools. When AI hits a wall, request instant human help directly from your IDE. ClickHouse - Query your ClickHouse database server. ClickSend - This is the official ClickSend MCP Server developed by ClickSend team.
Starred by 75.1K users
Forked by 9.1K users
Languages   TypeScript 65.3% | Python 20.1% | JavaScript 13.0% | Dockerfile 1.6%
🌐
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.

🌐
Anthropic
anthropic.com › news › model-context-protocol
Introducing the Model Context Protocol
We'll soon provide developer toolkits for deploying remote production MCP servers that can serve your entire Claude for Work organization.
Find elsewhere
🌐
Weavely
weavely.ai › blog › claude-mcp
How to add MCP servers to Claude (free and paid)
September 18, 2025 - Under your account settings you'll find an "Integrations" section. You can add an MCP to Claude by pressing the "+ Add Custom Integration" button. You'll need to give your integration a name and a URL (i.e. the URL on which the MCP server is hosted).
🌐
GENERECT Blog
generect.com › ai in sales
Ultimate Guide to Claude MCP Servers & Setup | 2025
2 weeks ago - MCP Clients are the AI apps (like Claude AI MCP) that need information or want to perform a task. MCP Servers are like friendly gatekeepers.
🌐
Visual Studio Code
code.visualstudio.com › docs › copilot › customization › mcp-servers
Use MCP servers in VS Code
November 3, 2021 - Learn how to configure and use Model Context Protocol (MCP) servers with GitHub Copilot in Visual Studio Code.
🌐
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
🌐
MCP
mcp.so
MCP Servers
Official Firecrawl MCP Server - Adds powerful web scraping to Cursor, Claude and any other LLM clients.
🌐
Claude MCP Community
claudemcp.com › en
Claude MCP Community
It's like v0 but in your Cursor/WindSurf/Cline. 21st dev Magic MCP server for working with your frontend like Magic ... Link your Supabase projects with AI tools like Cursor, Claude, and Windsurf to enhance development workflows.
🌐
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 - With more than 200 pre-built, containerized MCP servers, one-click deployment in Docker Desktop, and automatic credential handling, developers can connect Claude Code to trusted environments in minutes — not hours.
🌐
Composio
composio.dev › blog › cluade-code-with-mcp-is-all-you-need
Claude code with MCP is all you need - Composio
Then, MCPs (Model Context Protocols) came. Think of them as bridges that let Claude Code communicate directly with all your tools, without having to hop between apps. I happen to use Rube, a universal MCP server from Composio.