drio
Open app

MCPM CLI

Source

A command-line tool for managing MCP servers in Claude App.

Catalog onlyCatalog onlySTDIO

Overview

MCPM CLI is a command-line tool designed for managing MCP servers in the Claude App, providing users with an efficient way to handle server operations directly from the terminal.

To use MCPM CLI, install it via npm with the command npm install -g @mcpm/cli and run commands such as mcpm add, mcpm disable, or mcpm list to manage your MCP servers.

  • Easy management of multiple MCP servers. - Enable, disable, and check server status. - Interactive command-line interface for user-friendly configuration. - JSON configuration management.
  1. Adding and managing several MCP servers in a development environment.
  2. Quickly switching the status of servers as needed.
  3. Simplifying server management tasks with a command-line interface.

Add to your AI client

Use these steps to connect MCPM CLI in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcpm-mcp-club": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpm-mcp-club"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcpm-mcp-club": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpm-mcp-club"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcpm-mcp-club": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpm-mcp-club"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcpm-mcp-club": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpm-mcp-club"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcpm-mcp-club": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpm-mcp-club"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcpm-mcp-club": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpm-mcp-club"
      ]
    }
  }
}

FAQ

Is MCPM CLI easy to install?

Yes! Simply use the command `npm install -g @mcpm/cli` to install it globally on your system.

Can MCPM CLI manage multiple servers?

Yes, MCPM CLI is designed to handle multiple servers efficiently.

What configurations does MCPM CLI support?

MCPM CLI supports JSON configurations for efficient management of server settings.