MCPX is a Node.js CLI tool distributed as an npm package. There are two supported installation paths: installing directly from the GitHub repository (recommended — no local checkout required), or cloning the repository first and linking it globally. Both approaches produce the sameDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/davidpastorvicente/mcpx-cli/llms.txt
Use this file to discover all available pages before exploring further.
mcpx binary on your PATH.
Requirements
| Requirement | Minimum version |
|---|---|
| Node.js | >= 20.0.0 |
| npm | Bundled with Node.js |
| Operating system | macOS, Linux, Windows |
Install from GitHub (recommended)
This is the simplest option. npm downloads, builds, and installs MCPX in one step — no local checkout required. The repository defines aprepare script that compiles TypeScript to dist/ during installation.
Install globally from GitHub
Run the following command. npm fetches the repository, runs the
prepare
build script, and places mcpx on your PATH.Install from a local clone
Use this approach if you want to inspect or modify the source before installing.Install dependencies and build
The
npm install step also runs the prepare script which compiles
TypeScript into dist/. You must do this before linking — the global install
needs the compiled output to be present.Because npm links the local checkout in this install mode, the
dist/
directory must exist before the global link is created. Running npm install
triggers the prepare script automatically, so you do not need to run
npm run build separately.