This is a meta-server that lets Claude dynamically discover and add other MCP servers at runtime. It indexes the official MCP registry and exposes search, add_mcp_server, and remove_mcp_server tools so your AI agent can find what it needs and reconfigure itself on the fly. Instead of manually adding servers to your config file, you can ask Claude to search for capabilities and install them. After adding a new server, restart to get its tools loaded. Particularly handy if you're building autonomous agents that need to expand their own toolset, or if you want Claude to help manage your MCP setup interactively. Supports both stdio and streamable-http transports, available as an npm package or Docker image.
It allows searching(search tool) for the Model Context Protocol servers using MCP registry. Once your AI agent has found the MCP server that it needs, it can add it to the configuration using add_mcp_server tool. You will get new tools after restarting the MCP server.
mcp_configuration - shows current MCP configurationsearch - search for the MCP server using the index based on the MCP registryadd_mcp_server - adds configuration for the MCP serverremove_mcp_server - removes configuration for the MCP serverrefresh_mcp_index - refreshes the MCP indexSample configuration:
{
"mcpServers": {
"Universal MCP Server": {
"command": "npx",
"args": ["-y", "@antonytm/mcp-all@latest"],
"transport": "stdio",
"environmentVariables": [
{
"name": "TRANSPORT",
"value": "stdio"
}
]
}
}
}
It supports stdio and streamable-http transports.
Released as:
TRANSPORT