home / mcp / mcp installer mcp server
Installs other MCP servers on demand, enabling you to deploy MCP services via simple prompts.
Configuration
View docs{
"mcpServers": {
"anaisbetts-mcp-installer": {
"command": "npx",
"args": [
"@anaisbetts/mcp-installer"
]
}
}
}You have an MCP Installer server that lets you deploy other MCP servers on demand. It streamlines adding new MCP capabilities by invoking npm or PyPi hosted servers through a simple prompt workflow, once you have the necessary runtimes installed.
You use this MCP server with an MCP client by asking it to install another MCP server for you. The installer relies on npm’s npx and a Python runner called uv to launch node-based and Python-based MCP servers, respectively. You can request installation of MCP servers hosted in npm or PyPi, and the installer will take care of starting them so you can start building atop them right away.
Prerequisites you need before installation:
Create or update your Claude configuration to include the MCP installer. Place this JSON snippet in your claude_desktop_config.json (adjust the file path to your environment as needed):
"mcpServers": {
"mcp-installer": {
"command": "npx",
"args": [
"@anaisbetts/mcp-installer"
]
}
}Notes and practical guidance for using the installer effectively:
Installs an MCP server package from npm or PyPi and launches it under the MCP framework.