diff --git a/README.md b/README.md index 5740434..4f9b9db 100644 --- a/README.md +++ b/README.md @@ -71,13 +71,21 @@ On Windows: `%APPDATA%/Claude/claude_desktop_config.json` { "mcpServers": { "mcp-server-commands": { - // works b/c of shebang in index.js - "command": "/path/to/mcp-server-commands/build/index.js" + "command": "node", + "args": [ + "/path/to/mcp-server-commands/build/index.js", + "--verbose" + ], + "env": { + "NODE_PATH": "/path/to/mcp-server-commands/node_modules" + } } } } ``` +Note: Replace `/path/to/mcp-server-commands` with your actual path to the repository. + ### Logging Claude Desktop app writes logs to `~/Library/Logs/Claude/mcp-server-mcp-server-commands.log`