drio
Open app

MetaMCP MCP Server

Source

MCP Server MetaMCP manages all your other MCPs in one MCP.

Catalog onlyCatalog onlySTDIO

Overview

MetaMCP MCP Server is a proxy server that manages multiple MCP servers, allowing users to fetch configurations and route requests efficiently.

To use MetaMCP, install it manually by setting the METAMCP_API_KEY and running the command npx -y @metamcp/mcp-server-metamcp.

  • Compatible with any MCP client. - Multi-workspaces layer for easy switching between MCP configurations. - Dynamic GUI updates for MCP configurations. - Namespace isolation for joined MCPs.
  1. Managing multiple MCP servers from a single interface.
  2. Switching between different MCP configurations seamlessly.
  3. Aggregating tool lists from various MCP servers for easier access.

Add to your AI client

Use these steps to connect MetaMCP MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server-metamcp-metatool-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-metamcp-metatool-ai"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-server-metamcp-metatool-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-metamcp-metatool-ai"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-metamcp-metatool-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-metamcp-metatool-ai"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-metamcp-metatool-ai": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-metamcp-metatool-ai"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-metamcp-metatool-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-metamcp-metatool-ai"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-metamcp-metatool-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-metamcp-metatool-ai"
      ]
    }
  }
}

FAQ

Is MetaMCP compatible with all MCP clients?

Yes! It is designed to work with any MCP client.

How do I install MetaMCP?

You can install it manually by following the installation instructions provided in the documentation.

What is the purpose of the METAMCP_API_KEY?

It is required for authentication and can be obtained from the MetaMCP App’s API Keys page.7: