MetaMCP▌

by metatool-ai
MetaMCP centralizes AI services for secure API key management and unified access, simplifying interactions across multip
Centralizes management of multiple AI services, providing secure API key handling and unified access for streamlined interactions across diverse platforms.
best for
- / General purpose MCP workflows
capabilities
what it does
Centralizes management of multiple AI services, providing secure API key handling and unified access for streamlined interactions across diverse platforms.
about
MetaMCP is a community-built MCP server published by metatool-ai that provides AI assistants with tools and capabilities via the Model Context Protocol. MetaMCP centralizes AI services for secure API key management and unified access, simplifying interactions across multip It is categorized under productivity, developer tools.
how to install
You can install MetaMCP in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
license
Apache-2.0
MetaMCP is released under the Apache-2.0 license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
readme
MetaMCP MCP Server
🚨 DEPRECATED PACKAGE WARNING 🚨
This local proxy package is deprecated in MetaMCP's 2.0 all-in-one architecture.
Please checkout https://github.com/metatool-ai/metamcp for more details.
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.
<a href="https://glama.ai/mcp/servers/0po36lc7i6"> <img width="380" height="200" src="https://glama.ai/mcp/servers/0po36lc7i6/badge" alt="MetaServer MCP server" /> </a>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 as a Streamable HTTP server
mcp-server-metamcp --metamcp-api-key <your-api-key> --transport streamable-http --port 12006
With the Streamable HTTP transport option, the server will start an Express.js web server that handles HTTP requests. You can optionally use --stateless mode for stateless operation.
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.
Configuring stderr handling
For STDIO transport, you can control how stderr is handled from child MCP processes:
# Use inherit to see stderr output from child processes
mcp-server-metamcp --metamcp-api-key <your-api-key> --stderr inherit
# Use pipe to capture stderr (default is ignore)
mcp-server-metamcp --metamcp-api-key <your-api-key> --stderr pipe
# Or set via environment variable
METAMCP_STDERR=inherit mcp-server-metamcp --metamcp-api-key <your-api-key>
Available stderr options:
ignore(default): Ignore stderr output from child processesinherit: Pass through stderr from child processes to the parentpipe: Capture stderr in a pipe for processingoverlapped: Use overlapped I/O (Windows-specific)
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, sse, or streamable-http) (default: "stdio")
--port <port> Port to use for SSE or Streamable HTTP transport, defaults to 12006 (default: "12006")
--require-api-auth Require API key in SSE or Streamable HTTP URL path
--stateless Use stateless mode for Streamable HTTP transport
--use-docker-host Transform localhost URLs to use host.docker.internal (can also be set via USE_DOCKER_HOST env var)
--stderr <type> Stderr handling for STDIO transport (overlapped, pipe, ignore, inherit) (default: "ignore")
-h, --help display help for command
Environment Variables
METAMCP_API_KEY: API key for MetaMCPMETAMCP_API_BASE_URL: Base URL for MetaMCP APIUSE_DOCKER_HOST: When set to "true", transforms localhost URLs to host.docker.internal for Docker compatibilityMETAMCP_STDERR: Stderr handling for STDIO transport (overlapped, pipe, ignore, inherit). Defaults to "ignore"
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
Credits
- Inspirations and some code (refactored in this project) from https://github.com/adamwattis/mcp-proxy-server/
FAQ
- What is the MetaMCP MCP server?
- MetaMCP is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
- How do MCP servers relate to agent skills?
- Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
- How are reviews shown for MetaMCP?
- This profile displays 31 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.4 out of 5—verify behavior in your own environment before production use.
Ratings
4.4★★★★★31 reviews- ★★★★★Fatima Agarwal· Dec 24, 2024
We evaluated MetaMCP against two servers with overlapping tools; this profile had the clearer scope statement.
- ★★★★★Neel Jackson· Dec 16, 2024
Useful MCP listing: MetaMCP is the kind of server we cite when onboarding engineers to host + tool permissions.
- ★★★★★Michael Wang· Nov 23, 2024
I recommend MetaMCP for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
- ★★★★★Kofi Jackson· Nov 15, 2024
MetaMCP is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
- ★★★★★Ishan Kim· Nov 7, 2024
MetaMCP is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
- ★★★★★Nikhil Desai· Oct 26, 2024
MetaMCP is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
- ★★★★★Evelyn Agarwal· Oct 14, 2024
MetaMCP reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
- ★★★★★Arjun Desai· Oct 6, 2024
MetaMCP is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
- ★★★★★Ganesh Mohane· Sep 5, 2024
Strong directory entry: MetaMCP surfaces stars and publisher context so we could sanity-check maintenance before adopting.
- ★★★★★Mei Gupta· Sep 5, 2024
According to our notes, MetaMCP benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
showing 1-10 of 31