Conversational interface for managing MCP (Model Context Protocol) server configurations in Claude Code
View on GitHub.claude/skills/mcp-manager/SKILL.md
January 21, 2026
Select agents to install to:
npx add-skill https://github.com/rysweet/amplihack/blob/main/.claude/skills/mcp-manager/SKILL.md -a claude-code --skill mcp-managerInstallation paths:
.claude/skills/mcp-manager/# MCP Manager Skill ## Overview Natural language interface to MCP Manager CLI tool for managing Model Context Protocol server configurations. Users interact conversationally: "enable the filesystem MCP", "add a database server", "show me all my MCPs". ## Activation Activates on MCP keywords within 3-message window or explicit invocation: `/mcp-manager` ## Commands ### 1. List MCPs Display all configured MCP servers with status. - "List all my MCPs" / "Show me my MCP servers" - CLI: `python3 -m mcp-manager.cli list` ### 2. Enable MCP Activate a disabled MCP server. - "Enable the filesystem MCP" / "Turn on puppeteer" - CLI: `python3 -m mcp-manager.cli enable <server-name>` ### 3. Disable MCP Deactivate an MCP server without removing it. Requires confirmation. - "Disable the puppeteer MCP" / "Turn off github" - CLI: `python3 -m mcp-manager.cli disable <server-name>` ### 4. Add MCP Add new MCP server interactively (collects name, command, args, env vars). - "Add a new MCP server" / "Configure a database MCP" - CLI: `python3 -m mcp-manager.cli add <name> <command> [args...] --env KEY=VALUE` ### 5. Remove MCP Delete MCP server configuration completely. Requires confirmation with warning. - "Remove the puppeteer MCP" / "Delete the old-server" - CLI: `python3 -m mcp-manager.cli remove <server-name>` ### 6. Show MCP Display detailed information for specific MCP server. - "Show me the filesystem MCP" / "Details for github server" - CLI: `python3 -m mcp-manager.cli show <server-name>` ### 7. Validate MCPs Check all MCP configurations for errors. - "Validate my MCP configuration" / "Check for MCP errors" - CLI: `python3 -m mcp-manager.cli validate` ### 8. Export MCPs Export configurations to JSON file for backup. - "Export my MCP configuration" / "Back up my MCPs" - CLI: `python3 -m mcp-manager.cli export [output-file]` ### 9. Import MCPs Import configurations from JSON file. - "Import MCPs from backup.json" / "Restore my MCPs" - CLI: `python3 -m