๐ Discover, install, and manage Claude Code MCP servers from one CLI. The package manager for MCP.
The package manager for MCP servers. Discover ยท install ยท update ยท audit โ all from one CLI.
npx ccmcp install slack
๐ The MCP problem
There are hundreds of MCP servers. They're scattered across:
- GitHub (search "mcp-server-*")
- npm (
@modelcontextprotocol/*) - PyPI (
mcp-*) - GoLang modules
- Random blog posts and tweets
Installing one means:
- Find the repo
- Read the install instructions (usually wrong)
- Manually edit
settings.json - Hope you got the JSON right
- Restart Claude Code
- Pray
ccmcp (claude-code-mcp) fixes this. One CLI. Curated registry. Verified servers.
โก Commands
# Search
ccmcp search slack
ccmcp search "database"
# Install
ccmcp install slack
ccmcp install slack --scope project # vs --scope user
# List installed
ccmcp list
# Update
ccmcp update slack
ccmcp update --all
# Remove
ccmcp uninstall slack
# Audit installed servers (security + freshness check)
ccmcp audit
The CLI:
- โ Validates the server's manifest
- โ Checks for known CVEs in its dependencies
- โ Tests it boots successfully before saving
- โ Edits your settings.json with proper backup
- โ Restarts Claude Code if needed (optional)
๐ฆ Registry
The marketplace tracks 300+ verified MCP servers across categories:
| Category | Servers | |----------|---------| | ๐๏ธ Databases | Postgres, MySQL, SQLite, MongoDB, Redis, Snowflake, BigQuery | | ๐ฌ Chat | Slack, Discord, Telegram, Microsoft Teams, Matrix | | ๐ Productivity | Google Calendar, Notion, Linear, Jira, Asana, Trello | | ๐ APIs | GitHub, GitLab, Stripe, Twilio, SendGrid, Vercel, Cloudflare | | โ๏ธ Cloud | AWS, GCP, Azure, DigitalOcean, Hetzner, Render | | ๐ Analytics | Mixpanel, Amplitude, PostHog, Google Analytics | | ๐ค AI / LLM | Hugging Face, OpenAI, Anthropic (extra tooling), Replicate | | ๐ Files | S3, R2, Google Drive, Dropbox, OneDrive | | ๐ Commerce | Shopify, Stripe, Square, WooCommerce | | ๐ฎ Gaming | Steam, Discord Game SDK, Unity Cloud | | ๐ Security | 1Password, Vault, AWS Secrets Manager | | ๐ ๏ธ Dev Tools | Sentry, Datadog, Honeycomb, Bugsnag |
Browse online: marketplace.ccmcp.dev (coming soon)
๐ก๏ธ Security
Every server in the registry has been manually reviewed for:
- โ Source available on GitHub
- โ No obfuscated code
- โ Permissions clearly documented
- โ Maintained (commits within last 6 months)
- โ No known critical CVEs in dependencies
We classify each server by trust tier:
| Tier | Meaning | |------|---------| | ๐ข Official | Maintained by the service vendor (Slack, GitHub, etc.) | | ๐ต Verified | Maintained by trusted community contributor, code-reviewed | | ๐ก Community | Community-maintained, less rigorous review | | ๐ด Experimental | Use at own risk |
ccmcp install shows the tier before installing, and you can configure a minimum:
ccmcp config set min_trust_tier verified
๐ Server Manifest
Every registered server includes a mcp.toml:
name = "slack"
version = "2.1.0"
description = "Send messages, read channels, manage Slack workspaces."
author = "Slack, Inc."
license = "MIT"
trust_tier = "official"
[install]
type = "npm" # npm | pip | go | docker | binary
package = "@slack/mcp-server"
binary_name = "mcp-server-slack"
[runtime]
command = "mcp-server-slack"
env_required = ["SLACK_BOT_TOKEN"]
env_optional = ["SLACK_USER_TOKEN"]
[capabilities]
tools = ["send_message", "read_channel", "list_channels", "react_message"]
resources = ["channels", "users", "files"]
[permissions]
network = ["api.slack.com"]
filesystem = false
shell = false
This lets ccmcp show you exactly what permissions a server wants before you install.
๐ค Contributing a server
ccmcp submit ./my-mcp-server
This runs the manifest validator + a smoke test + opens a PR against the registry. Approved within 7 days if the manifest is complete.
๐ Highlighted picks
postgres ๐ข
Query and modify your Postgres databases directly from Claude.
linear ๐ข
Browse, create, and update Linear issues without leaving Claude.
playwright ๐ต
Drive a browser from Claude. Great for web scraping + e2e testing.
aws-cdk ๐ต
Read your CDK stacks, propose changes, generate diffs.
huggingface ๐ต
Search models, datasets, run inference on Hugging Face directly.
๐ License
MIT.
Star โญ to follow the MCP marketplace.