MCP Server Manager for Claude
Install and manage Model Context Protocol (MCP) servers for Claude Desktop.
MCP Server Manager
Command-line tool for managing MCP servers in Claude Code. Supports user and project-level server installation and configuration.
Quick Start
# Create configuration from template
cp mcp-servers.json.example mcp-servers.json
# Add servers to user scope
make add SERVERS=memory,brave-search
# Sync all configured servers
make sync
# List installed servers
make list
Requirements
- Claude CLI installed (
npm install -g @anthropic-ai/claude-code) - Python 3.8+ with Ansible (
pip install ansible) - Node.js 18+ (for Claude CLI)
Installation
- Clone this repository
- Install Ansible:
pip install ansible - Verify Claude CLI:
claude --version
Basic Usage
Server Management
# Add specific servers
make add SERVERS=memory,github
# Remove servers
make remove SERVERS=memory
# List all servers
make list
# Sync from configuration file
make sync
Project-Level Operations
# Add servers to current project
make project-add SERVERS=github
# List project servers
make project-list
# Sync project servers
make project-sync
Remote Operations
# Configure servers on remote host
make sync-remote SSH_HOST=192.168.1.100 SSH_USER=ubuntu
# Add servers to remote Claude CLI
make add-remote SERVERS=memory SSH_HOST=server.example.com SSH_USER=admin
Configuration
Server Configuration
Edit mcp-servers.json to define available servers:
{
"memory": {
"command": "npx",
"args": ["-y", "@anthropic-ai/mcp-server-memory"],
"env": {}
},
"github": {
"command": "npx",
"args": ["-y", "@anthropic-ai/mcp-server-github"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_TOKEN}"
}
}
}
Environment Variables
Create .env file for API keys and secrets:
GITHUB_TOKEN=ghp_your_token_here
BRAVE_API_KEY=your_brave_key_here
Variables in server configurations use ${VAR_NAME} syntax for substitution.
Commands
| Command | Description |
|---|---|
list | List installed servers |
add | Add servers (SERVERS=name1,name2) |
remove | Remove servers (SERVERS=name1,name2) |
sync | Sync all servers from config |
clean | Remove orphaned servers |
project-list | List project servers |
project-add | Add servers to project |
project-sync | Sync project servers |
dry-run | Preview changes without applying |
Advanced Usage
For complex scenarios, use Ansible directly:
# Custom configuration file
ansible-playbook ansible/manage-mcp.yml -e "config_file=my-config.json"
# Specific operation with custom parameters
ansible-playbook ansible/manage-mcp.yml \
-e "mode=individual" \
-e "operation_mode=add" \
-e "servers=memory,github"
See docs/ADVANCED.md for complete Ansible documentation.
Configuration Files
mcp-servers.json- Server definitions and configurations.env- Environment variables and API keys (optional)ansible/group_vars/all.yml- Default Ansible variables
Examples
See ansible/examples/ for sample configurations:
mcp-servers.json- Example server definitionssecrets.yml.example- Environment variable template
Documentation
- Advanced Usage - Direct Ansible usage
- Configuration Guide - Detailed configuration options
- Contributing - Development guidelines
License
MIT License - see LICENSE file for details.
Related Servers
Scout Monitoring MCP
sponsorPut performance and error data directly in the hands of your AI assistant.
Alpha Vantage MCP Server
sponsorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
Gateway MCP Server
A gateway server that intelligently routes MCP requests to multiple backend servers.
Sonic Pi MCP
Interact with Sonic Pi, the live coding music synth, using OSC messages.
MCP Shell
Execute secure shell commands from AI assistants and other MCP clients, with configurable security settings.
stdout-mcp-server
Captures and manages stdout logs from multiple processes via a named pipe system for real-time debugging and analysis.
mcp-of-mcps
MCP of MCPs is a meta-server that merges all your MCP servers into a single smart endpoint. It gives AI agents instant tool discovery, selective schema loading, and massively cheaper execution, so you stop wasting tokens and time. With persistent tool metadata, semantic search, and direct code execution between tools, it turns chaotic multi-server setups into a fast, efficient, hallucination-free workflow. It also automatically analyzes the tools output schemas if not exist and preserves them across sessions for consistent behavior.
cli-mcp
A command-line interface (CLI) client for calling tools from local and remote MCP servers.
Klever VM
MCP server for [Klever](https://klever.org) blockchain smart contract development, on-chain data exploration, and VM interaction. Public remote server available at `https://mcp.klever.org/mcp`.
CODING DevOps
Interact with the CODING DevOps platform for managing projects and work items.
MCP Server + Asgardeo
A sample MCP server that uses Asgardeo for client authentication and connection.
TouchDesigner MCP
Control and operate TouchDesigner projects with AI agents using the Model Context Protocol.