Back to Integrations
NPM Command Runner
Execute npm and npx commands.
Last updated: 1/27/2026
README
# project-npm MCP Server
Server to call npm and npx command from LLM
This is a TypeScript-based MCP server that implements a simple npm system.
- Executes `npm` and `npx` commands
## Development
Install dependencies:
```bash
npm install
```
Build the server:
```bash
npm run build
```
For development with auto-rebuild:
```bash
npm run watch
```
## Installation
To use with Claude Desktop, add the server config:
On MacOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
On Windows: `%APPDATA%/Claude/claude_desktop_config.json`
```json
{
"mcpServers": {
"project-npm": {
"command": "/path/to/project-npm/build/index.js"
}
}
}
```
Installation
Add this MCP to your configuration:
{
"mcpServers": {
"npm-command-runner": {
// See GitHub repository for configuration
}
}
}See the GitHub repository for full installation instructions.