Skip to main content
To use the mcpconfig command from any directory:
npm install --global @yash_pandit/mcpconfig
Then run:
mcpconfig list-clients
mcpconfig list-servers
mcpconfig add-server

Run with npx

You can run mcpconfig without installing it globally:
npx @yash_pandit/mcpconfig list-clients
npx @yash_pandit/mcpconfig list-servers
npx @yash_pandit/mcpconfig add-server
This is useful for a one-off run or in scripts.

Install from source

To build and run from the repository:
1

Clone and install dependencies

git clone https://github.com/YashPandit4u/mcpconfig.git
cd mcpconfig
npm install
2

Build

npm run build
TypeScript is compiled to dist/.
3

Use the CLI

Option A — link globally so mcpconfig is available everywhere:
npm link
Option B — run the built CLI directly:
npm start
or:
node dist/cli.js

Requirements

  • Node.js 16 or newer
Check your version:
node --version