Fire in da houseTop Tip:Most people pay way too much for Perplexity, MidJourney, Runway, ChatGPT - but you can actually get all that for $15 instead of $225+ per month. And free to test!Fire in da houseCheck it out

mcp-server-metamcp

MCP.Pizza Chef: metatool-ai

MetaMCP MCP Server acts as a proxy that consolidates multiple MCP servers into a single unified interface. It fetches configurations for tools, prompts, and resources from the MetaMCP App and routes requests to the appropriate underlying MCP server. This enables centralized management and orchestration of diverse MCP servers, simplifying complex multi-server environments.

Use This MCP server To

Consolidate multiple MCP servers into one unified proxy Route tool and prompt requests to correct MCP servers Centralize configuration management for MCP servers Simplify multi-MCP server orchestration and monitoring Enable scalable MCP server deployments with proxying Aggregate diverse MCP resources under one endpoint

README

MetaMCP MCP Server

https://metamcp.com: The One MCP to manage all your MCPs

MetaMCP MCP Server is a proxy server that joins multiple MCP⁠ servers into one. It fetches tool/prompt/resource configurations from MetaMCP App⁠ and routes tool/prompt/resource requests to the correct underlying server.

smithery badge

MetaServer MCP server

MetaMCP App repo: https://github.com/metatool-ai/metatool-app

Installation

Installing via Smithery

Sometimes Smithery works (confirmed in Windsurf locally) but sometimes it is unstable because MetaMCP is special that it runs other MCPs on top of it. Please consider using manual installation if it doesn't work instead.

To install MetaMCP MCP Server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @metatool-ai/mcp-server-metamcp --client claude

Manual Installation

export METAMCP_API_KEY=<env>
npx -y @metamcp/mcp-server-metamcp@latest
{
  "mcpServers": {
    "MetaMCP": {
      "command": "npx",
      "args": ["-y", "@metamcp/mcp-server-metamcp@latest"],
      "env": {
        "METAMCP_API_KEY": "<your api key>"
      }
    }
  }
}

Usage

Using as a stdio server (default)

mcp-server-metamcp --metamcp-api-key <your-api-key>

Using as an SSE server

mcp-server-metamcp --metamcp-api-key <your-api-key> --transport sse --port 12006

With the SSE transport option, the server will start an Express.js web server that listens for SSE connections on the /sse endpoint and accepts messages on the /messages endpoint.

Using with Docker

When running the server inside a Docker container and connecting to services on the host machine, use the --use-docker-host option to automatically transform localhost URLs:

mcp-server-metamcp --metamcp-api-key <your-api-key> --transport sse --port 12006 --use-docker-host

This will transform any localhost or 127.0.0.1 URLs to host.docker.internal, allowing the container to properly connect to services running on the host.

Command Line Options

Options:
  --metamcp-api-key <key>       API key for MetaMCP (can also be set via METAMCP_API_KEY env var)
  --metamcp-api-base-url <url>  Base URL for MetaMCP API (can also be set via METAMCP_API_BASE_URL env var)
  --report                      Fetch all MCPs, initialize clients, and report tools to MetaMCP API
  --transport <type>            Transport type to use (stdio or sse) (default: "stdio")
  --port <port>                 Port to use for SSE transport (default: "12006")
  --require-api-auth            Require API key in SSE URL path
  --use-docker-host             Transform localhost URLs to use host.docker.internal (can also be set via USE_DOCKER_HOST env var)
  -h, --help                    display help for command

Environment Variables

  • METAMCP_API_KEY: API key for MetaMCP
  • METAMCP_API_BASE_URL: Base URL for MetaMCP API
  • USE_DOCKER_HOST: When set to "true", transforms localhost URLs to host.docker.internal for Docker compatibility

Development

# Install dependencies
npm install

# Build the application
npm run build

# Watch for changes
npm run watch

Highlights

  • Compatible with ANY MCP Client
  • Multi-Workspaces layer enables you to switch to another set of MCP configs within one-click.
  • GUI dynamic updates of MCP configs.
  • Namespace isolation for joined MCPs.

Architecture Overview

sequenceDiagram
    participant MCPClient as MCP Client (e.g. Claude Desktop)
    participant MetaMCP-mcp-server as MetaMCP MCP Server
    participant MetaMCPApp as MetaMCP App
    participant MCPServers as Installed MCP Servers in Metatool App

    MCPClient ->> MetaMCP-mcp-server: Request list tools
    MetaMCP-mcp-server ->> MetaMCPApp: Get tools configuration & status
    MetaMCPApp ->> MetaMCP-mcp-server: Return tools configuration & status

    loop For each listed MCP Server
        MetaMCP-mcp-server ->> MCPServers: Request list_tools
        MCPServers ->> MetaMCP-mcp-server: Return list of tools
    end

    MetaMCP-mcp-server ->> MetaMCP-mcp-server: Aggregate tool lists
    MetaMCP-mcp-server ->> MCPClient: Return aggregated list of tools

    MCPClient ->> MetaMCP-mcp-server: Call tool
    MetaMCP-mcp-server ->> MCPServers: call_tool to target MCP Server
    MCPServers ->> MetaMCP-mcp-server: Return tool response
    MetaMCP-mcp-server ->> MCPClient: Return tool response
Loading

Credits

mcp-server-metamcp FAQ

How does MetaMCP manage multiple MCP servers?
It acts as a proxy server that fetches configurations from the MetaMCP App and routes requests to the correct underlying MCP servers.
Can MetaMCP handle tool and prompt requests from different MCP servers?
Yes, it routes tool, prompt, and resource requests to the appropriate MCP server based on configuration.
Is MetaMCP compatible with all MCP servers?
MetaMCP is designed to work with MCP servers that follow the MCP protocol, enabling broad compatibility.
How do I install MetaMCP?
You can install it via Smithery or manually; manual installation is recommended if Smithery is unstable.
Does MetaMCP provide a single endpoint for multiple MCP servers?
Yes, it consolidates multiple MCP servers behind one unified proxy endpoint.
Where does MetaMCP get its configuration data?
It fetches tool, prompt, and resource configurations from the MetaMCP App repository.
Can MetaMCP improve scalability of MCP deployments?
Yes, by proxying multiple MCP servers, it enables scalable and manageable MCP environments.
Is MetaMCP open source?
Yes, the MetaMCP App and server are available on GitHub under the metatool-ai organization.