Awesome Claude Mcp Servers
FreeNot checkedA curated, searchable catalog of Model Context Protocol (MCP) servers for Claude — Desktop, Code, and API.
About
A curated, searchable catalog of Model Context Protocol (MCP) servers for Claude — Desktop, Code, and API.
README
Translations: English · 简体中文 · 繁體中文 · 日本語 · 한국어 · Español · Français · Deutsch · Português · add yours →
A curated, hype-free catalog of Model Context Protocol (MCP) servers that give Claude hands and eyes — across Claude Desktop, Claude Code, and the Claude API.
Browse the searchable directory → — search, filter by category, language, and hosting, and grab a config snippet in one click.
The Model Context Protocol is an open standard for connecting AI apps to external tools, data, and services. Claude is the client (host); each server below exposes tools, resources, or prompts that Claude can call. Because MCP is a standard, most of these servers also work in Cursor, Codex, and other clients — the only thing that changes is the config format. If you're on OpenAI Codex, see the sibling list: awesome-codex-mcp-servers.
This list favors signal over volume: servers that people actually run, that are maintained, and that do one thing well. Every entry is tagged so you can scan by language, where it runs, and who stands behind it.
Contents
- How to read this list
- Getting started with Claude
- Starter kits
- Safety and good hygiene
- Aggregators and gateways
- Developer tools and version control
- Browser automation
- Web search and scraping
- Databases and data warehouses
- Knowledge and memory
- Files and document handling
- Cloud, infrastructure and devops
- Monitoring and observability
- Security
- Communication
- Productivity and project management
- Finance and payments
- Design and creative
- AI, data and analytics
- Maps and location
- Media and entertainment
- Science and research
- Everything else
- Related lists
- Contributing
How to read this list
Every entry looks like this:
- [Name](link) - What it does, in one plain sentence. `Lang` `runs` `source`
The trailing tags are the fast-scan metadata:
Language — TS TypeScript · Py Python · Go Go · Rust Rust · C# C# · Java Java · JS JavaScript · Ruby Ruby
Runs — local runs on your machine as a subprocess over stdio · remote a hosted HTTP endpoint you point Claude at · local/remote ships both
Source — reference an official reference server from the MCP project · official maintained by the product's own vendor · archived an archived reference server, still usable but no longer maintained. Entries with no source tag are community-maintained.
No stars, no install counts — those go stale the day you write them. Popularity lives in the Starter kits instead.
Getting started with Claude
MCP servers connect over two transports: stdio (a local subprocess) and streamable HTTP (a remote endpoint, optionally behind OAuth). Here's how to wire them into each Claude surface.
Claude Code (CLI)
Add a local (stdio) server. Everything after -- is handed to the server untouched:
claude mcp add filesystem -- npx -y @modelcontextprotocol/server-filesystem ~/Projects
Add a remote (HTTP) server, with an optional auth header:
claude mcp add --transport http notion https://mcp.notion.com/mcp
claude mcp add --transport http secure-api https://api.example.com/mcp \
--header "Authorization: Bearer <token>"
Pass environment variables to a local server (keep an option between --env and the name):
claude mcp add --env AIRTABLE_API_KEY=<key> --transport stdio airtable \
-- npx -y airtable-mcp-server
Choose where a server is remembered with --scope:
| Scope | Available in | Shared with your team | Stored in |
|---|---|---|---|
local (default) |
the current project, just you | no | ~/.claude.json |
project |
the current project, everyone | yes, commit it | .mcp.json in the repo |
user |
all your projects | no | ~/.claude.json |
A committed .mcp.json (project scope) looks like this and travels with the repo:
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "."]
},
"sentry": {
"type": "http",
"url": "https://mcp.sentry.dev/mcp"
}
}
}
Manage what you've added: claude mcp list, claude mcp get <name>, claude mcp remove <name>. Inside a session, /mcp shows live status, tool counts, and OAuth state. For remote servers that need login, run /mcp and complete the browser flow (or claude mcp login <name> from the shell).
Claude Desktop
Edit the config directly — Settings → Developer → Edit Config — then fully quit and relaunch Claude.
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/Users/you/Desktop",
"/Users/you/Downloads"
]
}
}
}
Use absolute paths in args, never relative ones. Logs live at ~/Library/Logs/Claude/ (macOS) or %APPDATA%\Claude\logs (Windows). Remote/OAuth servers are best added through Claude Desktop's built-in Connectors UI rather than hand-edited here.
Claude API
Claude models call MCP tools through the MCP connector (remote servers) or the Agent SDK, which speaks the same server configs as Claude Code.
Starter kits
You do not want thirty servers. Tool definitions are spent from the same context window as your actual work, and past roughly 40 active tools the model starts reaching for the wrong one. Install a small set that matches what you're doing.
The coding stack — what most Claude Code users converge on:
- Context7 - up-to-date, version-pinned library docs so Claude stops guessing APIs.
- GitHub - issues, PRs, code search, and Actions, so Claude participates in the repo.
- Playwright - drive and verify a browser for UI work and end-to-end checks.
- Serena - symbol-level code navigation and edits for large codebases.
- Sentry - pull real production errors and stack traces while you fix them.
Claude Code already has strong built-in file, shell, and Git tools. A Filesystem or Git MCP server is mostly redundant there — add them for Claude Desktop, where those built-ins don't exist.
The knowledge stack — for research, writing, and personal automation in Claude Desktop:
- Fetch - turn any URL into clean markdown.
- Brave Search - real-time web grounding.
- Filesystem - let Claude read and write local files.
- Memory - persist facts across sessions.
- Notion or Obsidian - connect your knowledge base.
Safety and good hygiene
MCP hands a model real capabilities. Treat every server like a dependency you're installing with credentials attached.
- Install servers you trust. A malicious server can hide instructions inside its tool descriptions (tool poisoning) and can change them after you approve it. Prefer
referenceandofficialservers, or read the source. - Scope credentials down. Give database and API servers read-only access to anything production, and use fine-grained, least-privilege tokens. A GitHub PAT for an agent should not be able to force-push.
- Prompt injection is real. A server that reads external content — a GitHub issue, a web page, an email — can carry instructions that try to hijack Claude. Keep write-capable and content-reading servers separate where you can.
- Mind the token budget. Each server's tool definitions cost context before any work happens; some large servers cost tens of thousands of tokens. Fewer, sharper servers beat a kitchen sink.
- Pin versions. Pin
npx/uvxpackage versions for anything sensitive, and bind local HTTP servers to127.0.0.1.
Aggregators and gateways
Run and manage many servers behind one endpoint — routing, auth, tool filtering, and namespacing.
- MetaMCP - Aggregate MCP servers into namespaced endpoints with middleware, auth, and a GUI.
TSlocal/remote - Docker MCP Gateway - Run and manage MCP servers as isolated, signed Docker containers.
Golocal/remoteofficial - mcp-proxy - Bridge stdio and SSE/streamable-HTTP so any server reaches any client.
Pylocal - MCP Context Forge - Federate REST, MCP, and A2A tools behind a single gateway.
Pyremote - agentgateway - Data-plane proxy for agents and MCP with security and governance controls.
Rustremote - Klavis - Hosted or self-hosted platform that serves and manages MCP integrations at scale.
Pylocal/remote - Unla - Lightweight gateway that turns existing MCP servers into managed endpoints.
Goremote - MCP Router - Desktop app that routes, manages, and aggregates local MCP servers.
TSlocal - MCPJungle - Self-hosted MCP registry and proxy for enterprise agent fleets.
Goremote - Nexus - Gateway that aggregates MCP servers and LLM providers behind one API.
Rustremote - 1MCP - Aggregate multiple MCP servers into a single unified endpoint.
TSlocal/remote - Magg - Meta-MCP hub for autonomous discovery, install, and orchestration of servers.
Pylocal - mcgravity - Proxy that composes many MCP servers into one load-balanced endpoint.
TSlocal - pluggedin-mcp - Unify servers with tool and resource discovery plus a playground.
TSlocal
Developer tools and version control
- GitHub - Manage repositories, issues, pull requests, code search, and Actions.
Golocal/remoteofficial - Git - Read, search, and manipulate local Git repositories.
Pylocalreference - Serena - Symbol-level code retrieval and editing powered by language servers.
Pylocal - Context7 - Inject up-to-date, version-specific library documentation into prompts.
TSlocal/remoteofficial - Desktop Commander - Terminal control and diff-based file edits across your machine.
TSlocal - GitLab Duo - Built-in GitLab endpoint for projects, issues, merge requests, and pipelines.
Rubyremoteofficial - E2B - Run LLM-generated code in secure cloud sandboxes.
TSlocal/remoteofficial - Postman - Connect agents to APIs, collections, and environments in Postman.
TSlocal/remoteofficial - CircleCI - Let agents diagnose and fix failing CI builds.
TSlocalofficial - Buildkite - Manage Buildkite pipelines, builds, and jobs.
Golocalofficial - Azure DevOps - Access Azure DevOps boards, repos, and pipelines.
TSlocalofficial - GitKraken - CLI and MCP wrapping GitKraken, Jira, GitHub, and GitLab.
TSlocalofficial - MCP Language Server - Give agents semantic code tools: definitions, references, and diagnostics.
Golocal - Gitee - Repository, issue, and pull-request management for Gitee.
TSlocalofficial
Browser automation
- Playwright - Drive a browser through the accessibility tree instead of screenshots.
TSlocal/remoteofficial - Chrome DevTools - Control and inspect a live Chrome for automation, debugging, and perf tracing.
TSlocalofficial - browser-use - Let agents drive a real browser to extract data and complete tasks.
Pylocal - Browserbase - Control a cloud browser via Browserbase infrastructure and Stagehand.
TSlocal/remoteofficial - Stagehand - AI browser-automation framework with act, extract, and observe primitives.
TSlocal/remoteofficial - Browser MCP - Automate your local Chrome through a companion browser extension.
TSlocal - Playwright (ExecuteAutomation) - Community Playwright automation plus web-scraping tools.
TSlocal - Skyvern - Automate browser workflows using LLMs and computer vision.
Pylocal/remote - Hyperbrowser - Cloud browser platform for agent scraping and automation.
TSlocal/remoteofficial - Selenium - Browser automation through the Selenium WebDriver.
JSlocal - Puppeteer - Browser automation and scraping via Puppeteer.
TSlocalarchived
Web search and scraping
- Fetch - Fetch a URL and convert its content to markdown.
Pylocalreference - Firecrawl - Scrape, crawl, and extract structured web data for LLMs.
TSlocal/remoteofficial - Exa - Neural web search, crawling, and company research for agents.
TSlocal/remoteofficial - Tavily - Real-time search, extract, map, and crawl tuned for agents.
TSlocal/remoteofficial - Brave Search - Web, local, image, video, and news search via the Brave API.
TSlocal/remoteofficial - Perplexity - Real-time web research via Perplexity Sonar models.
TSlocal/remoteofficial - Kagi - Kagi search and summarizer API access.
Pylocalofficial - DuckDuckGo - Web search and page fetch through DuckDuckGo, no API key.
Pylocal - SearXNG - Query a self-hosted SearXNG metasearch instance.
Pylocal - Apify - Run thousands of Apify Store scrapers and actors for web data.
TSlocal/remoteofficial - Bright Data - Web unlocker, SERP, and scraping toolkit.
JSlocal/remoteofficial - Crawl4AI - Open-source, LLM-friendly crawler with a built-in MCP endpoint.
Pylocal - Oxylabs - Scraping API with dynamic rendering and geo-targeting.
Pylocal/remoteofficial
Databases and data warehouses
- PostgreSQL Pro - Schema-aware Postgres access with health checks and safe SQL.
Pylocal - SQLite - Query and manage SQLite databases.
Pylocalarchived - MySQL - MySQL access with configurable permissions and schema inspection.
Pylocal - MongoDB - Connect agents to MongoDB databases and Atlas clusters.
TSlocal/remoteofficial - Redis - Natural-language interface to manage and search Redis data.
Pylocalofficial - Supabase - Manage Supabase Postgres, auth, storage, and edge functions.
TSlocal/remoteofficial - Neon - Manage Neon serverless Postgres projects, branches, and queries.
TSlocal/remoteofficial - ClickHouse - Explore databases and run read-only SQL against ClickHouse.
Pylocal/remoteofficial - BigQuery - Query BigQuery with schema inspection and SQL execution.
Pylocal - Snowflake - Query Snowflake with read/write access and insight tracking.
Pylocal - DuckDB - DuckDB access with schema inspection and read-only mode.
Pylocal - MotherDuck - Query data with MotherDuck and local DuckDB.
Pylocal/remoteofficial - Prisma - Manage Prisma databases and run migrations.
TSlocal/remoteofficial - Neo4j - Explore schema and run Cypher against Neo4j graph databases.
Pylocalofficial - Airtable - Read and write Airtable base records with schema inspection.
TSlocal - NocoDB - Read and write NocoDB database records.
JSlocal - Elasticsearch - Natural-language search over Elasticsearch data.
TSlocalofficial - Tinybird - Query the Tinybird serverless ClickHouse analytics platform.
Pylocalofficial
Knowledge and memory
- Memory - Persistent knowledge-graph memory across sessions.
TSlocalreference - Basic Memory - Local-first Markdown knowledge base with persistent semantic memory.
Pylocal - mem0 - Persistent long-term agent memory backed by mem0.
Pylocal - Memento - Neo4j-backed knowledge-graph memory with temporal awareness.
TSlocal - Reference - Search and recall past sessions and memory across Claude, Codex, and other AI tools.
Pylocal - Qdrant - Store and retrieve semantic memories in the Qdrant vector engine.
Pylocal/remoteofficial - Chroma - Vector, full-text, and metadata search over Chroma collections.
Pylocalofficial - Milvus - Vector, text, and hybrid search on the Milvus database.
Pylocal/remoteofficial - Pinecone - Search docs, manage indexes, and query data in Pinecone.
TSlocalofficial - Obsidian - Read, search, and edit notes in an Obsidian vault.
Pylocal - Apple Notes - Read from the local Apple Notes database on macOS.
Pylocal - Logseq - Interact with a Logseq knowledge graph.
Pylocal - Graphlit - Ingest Slack, Gmail, and web content into a searchable knowledge base.
TSlocal/remoteofficial
Files and document handling
- Filesystem - Secure local file operations with configurable access controls.
TSlocalreference - Filesystem (Go) - Go implementation of local filesystem access.
Golocal - Everything Search - Fast local file search across Windows, macOS, and Linux.
Pylocal - Google Drive - File access and search for Google Drive.
TSlocalarchived - Microsoft 365 - Access Microsoft 365 files, mail, and calendar via Graph API.
TSlocal - Box - Search and read files in Box.
JSlocal - Pandoc - Convert documents between Markdown, HTML, PDF, and docx.
Pylocal - Unstructured - Build document parsing and ingestion workflows.
Pylocal/remoteofficial - Cloudinary - Upload, transform, analyze, and organize media assets.
TSlocal/remoteofficial - llm-context - Share code and file context with LLMs via MCP or clipboard.
Pylocal
Cloud, infrastructure and devops
- AWS - Suite of servers for AWS services, CDK, cost, docs, and Bedrock.
Pylocal/remoteofficial - Azure - Access Azure services with Entra ID authentication.
C#localofficial - Cloudflare - Remote servers across Cloudflare dev, observability, and security.
TSremoteofficial - Google Cloud Run - Deploy applications to Google Cloud Run.
TSlocalofficial - Terraform - Interact with the Terraform Registry and HCP Terraform APIs.
Golocal/remoteofficial - Pulumi - Execute Pulumi infrastructure-as-code operations via the Automation and Cloud APIs.
TSlocalofficial - Kubernetes - Manage pods, deployments, and services in Kubernetes.
TSlocal - mcp-k8s-go - Kubernetes cluster operations: pods, logs, and events.
Golocal - Docker - Manage containers and Compose stacks.
Pylocal - Heroku - Manage Heroku apps, Postgres, and add-ons.
TSlocalofficial - Netlify - Create, build, deploy, and manage Netlify sites.
TSlocalofficial - Nomad - Manage HashiCorp Nomad jobs and clusters.
Golocal - Hetzner Cloud - Interact with the Hetzner Cloud API.
TSlocal
Monitoring and observability
- Sentry - Retrieve issues, stack traces, and Seer AI analysis.
TSlocal/remoteofficial - Grafana - Access dashboards, datasources, alerts, and incidents.
Golocal/remoteofficial - Axiom - Query observability data using Axiom Processing Language.
TSremoteofficial - Logfire - Access OpenTelemetry traces and metrics via Pydantic Logfire.
Pylocalofficial - VictoriaMetrics - Query VictoriaMetrics metrics and observability data.
Golocal - SigNoz - Query SigNoz metrics, traces, and dashboards.
Pylocal - Raygun - Access crash-reporting and real-user-monitoring data.
TSlocalofficial - Loki - Query Grafana Loki log data.
Golocal
Security
- Semgrep - Scan code for security vulnerabilities with Semgrep.
Pylocal/remoteofficial - OSV - Query the Open Source Vulnerabilities database.
Golocal - Snyk - Scan repositories and projects via the Snyk CLI.
TSlocal - Burp Suite - Integrate Burp Suite for web security testing.
Pylocalofficial - HashiCorp Vault - Manage secrets and policies in HashiCorp Vault.
Golocalofficial - Auth0 - Manage Auth0 tenants with natural language.
TSlocalofficial - GhidraMCP - Reverse-engineer binaries through Ghidra decompilation.
Javalocal - IDA Pro - Automate reverse engineering with IDA Pro.
Pylocal - Shodan - Query Shodan network intelligence with structured output.
Pylocal - VirusTotal - Analyze files and URLs via the VirusTotal API.
Pylocal - 1Password - Access the 1Password CLI to manage secrets and vaults.
Rustlocal
Communication
- Slack - Access Slack workspaces over stdio, SSE, and HTTP with smart history.
Golocal/remote - WhatsApp - Search, read, and send personal WhatsApp messages and media.
Golocal - Gmail - Send, search, and manage Gmail with automatic OAuth.
TSlocal - Telegram - Manage Telegram dialogs, messages, and drafts over MTProto.
Golocal - Twilio - Send messages and manage phone numbers via Twilio APIs.
TSlocalofficial - LINE - Connect an agent to a LINE Official Account.
TSlocalofficial - Resend - Compose and send email through the Resend API.
TSlocal - Mailgun - Interact with the Mailgun email API for sending and analytics.
TSlocalofficial - Bluesky - Query and search Bluesky feeds and posts over the AT Protocol.
TSlocal - Intercom - Search Intercom conversations and contacts.
TSremoteofficial
Productivity and project management
- Notion - Read and write Notion pages, databases, blocks, and comments.
TSlocal/remoteofficial - Linear - Manage Linear issues, projects, and cycles.
remoteofficial - Atlassian - Access Jira, Confluence, and Bitbucket via OAuth.
remoteofficial - Atlassian (community) - Self-hostable Jira and Confluence integration.
Pylocal - Asana - Create tasks and search across the Asana Work Graph.
remoteofficial - monday.com - Access monday.com boards, items, and workflows.
TSlocal/remoteofficial - ClickUp - Manage ClickUp tasks, docs, time tracking, and comments.
TSlocal - Todoist - Manage Todoist tasks with natural language.
TSlocal - Trello - Work with Trello boards, lists, and cards.
TSlocal - Google Calendar - Manage Google Calendar events with conflict detection.
TSlocal - Apple Reminders - Interact with Apple Reminders on macOS.
TSlocal - Zapier - Connect agents to thousands of apps for actions and triggers.
remoteofficial - Taskade - Manage Taskade tasks, projects, and workspaces.
TSlocal/remoteofficial - Webflow - Design, structure, and manage Webflow sites via the Data API.
TSlocal/remoteofficial
Finance and payments
- Stripe - Manage payments, billing, and customers via the Stripe API.
TSlocal/remoteofficial - PayPal - Handle invoices, payments, disputes, and subscriptions.
TSlocal/remoteofficial - Xero - Manage invoices, contacts, and accounting data.
TSlocalofficial - Chargebee - Connect agents to the Chargebee subscription-billing platform.
TSlocalofficial - CoinGecko - Crypto price and market data across coins and exchanges.
TSlocal/remoteofficial - Financial Datasets - Stock-market and fundamentals data built for agents.
Pylocal - Alpaca - Trade stocks and crypto through Alpaca APIs.
Pylocal - CoinCap - Real-time cryptocurrency market data, no API key.
TSlocal
Design and creative
- Figma Dev Mode - Provide design context and canvas access from Figma files.
local/remoteofficial - Figma Context - Feed Figma layout and styling data to coding agents.
TSlocal - Blender - Control Blender for 3D modeling and scene creation.
Pylocal - AntV Chart - Generate charts with the AntV visualization library.
TSlocalofficial - ECharts - Generate charts with Apache ECharts.
TSlocal - Mermaid - Generate Mermaid diagrams dynamically.
TSlocal - shadcn/ui - Browse and install shadcn/ui components.
TSlocal - SlideSpeak - Create presentations and PowerPoint decks with AI.
Pylocal
AI, data and analytics
- Sequential Thinking - Structured, revisable multi-step reasoning.
TSlocalreference - Hugging Face - Access Hugging Face models, datasets, and Spaces.
TSlocal/remoteofficial - Hugging Face Spaces - Use Hugging Face Spaces for image, audio, and text models.
TSlocal - Google Analytics - Query GA4 analytics data.
Pylocalofficial - MindsDB - Query and unify data across platforms as one MCP server.
Pylocal/remote - Vectorize - Retrieval, deep research, and Markdown extraction over Vectorize.
JSlocal/remoteofficial - ZenML - Query MLOps and LLMOps pipelines in ZenML.
Pylocalofficial - Chronulus AI - Multimodal forecasting and prediction across arbitrary inputs.
Pylocal
Maps and location
- Google Maps - Location services, directions, and place details.
TSlocalarchived - Mapbox - Geocoding, navigation, and geospatial intelligence via Mapbox.
TSlocal/remoteofficial - QGIS - Connect QGIS to agents for geospatial operations.
Pylocal - IPLocate - IP geolocation, network info, and proxy detection.
TSlocalofficial - AccuWeather - Weather forecasts via the AccuWeather API.
TSlocal - Globalping - Run ping, traceroute, and DNS probes from global locations.
TSlocalofficial
Media and entertainment
- ElevenLabs - Text-to-speech, voice cloning, and audio processing.
Pylocal/remoteofficial - YouTube - Download YouTube subtitles and transcripts for analysis.
TSlocal - Spotify - Control playback and manage tracks, albums, and playlists.
Pylocal - VideoDB - Edit video, run semantic search, and transcribe.
Pylocal/remoteofficial - Godot - Launch, run, and debug the Godot game engine.
TSlocal - Unity - Control and interact with the Unity editor.
C#local - OP.GG - Real-time gaming stats across popular titles.
TSlocal/remoteofficial
Science and research
- ArXiv - Search and analyze arXiv research papers.
Pylocal - BioMCP - Biomedical research across PubMed and ClinicalTrials.gov.
Pylocal - PapersWithCode - Search research papers, conferences, and associated codebases.
Pylocal - OpenNutrition - Search foods, nutrition facts, and barcodes.
TSlocal - gget - Bioinformatics and genomics toolkit wrapping the gget library.
Pylocal
Everything else
- Time - Time and timezone conversion.
Pylocalreference - Everything - Reference server exercising every MCP feature, for testing clients.
TSlocalreference - Home Assistant - Control smart-home devices through Home Assistant.
Pylocal - Coreflux MQTT - MQTT automation hub for interacting with IoT devices.
C#local - Congress - Query US legislative data from Congress.gov.
Pylocal - eSignatures - Draft, review, and send contracts and templates.
Pylocalofficial - ShopSavvy - Look up product pricing by barcode, ASIN, or URL.
TSlocalofficial
Related lists
- Model Context Protocol - The official protocol, SDKs, and reference servers.
- MCP Registry - The official, namespaced server registry (preview).
- awesome-codex-mcp-servers - The same catalog, framed for OpenAI Codex.
Contributing
Found a server that belongs here, or spotted a dead link? Contributions are welcome — please read the contribution guidelines first. One project per pull request, keep it objective, and place it in the right category.
This list is dedicated to the public domain under CC0-1.0. Not affiliated with Anthropic. "Claude" is a trademark of Anthropic; used here only to describe compatibility.
Installing Awesome Claude Mcp Servers
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/Kuberwastaken/awesome-claude-mcp-serversFAQ
Is Awesome Claude Mcp Servers MCP free?
Yes, Awesome Claude Mcp Servers MCP is free — one-click install via Unyly at no cost.
Does Awesome Claude Mcp Servers need an API key?
No, Awesome Claude Mcp Servers runs without API keys or environment variables.
Is Awesome Claude Mcp Servers hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Awesome Claude Mcp Servers in Claude Desktop, Claude Code or Cursor?
Open Awesome Claude Mcp Servers 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
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare Awesome Claude Mcp Servers with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
