Package Exports
- @mcpm/cli
- @mcpm/cli/lib/cli.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@mcpm/cli) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
MCPM CLI
A command-line tool for managing MCP servers in Claude App.
Installation
npm install -g @mcpm/cli
Usage
Add a new MCP server
mcpm add # Interactive mode
mcpm add <name> # Specify server name
Remove an MCP server
mcpm remove # Interactive mode
mcpm remove <name> # Specify server name
Disable an MCP server
Moves a server from Claude App to storage, making it temporarily unavailable.
mcpm disable # Interactive mode
mcpm disable <name> # Specify server name
Enable an MCP server
Moves a previously disabled server from storage back to Claude App.
mcpm enable # Interactive mode
mcpm enable <name> # Specify server name
List MCP servers
mcpm host scan # Shows all configured MCP servers
Configuration
- Active servers are stored in Claude App's configuration
- Disabled servers are stored in
~/.mcpm/config.json
Development
Publish A new version
git tag v1.1.2
git push origin v1.1.2