@mcpmanager/cli
v0.1.14
Published
A command line application to simplify MCP server management.
Readme
MCP Manager CLI
A command line application to facilitate running MCP servers securely and expose them securely to clients or MCP gateways using HTTPS tunnels.
Instructions (Node)
npx -y @mcpmanager/cli@latest COMMAND [ARGS]Run commands after npx -y @mcpmanager/cli@latest, ex:
npx -y @mcpmanager/cli@latest versionSome commands may take arguments. Pass -h as an argument to see their documentation:
npx -y @mcpmanager/cli@latest gen_key -hInstructions (Docker)
Note: This CLI builds & runs docker images on your host machine, so it requires the docker socket in order to work.
docker run --rm -it -v "/var/run/docker.sock:/var/run/docker.sock" mcpmanager/cli:latest COMMAND [ARGS]Run commands after docker run -it -v "/var/run/docker.sock:/var/run/docker.sock" mcpmanager/cli, ex:
docker run --rm -it -v "/var/run/docker.sock:/var/run/docker.sock" mcpmanager/cli:latest versionSome commands may take arguments. Pass -h as an argument to see their documentation:
docker run --rm -it -v "/var/run/docker.sock:/var/run/docker.sock" mcpmanager/cli:latest gen_key -hCommands
| Command | Description |
| ------------- | ------------------------------------------------------------------------------------------ |
| clean | Stops and removes all running docker containers created by MCP Manager |
| gen_key | Generate a cryptographically secure key using Node's built in crypto module |
| inspector | Installs and launches the latest version of MCP inspector |
| logs | Shows logs from containers created by MCP Manager |
| managed | Validates & deploys MCP servers as Dokku applications via SSH connection |
| rm | Removes stopped docker containers created by MCP Manager |
| ssh | Opens a new intactive ssh session or execute a command remotely if arguments are specified |
| status | Lists running docker containers created by MCP Manager |
| stop | Stops all running docker containers created by MCP Manager |
| version | Prints CLI version |
| workstation | Launch an STDIO MCP server inside a docker container and expose it with an HTTPS tunnel |
