MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

C
Claude Code MCP Marketplace

๐Ÿ›’ Discover, install, and manage Claude Code MCP servers from one CLI. The package manager for MCP.

Created 5/22/2026
Updated about 3 hours ago
Repository documentation and setup instructions

claude-code-mcp-marketplace

The package manager for MCP servers. Discover ยท install ยท update ยท audit โ€” all from one CLI.


npx ccmcp install slack

MCP-D97757?style=for-the-badge&logo=anthropic&logoColor=white - Claude Code MCP Marketplace by kasimmj Marketplace-A78BFA?style=for-the-badge - Claude Code MCP Marketplace by kasimmj CLI-4D4D4D?style=for-the-badge&logo=gnubash&logoColor=white - Claude Code MCP Marketplace by kasimmj MIT-000000?style=for-the-badge - Claude Code MCP Marketplace by kasimmj

claude-code-mcp-marketplace?style=social - Claude Code MCP Marketplace by kasimmj claude-code-mcp-marketplace?style=social - Claude Code MCP Marketplace by kasimmj


๐Ÿ›’ 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:

  1. Find the repo
  2. Read the install instructions (usually wrong)
  3. Manually edit settings.json
  4. Hope you got the JSON right
  5. Restart Claude Code
  6. 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.

Quick Setup
Installation guide for this server

Installation Command (package not published)

git clone https://github.com/kasimmj/claude-code-mcp-marketplace
Manual Installation: Please check the README for detailed setup instructions and any additional dependencies required.

Cursor configuration (mcp.json)

{ "mcpServers": { "kasimmj-claude-code-mcp-marketplace": { "command": "git", "args": [ "clone", "https://github.com/kasimmj/claude-code-mcp-marketplace" ] } } }