Get started in three steps
Install mcpconfig and see your MCP configs and servers in a few minutes.
Step 1: Install mcpconfig
Install globally (recommended)
npm install --global @yash_pandit/mcpconfig
This gives you the mcpconfig command everywhere.Or run without installing
npx @yash_pandit/mcpconfig list-clients
npx @yash_pandit/mcpconfig list-servers
Use this to try it once or in scripts.
You need Node.js 16 or newer. Check with node --version.
Step 2: List your MCP configs
See which MCP config files exist on your system and where they are:
You get one line per config: app name, ✓ or ✗ (found or not), and the full path when found.
To see every known config location (including ones that don’t exist yet):
mcpconfig list-clients --all
Step 3: List all MCP servers (or add one)
See every MCP server from every found JSON config and Codex TOML in one table:
The table shows APP, SERVER, COMMAND, and ARGS.
To add a new MCP server to one or more configs interactively:
You select which apps to write to (↑/↓ move, Space toggle, Enter continue), then enter server name, command, and args. The server is written to every selected config (JSON or Codex TOML).
Next steps