Claude Mastery Series
You are reading Part 2 of our definitive guide to mastering Claude AI. Save this page as your ultimate technical reference.
Claude MCP Integrations: The Ultimate Server Configuration Guide (Part 2)
Extend Claude's capabilities with Model Context Protocol (MCP). Here are the terminal commands to connect Claude to GitHub, Notion, Supabase, Stripe, and 20+ more.
Welcome to Part 2 of the SEOGEO Claude Mastery Series. If you followed our Command & Shortcuts guide, you know how to operate Claude smoothly in the terminal. Now, it is time to give Claude superpowers.
The Model Context Protocol (MCP) allows you to extend Claude Code with external tools. By adding MCP servers, you grant Claude the ability to automate browsers, read from live databases, manage Jira tickets, and push to GitHub repositoriesβturning an AI chatbot into a fully autonomous junior developer.
π 1. Core MCP Management Commands
Before installing specific integrations, you need to understand the core syntax for managing MCP servers within the Claude environment.
Add Local MCP Server (stdio):
claude mcp add <name> <command> [args...]
Add Server-Sent Events (SSE) MCP Server:
claude mcp add --transport sse <name> <url>
Add HTTP Transport MCP Server:
claude mcp add --transport http <name> <url>
List Installed Servers:
claude mcp list
Remove a Server:
claude mcp remove <name>
π¦ 2. Popular MCP Integrations Reference
Below is the definitive list of officially supported MCP server integrations. Click "Copy" to instantly grab the connection string for your terminal. Remember to replace placeholder text like YOUR_KEY with your actual API credentials where required.
β Asana
Interact with your Asana workspace and tasks.
claude mcp add --transport sse asana https://mcp.asana.com/sse
β Atlassian
Manage Jira tickets and Confluence docs natively.
claude mcp add --transport sse atlassian https://mcp.atlassian.com/v1/sse
β Airtable
Read/write records, manage bases and tables.
claude mcp add --transport stdio airtable --env AIRTABLE_API_KEY=YOUR_KEY -- npx -y airtable-mcp-server
β Box
Access enterprise content and automate workflows.
claude mcp add --transport http box https://mcp.box.com/
β Canva
Browse, summarize, autofill and generate Canva designs.
claude mcp add --transport http canva https://mcp.canva.com/mcp
β ClickUp
Task management and project tracking.
claude mcp add --transport stdio clickup --env CLICKUP_API_KEY=YOUR_KEY --env CLICKUP_TEAM_ID=YOUR_TEAM -- npx -y @hauptsache.net/clickup-mcp
β Cloudflare
Build apps, analyze traffic, manage security.
claude mcp add --transport http cloudflare https://mcp.cloudflare.com/mcp
β Cloudinary
Upload, manage, and transform media assets.
claude mcp add --transport http cloudinary https://mcp.cloudinary.com/mcp
β Daloopa
High-quality fundamental financial data.
claude mcp add --transport http daloopa https://mcp.daloopa.com/server/mcp
β Figma
Generate better code with full Figma context.
claude mcp add --transport http figma https://mcp.figma.com/mcp
β Fireflies
Extract insights from meeting transcripts.
claude mcp add --transport http fireflies https://api.fireflies.ai/mcp
β GitHub
Manage repositories, PRs, and issues directly.
claude mcp add --transport http github https://api.githubcopilot.com/mcp/
β HubSpot
Access and manage HubSpot CRM data.
claude mcp add --transport http hubspot https://mcp.hubspot.com/anthropic
β Hugging Face
Access Hugging Face Hub and Gradio apps.
claude mcp add --transport http huggingface https://huggingface.co/mcp
β Intercom
Access customer conversations and tickets.
claude mcp add --transport http intercom https://mcp.intercom.com/mcp
β invideo
Build video creation capabilities.
claude mcp add --transport sse invideo https://mcp.invideo.io/sse
β Jam
Debug with AI agents accessing Jam recordings.
claude mcp add --transport http jam https://mcp.jam.dev/mcp
β Linear
Issue tracking and project management.
claude mcp add --transport http linear https://mcp.linear.app/mcp
β Monday
Manage monday.com boards and items.
claude mcp add --transport http monday https://mcp.monday.com/mcp
β Netlify
Create, deploy, and manage websites.
claude mcp add --transport http netlify https://netlify-mcp.netlify.app/mcp
β Notion
Read docs, update pages, manage tasks.
claude mcp add --transport http notion https://mcp.notion.com/mcp
β PayPal
Payment processing and transaction management.
claude mcp add --transport http paypal https://mcp.paypal.com/mcp
β Plaid
Banking data and financial account linking.
claude mcp add --transport sse plaid https://api.dashboard.plaid.com/mcp/sse
β Playwright
Advanced browser automation via stdio.
claude mcp add --transport stdio playwright -- npx @playwright/mcp@latest
β Puppeteer
Headless Chrome browser automation.
claude mcp add --transport stdio puppeteer -- npx -y @modelcontextprotocol/server-puppeteer
β Sentry
Monitor errors, debug production issues.
claude mcp add --transport http sentry https://mcp.sentry.dev/mcp
β Socket
Security analysis for dependencies.
claude mcp add --transport http socket https://mcp.socket.dev/
β Square
Payments, inventory, orders, and more.
claude mcp add --transport sse square https://mcp.squareup.com/sse
β Stripe
Payment processing and subscriptions.
claude mcp add --transport http stripe https://mcp.stripe.com
β Stytch
Configure and manage authentication services.
claude mcp add --transport http stytch http://mcp.stytch.dev/mcp
β Supabase
Postgres Database operations and edge functions.
claude mcp add --transport stdio supabase --env SUPABASE_ACCESS_TOKEN=YOUR_TOKEN -- npx -y @supabase/mcp-server-supabase@latest
β Vercel
Manage projects, deployments, and access logs.
claude mcp add --transport http vercel https://mcp.vercel.com/
β Workato
Access enterprise applications, workflows, and data.
claude mcp add --transport http workato https://mcp.workato.com/mcp
β Zapier
Connect Claude to 8,000+ business applications.
claude mcp add --transport http zapier https://mcp.zapier.com/mcp
Conclusion & What's Next in Part 3
By integrating these MCP servers, you are no longer just chatting with an LLM. You are actively granting Claude read and write access to your cloud infrastructure, project management boards, and code repositories. This drastically reduces context switching and accelerates your development velocity.
In Part 3 of the Claude Mastery Series, we will move to Agent Skills, Modular Capabilities, and Plugins - Extend Claude Code.
Frequently Asked Questions
The Model Context Protocol (MCP) allows developers to extend Claude Code with external tools and integrations. MCP servers provide Claude with additional capabilities like browser automation, database access, and live API integrations.
To view all currently installed and active MCP servers in your Claude environment, simply run the command: claude mcp list
These are connection protocols. stdio is typically used for local script execution (like using npx to run a local server). HTTP and SSE (Server-Sent Events) are used to connect Claude to remote, cloud-hosted MCP servers managed by third-party platforms.
When adding an MCP server via stdio that requires authentication, you can pass API keys securely using the --env flag. For example: claude mcp add --transport stdio [app] --env API_KEY=YOUR_KEY