Skip to content

Agents And Tools Remote Mcp Servers

Updated 3 days ago

export const MCPServersTable = ({platform = "all"}) => { const generateClaudeCodeCommand = server => { if (server.customCommands && server.customCommands.claudeCode) { return server.customCommands.claudeCode; } if (server.urls.http) { return claude mcp add --transport http ${server.name.toLowerCase().replace(/[^a-z0-9]/g, '-')} ${server.urls.http}; } if (server.urls.sse) { return claude mcp add --transport sse ${server.name.toLowerCase().replace(/[^a-z0-9]/g, '-')} ${server.urls.sse}; } if (server.urls.stdio) { const envFlags = server.authentication && server.authentication.envVars ? server.authentication.envVars.map(v => --env ${v}=YOUR_${v.split('_').pop()}).join(' ') : ''; const baseCommand = claude mcp add --transport stdio ${server.name.toLowerCase().replace(/[^a-z0-9]/g, '-')}; return envFlags ? ${baseCommand} ${envFlags} -- ${server.urls.stdio} : ${baseCommand} -- ${server.urls.stdio}; } return null; }; const servers = [{ name: "Airtable", category: "Databases & Data Management", description: "Read/write records, manage bases and tables", documentation: "https://github.com/domdomegg/airtable-mcp-server", urls: { stdio: "npx -y airtable-mcp-server" }, authentication: { type: "api_key", envVars: ["AIRTABLE_API_KEY"] }, availability: { claudeCode: true, mcpConnector: false, claudeDesktop: true } }, { name: "Figma", category: "Design & Media", description: "Generate better code by bringing in full Figma context", documentation: "https://developers.figma.com", urls: { http: "https://mcp.figma.com/mcp" }, customCommands: { claudeCode: "claude mcp add --transport http figma-remote-mcp https://mcp.figma.com/mcp" }, availability: { claudeCode: true, mcpConnector: false, claudeDesktop: false }, notes: "Visit developers.figma.com for local server setup." }, { name: "Asana", category: "Project Management & Documentation", description: "Interact with your Asana workspace to keep projects on track", documentation: "https://developers.asana.com/docs/using-asanas-model-control-protocol-mcp-server", urls: { sse: "https://mcp.asana.com/sse" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false } }, { name: "Atlassian", category: "Project Management & Documentation", description: "Manage your Jira tickets and Confluence docs", documentation: "https://www.atlassian.com/platform/remote-mcp-server", urls: { sse: "https://mcp.atlassian.com/v1/sse" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false } }, { name: "ClickUp", category: "Project Management & Documentation", description: "Task management, project tracking", documentation: "https://github.com/hauptsacheNet/clickup-mcp", urls: { stdio: "npx -y @hauptsache.net/clickup-mcp" }, authentication: { type: "api_key", envVars: ["CLICKUP_API_KEY", "CLICKUP_TEAM_ID"] }, availability: { claudeCode: true, mcpConnector: false, claudeDesktop: true } }, { name: "Cloudflare", category: "Infrastructure & DevOps", description: "Build applications, analyze traffic, monitor performance, and manage security settings through Cloudflare", documentation: "https://developers.cloudflare.com/agents/model-context-protocol/mcp-servers-for-cloudflare/", urls: {}, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false }, notes: "Multiple services available. See documentation for specific server URLs. Claude Code can use the Cloudflare CLI if installed." }, { name: "Cloudinary", category: "Design & Media", description: "Upload, manage, transform, and analyze your media assets", documentation: "https://cloudinary.com/documentation/cloudinary_llm_mcp#mcp_servers", urls: {}, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false }, notes: "Multiple services available. See documentation for specific server URLs." }, { name: "Intercom", category: "Project Management & Documentation", description: "Access real-time customer conversations, tickets, and user data", documentation: "https://developers.intercom.com/docs/guides/mcp", urls: { http: "https://mcp.intercom.com/mcp" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false } }, { name: "invideo", category: "Design & Media", description: "Build video creation capabilities into your applications", documentation: "https://invideo.io/ai/mcp", urls: { sse: "https://mcp.invideo.io/sse" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false } }, { name: "Linear", category: "Project Management & Documentation", description: "Integrate with Linear's issue tracking and project management", documentation: "https://linear.app/docs/mcp", urls: { http: "https://mcp.linear.app/mcp" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false } }, { name: "Notion", category: "Project Management & Documentation", description: "Read docs, update pages, manage tasks", documentation: "https://developers.notion.com/docs/mcp", urls: { http: "https://mcp.notion.com/mcp" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: false, claudeDesktop: false } }, { name: "PayPal", category: "Payments & Commerce", description: "Integrate PayPal commerce capabilities, payment processing, transaction management", documentation: "https://www.paypal.ai/", urls: { http: "https://mcp.paypal.com/mcp" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false } }, { name: "Plaid", category: "Payments & Commerce", description: "Analyze, troubleshoot, and optimize Plaid integrations. Banking data, financial account linking", documentation: "https://plaid.com/blog/plaid-mcp-ai-assistant-claude/", urls: { sse: "https://api.dashboard.plaid.com/mcp/sse" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false } }, { name: "Sentry", category: "Development & Testing Tools", description: "Monitor errors, debug production issues", documentation: "https://docs.sentry.io/product/sentry-mcp/", urls: { http: "https://mcp.sentry.dev/mcp" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: false, claudeDesktop: false } }, { name: "Square", category: "Payments & Commerce", description: "Use an agent to build on Square APIs. Payments, inventory, orders, and more", documentation: "https://developer.squareup.com/docs/mcp", urls: { sse: "https://mcp.squareup.com/sse" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false } }, { name: "Socket", category: "Development & Testing Tools", description: "Security analysis for dependencies", documentation: "https://github.com/SocketDev/socket-mcp", urls: { http: "https://mcp.socket.dev/" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: false, claudeDesktop: false } }, { name: "Stripe", category: "Payments & Commerce", description: "Payment processing, subscription management, and financial transactions", documentation: "https://docs.stripe.com/mcp", urls: { http: "https://mcp.stripe.com" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false } }, { name: "Workato", category: "Automation & Integration", description: "Access any application, workflows or data via Workato, made accessible for AI", documentation: "https://docs.workato.com/mcp.html", urls: {}, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false }, notes: "MCP servers are programmatically generated" }, { name: "Zapier", category: "Automation & Integration", description: "Connect to nearly 8,000 apps through Zapier's automation platform", documentation: "https://help.zapier.com/hc/en-us/articles/36265392843917", urls: {}, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false }, notes: "Generate a user-specific URL at mcp.zapier.com" }, { name: "Box", category: "Project Management & Documentation", description: "Ask questions about your enterprise content, get insights from unstructured data, automate content workflows", documentation: "https://box.dev/guides/box-mcp/remote/", urls: { http: "https://mcp.box.com/" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false } }, { name: "Canva", category: "Design & Media", description: "Browse, summarize, autofill, and even generate new Canva designs directly from Claude", documentation: "https://www.canva.dev/docs/connect/canva-mcp-server-setup/", urls: { http: "https://mcp.canva.com/mcp" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false } }, { name: "Daloopa", category: "Databases & Data Management", description: "Supplies high quality fundamental financial data sourced from SEC Filings, investor presentations", documentation: "https://docs.daloopa.com/docs/daloopa-mcp", urls: { http: "https://mcp.daloopa.com/server/mcp" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false } }, { name: "Fireflies", category: "Project Management & Documentation", description: "Extract valuable insights from meeting transcripts and summaries", documentation: "https://guide.fireflies.ai/articles/8272956938-learn-about-the-fireflies-mcp-server-model-context-protocol", urls: { http: "https://api.fireflies.ai/mcp" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false } }, { name: "HubSpot", category: "Databases & Data Management", description: "Access and manage HubSpot CRM data by fetching contacts, companies, and deals, and creating and updating records", documentation: "https://developers.hubspot.com/mcp", urls: { http: "https://mcp.hubspot.com/anthropic" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false } }, { name: "Hugging Face", category: "Development & Testing Tools", description: "Provides access to Hugging Face Hub information and Gradio AI Applications", documentation: "https://huggingface.co/settings/mcp", urls: { http: "https://huggingface.co/mcp" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false } }, { name: "Jam", category: "Development & Testing Tools", description: "Debug faster with AI agents that can access Jam recordings like video, console logs, network requests, and errors", documentation: "https://jam.dev/docs/debug-a-jam/mcp", urls: { http: "https://mcp.jam.dev/mcp" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false } }, { name: "Monday", category: "Project Management & Documentation", description: "Manage monday.com boards by creating items, updating columns, assigning owners, setting timelines, adding CRM activities, and writing summaries", documentation: "https://developer.monday.com/apps/docs/mondaycom-mcp-integration", urls: { http: "https://mcp.monday.com/mcp" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false } }, { name: "Netlify", category: "Infrastructure & DevOps", description: "Create, deploy, and manage websites on Netlify. Control all aspects of your site from creating secrets to enforcing access controls to aggregating form submissions", documentation: "https://docs.netlify.com/build/build-with-ai/netlify-mcp-server/", urls: { http: "https://netlify-mcp.netlify.app/mcp" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false } }, { name: "Stytch", category: "Infrastructure & DevOps", description: "Configure and manage Stytch authentication services, redirect URLs, email templates, and workspace settings", documentation: "https://stytch.com/docs/workspace-management/stytch-mcp", urls: { http: "http://mcp.stytch.dev/mcp" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false } }, { name: "Vercel", category: "Infrastructure & DevOps", description: "Vercel's official MCP server, allowing you to search and navigate documentation, manage projects and deployments, and analyze deployment logs—all in one place", documentation: "https://vercel.com/docs/mcp/vercel-mcp", urls: { http: "https://mcp.vercel.com/" }, authentication: { type: "oauth" }, availability: { claudeCode: true, mcpConnector: true, claudeDesktop: false } }]; const filteredServers = servers.filter(server => { if (platform === "claudeCode") { return server.availability.claudeCode; } else if (platform === "mcpConnector") { return server.availability.mcpConnector; } else if (platform === "claudeDesktop") { return server.availability.claudeDesktop; } else if (platform === "all") { return true; } else { throw new Error(Unknown platform: ${platform}); } }); const serversByCategory = filteredServers.reduce((acc, server) => { if (!acc[server.category]) { acc[server.category] = []; } acc[server.category].push(server); return acc; }, {}); const categoryOrder = ["Development & Testing Tools", "Project Management & Documentation", "Databases & Data Management", "Payments & Commerce", "Design & Media", "Infrastructure & DevOps", "Automation & Integration"]; return <> <style jsx>{.cards-container { display: grid; gap: 1rem; margin-bottom: 2rem; } .server-card { border: 1px solid var(--border-color, #e5e7eb); border-radius: 6px; padding: 1rem; } .command-row { display: flex; align-items: center; gap: 0.25rem; } .command-row code { font-size: 0.75rem; overflow-x: auto; }}</style>

  {categoryOrder.map(category => {
if (!serversByCategory[category]) return null;
return <div key={category}>
        <h3>{category}</h3>
        <div className="cards-container">
          {serversByCategory[category].map(server => {
  const claudeCodeCommand = generateClaudeCodeCommand(server);
  const mcpUrl = server.urls.http || server.urls.sse;
  const commandToShow = platform === "claudeCode" ? claudeCodeCommand : mcpUrl;
  return <div key={server.name} className="server-card">
                <div>
                  {server.documentation ? <a href={server.documentation}>
                      <strong>{server.name}</strong>
                    </a> : <strong>{server.name}</strong>}
                </div>
                
                <p style={{
    margin: '0.5rem 0',
    fontSize: '0.9rem'
  }}>
                  {server.description}
                  {server.notes && <span style={{
    display: 'block',
    marginTop: '0.25rem',
    fontSize: '0.8rem',
    fontStyle: 'italic',
    opacity: 0.7
  }}>
                      {server.notes}
                    </span>}
                </p>
                
                {commandToShow && <>
                  <p style={{
    display: 'block',
    fontSize: '0.75rem',
    fontWeight: 500,
    minWidth: 'fit-content',
    marginTop: '0.5rem',
    marginBottom: 0
  }}>
                    {platform === "claudeCode" ? "Command" : "URL"}
                  </p>
                  <div className="command-row">
                    <code>
                      {commandToShow}
                    </code>
                  </div>
                </>}
              </div>;
})}
        </div>
      </div>;

})} </>; };

Several companies have deployed remote MCP servers that developers can connect to via the Anthropic MCP connector API. These servers expand the capabilities available to developers and end users by providing remote access to various services and tools through the MCP protocol.

Note: The remote MCP servers listed below are third-party services designed to work with the Claude API. These servers are not owned, operated, or endorsed by Anthropic. Users should only connect to remote MCP servers they trust and should review each server's security practices and terms before connecting.

Connecting to remote MCP servers

To connect to a remote MCP server:

  1. Review the documentation for the specific server you want to use.
  2. Ensure you have the necessary authentication credentials.
  3. Follow the server-specific connection instructions provided by each company.

For more information about using remote MCP servers with the Claude API, see the MCP connector docs.

Remote MCP server examples

MCP Servers for mcpConnector — see docs.anthropic.com for the full list.

Note: Looking for more? Find hundreds more MCP servers on GitHub.