Troubleshooting
"npx: command not found"
Make sure Node.js (v18+) is installed:
bash
node --version
npm --versionInstall from nodejs.org if needed.
Tools not showing up
- Restart the app after editing the config file
- Check the config path — make sure you edited the right file
- Validate JSON — use a JSON validator to check for syntax errors
- Check logs — Claude Desktop and other apps may have logs showing connection errors
"calc-mcp: command not found"
If you run npx from a clone of the calc-mcp repository itself, npx may fail with:
sh: calc-mcp: command not foundnpx resolves the local project before the registry. The repository's own package.json points the calc-mcp binary at dist/index.js, which does not exist until the project is built. Either build it first:
bash
bun run buildOr run the command from any directory outside the repository:
bash
npx -y @coo-quack/calc-mcp@2.1.0Anywhere else this is not an issue. Projects that contain node_modules, and projects that depend on @coo-quack/calc-mcp, both run the published binary correctly.
Version info
To check the latest published version:
bash
npm view @coo-quack/calc-mcp versionStill stuck?
Open an issue on GitHub.