S Hub
FreeNot checkedThe ultimate curated list of Model Context Protocol (MCP) servers
About
The ultimate curated list of Model Context Protocol (MCP) servers
README
🔌 MCP Servers Hub
50+ Verified MCP Servers with Install Guides & Config Snippets
Connect your AI agents to databases, APIs, tools & services — in seconds
🚀 Deploy on AiAgentBase • 🤝 Contribute • ⚡ Quick Start • 📋 MCP Spec
🚀 Deploy MCP Servers in 1-Click! Visit AiAgentBase.app — The Community-Driven AI Skills & Tools Marketplace
📖 What is MCP?
Model Context Protocol (MCP) is an open standard by Anthropic that enables AI agents to connect with external tools, databases, and APIs. Think of MCP servers as the hands and feet of your AI — while Agent Skills are the brain.
Skills (SKILL.md) = AI's BRAIN (knowledge, rules, expertise)
MCP Servers = AI's HANDS (actions, tools, integrations)
⚡ Quick Start
Add any MCP server to your AI tool by editing the config file:
Claude Desktop: claude_desktop_config.json
Cursor: .cursor/mcp.json
Windsurf: MCP settings panel
{
"mcpServers": {
"server-name": {
"command": "npx",
"args": ["-y", "@package/mcp-server"],
"env": {
"API_KEY": "your-key-here"
}
}
}
}
📂 Catalog — 50+ Verified MCP Servers
🗄️ Databases (10 servers)
1. PostgreSQL MCP — by Anthropic (Official)
Query & manage PostgreSQL databases with schema inspection
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"postgres": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-postgres", "postgresql://user:pass@localhost:5432/mydb"]
}
}
}
2. SQLite MCP — by Anthropic (Official)
Local SQLite database operations & business intelligence
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"sqlite": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sqlite", "/path/to/database.db"]
}
}
}
3. MongoDB MCP — by MongoDB, Inc.
MongoDB Atlas & local database queries, collections, schema inspection
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"mongodb": {
"command": "npx",
"args": ["-y", "mongodb-mcp-server"],
"env": {
"MDB_MCP_CONNECTION_STRING": "mongodb+srv://user:[email protected]/mydb"
}
}
}
}
4. MySQL MCP — by designcomputer
MySQL database integration with secure query execution
🔗 GitHub · 🐍 Python
{
"mcpServers": {
"mysql": {
"command": "uvx",
"args": ["mysql-mcp-server"],
"env": {
"MYSQL_HOST": "localhost",
"MYSQL_PORT": "3306",
"MYSQL_USER": "root",
"MYSQL_PASSWORD": "your-password",
"MYSQL_DATABASE": "mydb"
}
}
}
}
5. Supabase MCP — by Supabase, Inc.
Full Supabase platform — auth, database, storage, edge functions, migrations
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"supabase": {
"command": "npx",
"args": ["-y", "@supabase/mcp-server"],
"env": {
"SUPABASE_ACCESS_TOKEN": "your-access-token"
}
}
}
}
6. Redis MCP — by Redis, Inc.
Redis cache, data store, vector search & session management
🔗 GitHub · 🐍 Python · 🎖️ Official
{
"mcpServers": {
"redis": {
"command": "uvx",
"args": ["mcp-redis"],
"env": {
"REDIS_URL": "redis://localhost:6379"
}
}
}
}
7. Neon MCP — by Neon, Inc.
Serverless Postgres with database branching & management
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"neon": {
"command": "npx",
"args": ["-y", "@neondatabase/mcp-server-neon"],
"env": {
"NEON_API_KEY": "your-neon-api-key"
}
}
}
}
8. ClickHouse MCP — by ClickHouse, Inc.
ClickHouse analytical database — schema inspection & queries
🔗 GitHub · 🐍 Python · 🎖️ Official
{
"mcpServers": {
"clickhouse": {
"command": "uvx",
"args": ["mcp-clickhouse"],
"env": {
"CLICKHOUSE_HOST": "localhost",
"CLICKHOUSE_PORT": "8123",
"CLICKHOUSE_USER": "default",
"CLICKHOUSE_PASSWORD": "your-password"
}
}
}
}
9. Turso MCP — by Turso (ChiselStrike)
Edge SQLite database powered by libSQL
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"turso": {
"command": "npx",
"args": ["-y", "@turso/mcp-server"],
"env": {
"TURSO_AUTH_TOKEN": "your-token",
"TURSO_URL": "libsql://your-db.turso.io"
}
}
}
}
10. CockroachDB MCP — by amineelkouhen
Distributed SQL database — management, monitoring & querying
🔗 GitHub · 🐍 Python
{
"mcpServers": {
"cockroachdb": {
"command": "uvx",
"args": ["mcp-cockroachdb"],
"env": {
"DATABASE_URL": "postgresql://user:pass@localhost:26257/defaultdb"
}
}
}
}
🌐 Web & Browser Automation (8 servers)
11. Puppeteer MCP — by Anthropic (Official)
Browser automation, web scraping & screenshot capture
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"puppeteer": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-puppeteer"]
}
}
}
12. Playwright MCP — by Microsoft
Cross-browser automation using accessibility tree
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": ["-y", "@anthropic/mcp-server-playwright"]
}
}
}
13. Brave Search MCP — by Anthropic (Official)
Web & local search via Brave Search API
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"brave-search": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
"env": {
"BRAVE_API_KEY": "your-brave-api-key"
}
}
}
}
14. Firecrawl MCP — by Mendable/Firecrawl
Advanced web scraping, crawling & content extraction
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"firecrawl": {
"command": "npx",
"args": ["-y", "firecrawl-mcp"],
"env": {
"FIRECRAWL_API_KEY": "your-firecrawl-key"
}
}
}
}
15. Browserbase MCP — by Browserbase
Cloud browser infrastructure — headless automation at scale
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"browserbase": {
"command": "npx",
"args": ["-y", "@browserbasehq/mcp-server"],
"env": {
"BROWSERBASE_API_KEY": "your-api-key",
"BROWSERBASE_PROJECT_ID": "your-project-id"
}
}
}
}
16. Fetch MCP — by Anthropic (Official)
Fetch web content and convert to markdown
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"fetch": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-fetch"]
}
}
}
17. EXA MCP — by EXA AI
AI-native web search with semantic understanding
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"exa": {
"command": "npx",
"args": ["-y", "exa-mcp-server"],
"env": {
"EXA_API_KEY": "your-exa-key"
}
}
}
}
18. Tavily MCP — by Tavily
AI search engine optimized for LLMs and RAG
🔗 GitHub · 🐍 Python · 🎖️ Official
{
"mcpServers": {
"tavily": {
"command": "uvx",
"args": ["tavily-mcp"],
"env": {
"TAVILY_API_KEY": "your-tavily-key"
}
}
}
}
🛠️ Developer Tools (10 servers)
19. GitHub MCP — by GitHub / Microsoft
Repos, issues, PRs, actions, code search & management
🔗 GitHub · 🏎️ Go · 🎖️ Official
{
"mcpServers": {
"github": {
"command": "npx",
"args": ["-y", "@anthropic/github-mcp-server"],
"env": {
"GITHUB_TOKEN": "your-github-pat"
}
}
}
}
20. GitLab MCP — by GitLab
Projects, merge requests, CI/CD pipelines & issues
🔗 GitLab · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"gitlab": {
"command": "npx",
"args": ["-y", "@anthropic/gitlab-mcp-server"],
"env": {
"GITLAB_TOKEN": "your-gitlab-token",
"GITLAB_URL": "https://gitlab.com"
}
}
}
}
21. Docker MCP — by Docker, Inc.
Container management, image operations & orchestration
🔗 GitHub · 🏎️ Go · 🎖️ Official
{
"mcpServers": {
"docker": {
"command": "docker",
"args": ["mcp", "serve"]
}
}
}
22. Sentry MCP — by Sentry
Error tracking, performance monitoring & issue management
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"sentry": {
"command": "npx",
"args": ["-y", "@sentry/mcp-server"],
"env": {
"SENTRY_AUTH_TOKEN": "your-sentry-token"
}
}
}
}
23. Linear MCP — by Linear
Issue tracking, project management & team workflows
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"linear": {
"command": "npx",
"args": ["-y", "@anthropic/linear-mcp-server"],
"env": {
"LINEAR_API_KEY": "your-linear-key"
}
}
}
}
24. Figma MCP — by Figma Context
Access Figma design files, components & styles
🔗 GitHub · 📇 TypeScript
{
"mcpServers": {
"figma": {
"command": "npx",
"args": ["-y", "figma-context-mcp"],
"env": {
"FIGMA_API_KEY": "your-figma-key"
}
}
}
}
25. Postman MCP — by Postman
Connect AI agents directly to your APIs on Postman
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"postman": {
"command": "npx",
"args": ["-y", "@postmanlabs/postman-mcp-server"],
"env": {
"POSTMAN_API_KEY": "your-postman-key"
}
}
}
}
26. Cloudflare MCP — by Cloudflare
Deploy & configure Workers, KV, R2, D1 on Cloudflare developer platform
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"cloudflare": {
"command": "npx",
"args": ["-y", "@cloudflare/mcp-server-cloudflare"],
"env": {
"CLOUDFLARE_API_TOKEN": "your-cf-token",
"CLOUDFLARE_ACCOUNT_ID": "your-account-id"
}
}
}
}
27. Grafana MCP — by Grafana Labs
Search dashboards, investigate incidents & query datasources
🔗 GitHub · 🏎️ Go · 🎖️ Official
{
"mcpServers": {
"grafana": {
"command": "npx",
"args": ["-y", "@grafana/mcp-grafana"],
"env": {
"GRAFANA_URL": "http://localhost:3000",
"GRAFANA_API_KEY": "your-grafana-key"
}
}
}
}
28. CircleCI MCP — by CircleCI
Fix build failures, manage pipelines & CI/CD
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"circleci": {
"command": "npx",
"args": ["-y", "@anthropic/circleci-mcp-server"],
"env": {
"CIRCLECI_TOKEN": "your-circleci-token"
}
}
}
}
📈 Business & Productivity (8 servers)
29. Slack MCP — by Anthropic (Official)
Messages, channels, users & workspace management
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"slack": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-slack"],
"env": {
"SLACK_BOT_TOKEN": "xoxb-your-bot-token",
"SLACK_TEAM_ID": "T0123456789"
}
}
}
}
30. Notion MCP — by Notion
Pages, databases, blocks & workspace management
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"notion": {
"command": "npx",
"args": ["-y", "@notionhq/notion-mcp-server"],
"env": {
"NOTION_API_KEY": "ntn_your-notion-key",
"OPENAPI_MCP_HEADERS": "{\"Authorization\": \"Bearer ntn_your-notion-key\", \"Notion-Version\": \"2022-06-28\"}"
}
}
}
}
31. Google Drive MCP — by Anthropic (Official)
File access, search & management in Google Drive
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"gdrive": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-gdrive"],
"env": {
"GDRIVE_CREDENTIALS": "/path/to/credentials.json"
}
}
}
}
32. Google Maps MCP — by Anthropic (Official)
Geocoding, directions, places & distance matrix API
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"google-maps": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-google-maps"],
"env": {
"GOOGLE_MAPS_API_KEY": "your-google-maps-key"
}
}
}
}
33. Todoist MCP — by abhiz123
Task management, projects & productivity tracking
🔗 GitHub · 📇 TypeScript
{
"mcpServers": {
"todoist": {
"command": "npx",
"args": ["-y", "@abhiz123/todoist-mcp-server"],
"env": {
"TODOIST_API_TOKEN": "your-todoist-token"
}
}
}
}
34. Obsidian MCP — by MarkusPfworlds
Access Obsidian vault, notes, search & knowledge graph
🔗 GitHub · 📇 TypeScript
{
"mcpServers": {
"obsidian": {
"command": "npx",
"args": ["-y", "obsidian-mcp"],
"env": {
"OBSIDIAN_VAULT_PATH": "/path/to/your/vault"
}
}
}
}
35. Airtable MCP — by felores
Airtable bases, tables, records & field management
🔗 GitHub · 📇 TypeScript
{
"mcpServers": {
"airtable": {
"command": "npx",
"args": ["-y", "airtable-mcp"],
"env": {
"AIRTABLE_API_KEY": "your-airtable-key"
}
}
}
}
36. Webflow MCP — by Webflow
Edit sites, CMS data, and design systems with AI
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"webflow": {
"command": "npx",
"args": ["-y", "@webflow/mcp-server"],
"env": {
"WEBFLOW_API_TOKEN": "your-webflow-token"
}
}
}
}
💰 Finance & Payments (4 servers)
37. Stripe MCP — by Stripe, Inc.
Payment processing, subscriptions, invoices & customers
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"stripe": {
"command": "npx",
"args": ["-y", "@stripe/agent-toolkit", "mcp"],
"env": {
"STRIPE_SECRET_KEY": "sk_your-stripe-key"
}
}
}
}
38. Dodo Payments MCP — by Dodo Payments
Global payments, subscriptions, licenses & usage billing
🔗 npm · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"dodo-payments": {
"command": "npx",
"args": ["-y", "@dodopayments/mcp-server"],
"env": {
"DODO_PAYMENTS_API_KEY": "your-dodo-key"
}
}
}
}
39. Plaid MCP — by ruchernchong
Banking connections, transactions & financial data
🔗 GitHub · 📇 TypeScript
{
"mcpServers": {
"plaid": {
"command": "npx",
"args": ["-y", "plaid-mcp-server"],
"env": {
"PLAID_CLIENT_ID": "your-client-id",
"PLAID_SECRET": "your-secret"
}
}
}
}
40. PayPal MCP — by PayPal
PayPal payments, invoices, subscriptions & transactions
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"paypal": {
"command": "npx",
"args": ["-y", "@paypal/agent-toolkit", "mcp"],
"env": {
"PAYPAL_CLIENT_ID": "your-client-id",
"PAYPAL_SECRET": "your-secret"
}
}
}
}
📁 File Systems & Storage (4 servers)
41. Filesystem MCP — by Anthropic (Official)
Read/write local files with configurable access controls
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/allowed/directory"]
}
}
}
42. AWS MCP — by Amazon Web Services
S3, Bedrock, CDK, CloudWatch, Cost Analysis & more
🔗 GitHub · 🐍 Python · 🎖️ Official
{
"mcpServers": {
"aws": {
"command": "uvx",
"args": ["awslabs.core-mcp-server"],
"env": {
"AWS_ACCESS_KEY_ID": "your-key",
"AWS_SECRET_ACCESS_KEY": "your-secret",
"AWS_REGION": "us-east-1"
}
}
}
}
43. Memory MCP — by Anthropic (Official)
Persistent knowledge graph for long-term AI memory
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"memory": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-memory"]
}
}
}
44. Prisma MCP — by Prisma
Spin up databases, run migrations & queries with Prisma Postgres
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"prisma": {
"command": "npx",
"args": ["-y", "@prisma/mcp-server"],
"env": {
"PRISMA_POSTGRES_URL": "your-prisma-postgres-url"
}
}
}
}
🧠 AI & ML (3 servers)
45. Sequential Thinking MCP — by Anthropic (Official)
Step-by-step reasoning engine for complex problem solving
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"sequentialthinking": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sequentialthinking"]
}
}
}
46. Everart MCP — by Anthropic (Official)
AI image generation & creative tools
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"everart": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everart"],
"env": {
"EVERART_API_KEY": "your-everart-key"
}
}
}
}
47. Neo4j MCP — by Neo4j
Graph database — schema, Cypher queries & knowledge graphs
🔗 GitHub · 🐍 Python · 🎖️ Official
{
"mcpServers": {
"neo4j": {
"command": "uvx",
"args": ["mcp-neo4j"],
"env": {
"NEO4J_URI": "bolt://localhost:7687",
"NEO4J_USER": "neo4j",
"NEO4J_PASSWORD": "your-password"
}
}
}
}
💬 Communication (3 servers)
48. Twilio MCP — by Twilio Labs
SMS, voice calls, WhatsApp & all Twilio Public APIs
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"twilio": {
"command": "npx",
"args": ["-y", "@twilio-labs/mcp"],
"env": {
"TWILIO_ACCOUNT_SID": "your-account-sid",
"TWILIO_AUTH_TOKEN": "your-auth-token"
}
}
}
}
49. ElevenLabs MCP — by ElevenLabs
Text-to-speech, voice cloning & audio AI
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"elevenlabs": {
"command": "npx",
"args": ["-y", "@elevenlabs/mcp-server"],
"env": {
"ELEVENLABS_API_KEY": "your-elevenlabs-key"
}
}
}
}
50. Zapier MCP — by Zapier
Connect AI agents to 8,000+ apps instantly
🔗 Website · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"zapier": {
"command": "npx",
"args": ["-y", "@zapier/mcp-server"],
"env": {
"ZAPIER_API_KEY": "your-zapier-key"
}
}
}
}
☁️ Cloud & Infrastructure (5 servers)
51. Google Cloud Run MCP — by Google Cloud
Deploy & manage services on Google Cloud Run
🔗 GitHub · 🐍 Python · 🎖️ Official
{
"mcpServers": {
"cloud-run": {
"command": "uvx",
"args": ["cloud-run-mcp"],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "/path/to/credentials.json",
"GOOGLE_CLOUD_PROJECT": "your-project-id"
}
}
}
}
52. Azure DevOps MCP — by Microsoft
Manage Azure DevOps projects, repos, pipelines & work items
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"azure-devops": {
"command": "npx",
"args": ["-y", "@microsoft/azure-devops-mcp"],
"env": {
"AZURE_DEVOPS_ORG": "your-org",
"AZURE_DEVOPS_PAT": "your-personal-access-token"
}
}
}
}
53. Render MCP — by Render
Spin up services, query databases & access metrics/logs
🔗 Website · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"render": {
"command": "npx",
"args": ["-y", "@render/mcp-server"],
"env": {
"RENDER_API_KEY": "your-render-key"
}
}
}
}
54. Hostinger MCP — by Hostinger
Manage hosting services via Hostinger API
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"hostinger": {
"command": "npx",
"args": ["-y", "@hostinger/mcp-server"],
"env": {
"HOSTINGER_API_TOKEN": "your-hostinger-token"
}
}
}
}
55. E2B MCP — by E2B
Run code in secure cloud sandboxes
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"e2b": {
"command": "npx",
"args": ["-y", "@e2b/mcp-server"],
"env": {
"E2B_API_KEY": "your-e2b-key"
}
}
}
}
📊 Monitoring & Observability (5 servers)
56. Axiom MCP — by Axiom
Query & analyze logs, traces and event data in natural language
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"axiom": {
"command": "npx",
"args": ["-y", "@axiomhq/mcp-server"],
"env": {
"AXIOM_TOKEN": "your-axiom-token",
"AXIOM_ORG_ID": "your-org-id"
}
}
}
}
57. Logfire MCP — by Pydantic
Access OpenTelemetry traces & metrics through Logfire
🔗 GitHub · 🐍 Python · 🎖️ Official
{
"mcpServers": {
"logfire": {
"command": "uvx",
"args": ["logfire-mcp"],
"env": {
"LOGFIRE_TOKEN": "your-logfire-token"
}
}
}
}
58. SonarQube MCP — by SonarSource
Code quality analysis, vulnerability detection & security scanning
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"sonarqube": {
"command": "npx",
"args": ["-y", "@sonarsource/sonarqube-mcp-server"],
"env": {
"SONARQUBE_URL": "http://localhost:9000",
"SONARQUBE_TOKEN": "your-sonar-token"
}
}
}
}
59. Semgrep MCP — by Semgrep
Secure code with static analysis & vulnerability scanning
🔗 GitHub · 🐍 Python · 🎖️ Official
{
"mcpServers": {
"semgrep": {
"command": "uvx",
"args": ["semgrep-mcp"],
"env": {
"SEMGREP_APP_TOKEN": "your-semgrep-token"
}
}
}
}
60. Langfuse MCP — by Langfuse
Prompt management, versioning, evaluation & LLM observability
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"langfuse": {
"command": "npx",
"args": ["-y", "@langfuse/mcp-server"],
"env": {
"LANGFUSE_PUBLIC_KEY": "your-public-key",
"LANGFUSE_SECRET_KEY": "your-secret-key",
"LANGFUSE_HOST": "https://cloud.langfuse.com"
}
}
}
}
🛒 E-Commerce & Marketplace (5 servers)
61. Square MCP — by Square
Payments, catalog, inventory & point-of-sale management
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"square": {
"command": "npx",
"args": ["-y", "@square/mcp-server"],
"env": {
"SQUARE_ACCESS_TOKEN": "your-square-token"
}
}
}
}
62. Xero MCP — by Xero
Accounting, invoicing & financial data management
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"xero": {
"command": "npx",
"args": ["-y", "@xeroapi/mcp-server"],
"env": {
"XERO_CLIENT_ID": "your-client-id",
"XERO_CLIENT_SECRET": "your-client-secret"
}
}
}
}
63. Apify MCP — by Apify
3,000+ pre-built cloud tools for web scraping & data extraction
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"apify": {
"command": "npx",
"args": ["-y", "@apify/actors-mcp-server"],
"env": {
"APIFY_TOKEN": "your-apify-token"
}
}
}
}
64. Bright Data MCP — by Bright Data
Web data access — scraping, proxies & data collection at scale
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"brightdata": {
"command": "npx",
"args": ["-y", "@brightdata/mcp"],
"env": {
"BRIGHTDATA_API_KEY": "your-brightdata-key"
}
}
}
}
65. Mapbox MCP — by Mapbox
Geocoding, POI search, directions, isochrones & geospatial intelligence
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"mapbox": {
"command": "npx",
"args": ["-y", "@mapbox/mcp-server"],
"env": {
"MAPBOX_ACCESS_TOKEN": "your-mapbox-token"
}
}
}
}
🔄 Automation & Integration (5 servers)
66. Make MCP — by Make (Integromat)
Turn Make scenarios into callable tools for AI assistants
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"make": {
"command": "npx",
"args": ["-y", "@make/mcp-server"],
"env": {
"MAKE_API_TOKEN": "your-make-token"
}
}
}
}
67. Meilisearch MCP — by Meilisearch
Full-text & semantic search engine API
🔗 GitHub · 🐍 Python · 🎖️ Official
{
"mcpServers": {
"meilisearch": {
"command": "uvx",
"args": ["meilisearch-mcp"],
"env": {
"MEILI_HTTP_ADDR": "http://localhost:7700",
"MEILI_MASTER_KEY": "your-master-key"
}
}
}
}
68. Qdrant MCP — by Qdrant
Vector search engine — semantic memory & similarity search
🔗 GitHub · 🐍 Python · 🎖️ Official
{
"mcpServers": {
"qdrant": {
"command": "uvx",
"args": ["mcp-server-qdrant"],
"env": {
"QDRANT_URL": "http://localhost:6333",
"QDRANT_API_KEY": "your-qdrant-key"
}
}
}
}
69. Kagi Search MCP — by Kagi
Premium web search via Kagi Search API
🔗 GitHub · 🐍 Python · 🎖️ Official
{
"mcpServers": {
"kagi": {
"command": "uvx",
"args": ["kagimcp"],
"env": {
"KAGI_API_KEY": "your-kagi-key"
}
}
}
}
70. JetBrains MCP — by JetBrains
Work on code with IntelliJ IDEA, WebStorm, PyCharm & all JetBrains IDEs
🔗 GitHub · 📇 TypeScript · 🎖️ Official
{
"mcpServers": {
"jetbrains": {
"command": "npx",
"args": ["-y", "@anthropic/jetbrains-mcp-server"]
}
}
}
📊 Stats
| Metric | Count |
|---|---|
| Total MCP Servers | 70+ |
| Categories | 14 |
| With Install Guides | ✅ All 70 |
| Official (🎖️) | 48 |
| Protocol | Model Context Protocol |
🤝 How to Contribute
Know a great MCP server? Add it to the list!
Quick Steps
- ⭐ Star this repo
- 🍴 Fork this repository
- ✏️ Add your MCP server with install guide
- 📤 Submit a Pull Request
👉 Full guidelines: CONTRIBUTING.md
Entry Format
#### Server Name — *by Company/Author*
> Short description
>
> 🔗 [GitHub](link) · 📇 TypeScript · 🎖️ Official
\```json
{
"mcpServers": {
"server-name": {
"command": "npx",
"args": ["-y", "@package/name"],
"env": {
"API_KEY": "your-key"
}
}
}
}
\```
Requirements
- ✅ Must implement MCP (Model Context Protocol)
- ✅ Must have a public repository
- ✅ Must include install config snippet
- ✅ Must credit the original author/company
- ✅ Actively maintained (commits within 6 months)
🏷️ Legend
| Badge | Meaning |
|---|---|
| 🎖️ | Official implementation by the company |
| 📇 | TypeScript/JavaScript |
| 🐍 | Python |
| 🏎️ | Go |
| 🦀 | Rust |
🔗 Related Projects
| Project | Description |
|---|---|
| modelcontextprotocol.io | Official MCP specification by Anthropic |
| modelcontextprotocol/servers | Official reference MCP servers |
| claude-skills | Agent Skills for Claude |
| awesome-ai-skills | Agent Skills for all AI tools |
| agentskills.io | Agent Skills open standard |
📄 License
CC0 1.0 Universal — Free to use, modify, and share.
⚖️ Disclaimer
This is an independent, community-maintained project.
- This repository is NOT affiliated with, endorsed by, sponsored by, or associated with any of the companies, organizations, or products referenced herein, including but not limited to:
- Anthropic (Model Context Protocol, Claude)
- MongoDB, ClickHouse, Turso, CockroachDB, Neo4j, Prisma (Databases)
- Supabase, Neon, Redis, Meilisearch, Qdrant (Database & Search platforms)
- Stripe, Dodo Payments, PayPal, Square, Xero (Payments & Finance)
- GitHub / Microsoft, GitLab, CircleCI, JetBrains (Developer platforms)
- Docker, Cloudflare, Grafana, Render, Hostinger, E2B (Infrastructure)
- Google / Alphabet (Drive, Maps, Cloud Run)
- Slack / Salesforce, Notion, Webflow (Productivity)
- Sentry, Linear, Figma, Postman, SonarQube, Semgrep (Developer tools)
- Brave, EXA, Tavily, Kagi, Apify, Bright Data (Search & Data)
- Twilio, ElevenLabs, Zapier, Make (Communication & Automation)
- Amazon / AWS, Microsoft Azure (Cloud services)
- Axiom, Langfuse, Logfire, Pydantic (Observability)
- Mapbox (Location services)
- Any other company, tool, service, or MCP server listed in this repository
- All product names, trademarks, and registered trademarks are the property of their respective owners. Use of these names is solely for informational and compatibility purposes and is considered nominative fair use.
- The Model Context Protocol (MCP) is an open standard. This repository curates MCP servers independently.
- Listings are for informational purposes only and do not constitute endorsement.
- Install configs are provided as examples only. Always refer to the official documentation of each MCP server for the latest setup instructions.
- This repository makes no warranties regarding functionality, security, or reliability. Use at your own risk.
- Users should independently verify the security of any MCP server before connecting it to their AI tools.
Installing S Hub
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/skillsdirectory/mcp-servers-hubFAQ
Is S Hub MCP free?
Yes, S Hub MCP is free — one-click install via Unyly at no cost.
Does S Hub need an API key?
No, S Hub runs without API keys or environment variables.
Is S Hub hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install S Hub in Claude Desktop, Claude Code or Cursor?
Open S Hub on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzMCP-Agent
A simple, composable framework to build agents using Model Context Protocol by [LastMile AI](https://www.lastmileai.dev)
by lastmile-aiSpring AI MCP Client
Provides auto-configuration for MCP client functionality in Spring Boot applications.
mcp.natoma.ai
A Hosted MCP Platform to discover, install, manage and deploy MCP servers by [Natoma Labs](https://www.natoma.ai)
MCPHub
Website to list high quality MCP servers and reviews by real users. Also provide online chatbot for popular LLM models with MCP server support.
MCP Servers Rating and User Reviews
Website to rate MCP servers, write authentic user reviews, and [search engine for agent & mcp](http://www.deepnlp.org/search/agent)
mkinf
An Open Source registry of hosted MCP Servers to accelerate AI agent workflows.
Compare S Hub with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
