mcpm.sh - MCP package manager and registry
Cross-platform CLI to search, install, and configure MCP servers across Claude Desktop, Cursor, Cline, Continue, Goose, and more. Includes router and profile features for routing requests across servers.
MCPM is what npm was to Node before everyone took package management for granted: a CLI plus a registry that turn "install this MCP server" from a JSON-editing chore into a one-liner. The CLI manages local servers; the registry at mcpm.sh/registry is the catalogue the CLI talks to. Either half works without the other, but the value comes from using both.
The thing it gets right that ad-hoc setups don't: you install a server once, globally, and then decide which clients see it via per-client config. That is the inverse of the default workflow, where each client gets its own copy of the server config and they drift.
Install
curl -sSL https://mcpm.sh/install | bash
If you'd rather use a system package manager:
brew install mcpm
pipx install mcpm
uv tool install mcpm
pip install mcpm
pipx and uv tool install are the cleanest for a Python-heavy machine - the binary lands in an isolated env without polluting the system Python.
The five commands you'll actually use
mcpm search <query> # find servers in the registry
mcpm install <server> # add to global config
mcpm ls # list installed servers
mcpm client edit <client> # toggle which servers a client sees
mcpm run <server> # execute the server (stdio by default)
mcpm run <server> --http exposes the server over HTTP instead of stdio - useful when you want to share one running instance across multiple clients on the same machine.
Profiles vs per-client config
A profile is a tag that groups servers. The split looks like this:
- Per-client config - "Cursor sees fs and github; Claude Desktop sees fs and slack."
- Profile - "My
frontendprofile is fs + github + figma; myoncallprofile is grafana + slack + pagerduty."
Profiles are the right primitive when you switch contexts faster than you switch clients. Run mcpm profile create frontend, mcpm profile edit frontend to pick servers, then mcpm profile run frontend to bring up everything tagged that way at once. They compose with client config - you don't pick one model or the other.
Supported clients
Out of the box, MCPM manages MCP server config for:
- Claude Desktop
- Cursor
- Windsurf
- VS Code
- Cline
- Continue
- Goose
- 5ire
- Roo Code
Claude Code isn't on the official native list, but the registry entries themselves are client-agnostic - you can mcpm install <server> and wire the resulting command into Claude Code by hand.
When to reach for it
- You're managing more than three MCP servers and the JSON config files have started to disagree across clients.
- You want to share a curated server bundle with a teammate -
mcpmis the only thing that turns "here's a list of servers" into something someone else can install in one command. - You're building or publishing an MCP server and want it discoverable. The registry takes community contributions.
When not to
- You only run two or three servers and they're stable. Editing JSON once a quarter is fine.
- You need a hardened, audited package source for a regulated environment. The registry is open and community-driven; there's no audit disclosure or signing story documented.
Trade-offs to know about
The registry has no documented signing or supply-chain verification - installing a server is roughly as trusting as curl | bash. For internal tools that's fine. For production agents touching customer data, treat anything you install as code you'd review.
mcpm share <server> exposes a local server over a "secure tunnel" for remote access. That's useful for pair-debugging, but the docs don't go into the cryptographic details, so don't use it as your primary remote-server solution.
There's no documented self-hosted registry. If you need a private registry, you're on the do-it-yourself path for now - fork the registry repo, host the JSON, and point your CLI at it.
The MIT-licensed source and a single source of truth for server discovery are the long-term reasons this is worth standardising on, even with those caveats.
Featured in
Claude Code tools, plugins, and integrations
The best tools, MCP servers, and harnesses for getting more out of Claude Code - orchestration, observability, telemetry, and remote control.
MCP servers and Model Context Protocol tools
Production MCP servers, gateways, frameworks, and clients - everything in this directory that speaks the Model Context Protocol.
Related entries
idea-reality-mcp - prior-art MCP for coding agents
MCP server that scans GitHub, Hacker News, npm, PyPI, and Product Hunt before an agent starts building, surfacing whether the idea already exists and at what scale.
lean-ctx - MCP context optimizer for AI coding agents
Rust MCP server plus shell hook that compresses context for Cursor, Claude Code, Copilot, Windsurf, Gemini CLI and 24 other tools. Single binary, zero telemetry.
mcp-shodan - Shodan MCP server for AI agents
MCP server exposing Shodan APIs for IP reconnaissance, DNS lookups, and CVE/CPE vulnerability intelligence. Plugs into Claude Code, Codex, Gemini CLI, and Claude Desktop.
Pare - token-efficient MCP servers for dev tools
Set of structured, token-efficient MCP servers for git, test runners, npm, and Docker designed specifically for agent consumption rather than human readability.