https://github.com/metatool-ai/metatool-app
https://github.com/metatool-ai/metatool-app
Last synced: about 12 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/metatool-ai/metatool-app
- Owner: metatool-ai
- License: agpl-3.0
- Created: 2025-01-22T11:58:52.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-04-09T05:26:36.000Z (7 days ago)
- Last Synced: 2025-04-12T08:14:25.881Z (4 days ago)
- Language: TypeScript
- Size: 8.39 MB
- Stars: 153
- Watchers: 4
- Forks: 22
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-mcp-servers - MetaMCP - MetaMCPは、GUIでMCP接続を管理する統合ミドルウェアMCPサーバーです。 (サーバー実装 / 🔗 <a name="aggregators"></a>アグリゲーター)
README
# MetaMCP (Unified middleware MCP to manage all your MCPs)
[](https://discord.gg/mNsyat7mFX)
https://metamcp.com (Cloud version online now and available for free)
MetaMCP is "the One" middleware MCP to manage all your MCPs. It uses a GUI fullstack app (this repo) and a local MCP proxy to achieve this. (see our latest npm repo [mcp-server-metamcp](https://github.com/metatool-ai/mcp-server-metamcp))
A few feature highlights:
- GUI app to manage multiple MCP server integrations all together.
- Support ANY MCP clients (e.g., Claude Desktop, Cursor, etc.) because MetaMCP is a MCP server.
- Support prompts, resources, tools under MCP.
- Support multi-workspace: e.g., activate a workspace of DB1 or switch to DB2 in another workspace, preventing polluting context of DB1 to your MCP Client.
- Tool level toggle on/offThe app is also self hostable, free and open source. There is also a cloud version. You can try how this app works using cloud version but I actually encourage you to self host if you are familiar with docker: it will provide unlimited access with lower latency, full private operations on your end.
Check out demo videos at https://metamcp.com/. Here is an overview screenshot.

## Verified Platform
- [x] Windows (after MCP official typescript SDK 1.8.0, which we updated accordingly, it works) https://github.com/metatool-ai/metatool-app/issues/15
- [x] Mac
- [x] Linux## Installation
To get instantly started with cloud version visit https://metamcp.com/.
To get started with this self hostable version of MetaMCP App, the eastiest way is to clone the repository and use Docker Compose to run it.```bash
git clone https://github.com/metatool-ai/metatool-app.git
cd metatool-app
cp example.env .env
docker compose up --build -d
```Then open http://localhost:12005 in your browser to open MetaMCP App.
It is recommended to have npx (node.js based mcp) and uvx (python based mcp) installed globally.
To install uv check: https://docs.astral.sh/uv/getting-started/installation/You also need a MCP Client to connect to `@metamcp/mcp-server-metamcp`. For example if you are using [Claude Desktop](https://modelcontextprotocol.io/quickstart/user), the config json may look like this:
```json
{
"mcpServers": {
"MetaMCP": {
"command": "npx",
"args": ["-y", "@metamcp/mcp-server-metamcp@latest"],
"env": {
"METAMCP_API_KEY": "",
"METAMCP_API_BASE_URL": "http://localhost:12005"
}
}
}
}
```For Cursor, env vars aren't easy to get typed in so you may use args instead
```bash
npx -y @metamcp/mcp-server-metamcp@latest --metamcp-api-key --metamcp-api-base-url
```You can get the API key from the MetaMCP App's API Keys page (self hosted available).
## Architecture Overview
Note that prompts and resources are also covered similar to tools.
```mermaid
sequenceDiagram
participant MCPClient as MCP Client (e.g., Claude Desktop)
participant MetaMCPMCP as MetaMCP MCP Server
participant MetaMCPApp as MetaMCP App
participant MCPServers as Installed MCP Servers in MetaMCP AppMCPClient ->> MetaMCPMCP: Request list tools
MetaMCPMCP ->> MetaMCPApp: Get tools configuration & status
MetaMCPApp ->> MetaMCPMCP: Return tools configuration & statusloop For each listed MCP Server
MetaMCPMCP ->> MCPServers: Request list_tools
MCPServers ->> MetaMCPMCP: Return list of tools
endMetaMCPMCP ->> MetaMCPMCP: Aggregate tool lists
MetaMCPMCP ->> MCPClient: Return aggregated list of toolsMCPClient ->> MetaMCPMCP: Call tool
MetaMCPMCP ->> MCPServers: call_tool to target MCP Server
MCPServers ->> MetaMCPMCP: Return tool response
MetaMCPMCP ->> MCPClient: Return tool response
```## License
GNU AGPL v3
## Credits
- (Deprecated) Demo video uses MCP Client [5ire](https://5ire.app/)