mcp-config-manager
This package provides functionality to manage MCP server configurations for different clients like Cline and Claude Desktop.
Documentation
MCP Config Manager
Configuration management utilities for Model Context Protocol (MCP) servers. This package provides functionality to manage MCP server configurations for different clients like Claude Desktop and VSCode extensions (Cline and Roo).
Features
- Automatic configuration file path detection for different environments
- Support for Claude Desktop and VSCode extensions (Cline and Roo)
- Environment variable validation
- Generic configuration management functions
- VSCode extension specific settings (disabled, autoApprove) for Cline and Roo
Installation
pip install mcp-config-managerUsage
from mcp_config_manager import add_to_config
# Define your required environment variables
REQUIRED_ENV_VARS = ["API_KEY", "API_URL"]
# Add to Claude Desktop configuration
add_to_config(
server_name="my-mcp-server",
required_env_vars=REQUIRED_ENV_VARS,
config_type="claude"
)
# Add to Cline configuration (VSCode extension)
add_to_config(
server_name="my-mcp-server",
required_env_vars=REQUIRED_ENV_VARS,
config_type="cline" # Will include disabled=False and autoApprove settings
)
# Add to Roo configuration (VSCode extension)
add_to_config(
server_name="my-mcp-server",
required_env_vars=REQUIRED_ENV_VARS,
config_type="roo" # Will include disabled=False and autoApprove settings
)
# With custom environment variables
env_vars = {
"API_KEY": "my-key",
"API_URL": "https://api.example.com"
}
add_to_config(
server_name="my-mcp-server",
required_env_vars=REQUIRED_ENV_VARS,
env_vars=env_vars,
config_type="cline"
)Configuration File Locations
The package automatically detects the appropriate configuration file paths:
Claude Desktop
- EC2: `~/.vscode-server/data/User/globalStorage/anthropic.claude/settings/claude_desktop_config.json`
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
- Windows: `%APPDATA%/Claude/claude_desktop_config.json`
VSCode Extensions
Cline
- EC2: `~/.vscode-server/data/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`
- macOS: `~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`
- Windows: `%APPDATA%/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`
Roo
- EC2: `~/.vscode-server/data/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_mcp_settings.json`
- macOS: `~/Library/Application Support/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_mcp_settings.json`
- Windows: `%APPDATA%/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_mcp_settings.json`
VSCode Extension Settings
When adding configurations for VSCode extensions (Cline or Roo), the following additional settings are automatically included:
{
"disabled": false, // Server is enabled by default
"autoApprove": [] // List of operations to auto-approve
}Development
1. Clone the repository
2. Install development dependencies: `pip install -e ".[dev]"`
3. Run tests: `pytest`
4. Submit pull requests
License
MIT License - see LICENSE file for details.
Frequently asked questions
What is mcp-config-manager?
mcp-config-manager is This package provides functionality to manage MCP server configurations for different clients like Cline and Claude Desktop.
How do I install mcp-config-manager?
Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.
Is mcp-config-manager open source?
Yes — it is hosted on GitHub at https://github.com/easytocloud/mcp-config-manager and has 1 stars.
Related MCP tools
AWS MCP Servers — helping you get the most out of AWS, wherever you use MCP. Python-based implementation. Trusted by 6900+ developers.
A simple, secure MCP-to-OpenAPI proxy server Python-based implementation. Trusted by 3500+ developers. Trusted by 3500+ developers.
MCP server that interacts with Obsidian via the Obsidian rest API community plugin Python-based implementation. Trusted by 2300+ developers.
Default Configuration: MCP CLI defaults to using Ollama with the gpt-oss reasoning model for local, privacy-focused operation without requiring API keys.
Official MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
MCP server for long term agent memory with Mem0. Also useful as a template to get you started building your own MCP server with Python!
Run your own MCP server? See who uses it and what to fix.
Measure it with TrackMCP