Installation
Prerequisites
MetaMCP requires Node.js 20 or later.
Check your version:
node --versionIf the output is below v20.0.0, upgrade Node.js before continuing. We recommend using nvm or the official installer at nodejs.org.
Run with npx (fastest)
No installation required. Run MetaMCP directly:
npx @mentu/metamcp --config .mcp.jsonThis downloads and executes the latest version of MetaMCP. It reads the config file and starts the meta-MCP server on stdio.
This is the recommended approach for most users. It always runs the latest version and requires no global install.
Install globally
If you prefer a persistent global install:
npm install -g @mentu/metamcpThen run:
metamcp --config .mcp.jsonGlobal install is useful when you run MetaMCP frequently and want to avoid the npx download on each invocation.
Install from source
Clone the repository and build locally:
git clone https://github.com/mentu-ai/metamcp.git
cd metamcp
npm ci
npm run buildRun the built version:
node dist/index.js --config .mcp.jsonBuilding from source is useful for development or running a specific commit.
Verify installation
Check that MetaMCP is available and reports the expected version:
metamcp --versionView all available CLI flags:
metamcp --helpIf metamcp is not found after a global install, ensure your npm global bin directory is in your PATH.
Next steps
- Quick Start to create a config file and make your first tool calls.