Netdata MCP Bridge - Node.js Implementation
This Node.js bridge converts MCP stdio communication to Netdata's MCP over WebSocket.
Requirements
- Node.js 14+
- ws library
Installation
The easiest way to set up the Node.js bridge is to use the included build script:
# Make the build script executable (if needed)
chmod +x build.sh
# Run the build script
./build.sh
The script will: 1. Check if Node.js is installed 2. Create a package.json file if it doesn't exist 3. Install the required ws dependency
Alternatively, you can set it up manually:
# Create a package.json file (optional)
npm init -y
# Install the WebSocket library
npm install ws --save
Usage
The script can be run directly as an executable (the shebang line will use the system's Node.js):
./nd-mcp.js ws://<ip>:19999/mcp
Or explicitly with Node.js:
node nd-mcp.js ws://<ip>:19999/mcp
Where <ip> is either localhost or the IP address where a Netdata instance is listening.
Example with Claude Desktop
To use this bridge with Claude Desktop:
- In Claude Desktop settings, configure the Custom Command option:
node /path/to/stdio-nodejs/nd-mcp.js ws://localhost:19999/mcp
- If your Netdata instance is running on a different machine, replace
localhostwith the appropriate IP address.
How It Works
The bridge: 1. Establishes a WebSocket connection to the specified Netdata MCP endpoint 2. Reads from standard input and sends to the WebSocket 3. Receives messages from the WebSocket and writes to standard output 4. Handles both directions simultaneously 5. Automatically reconnects if the connection is lost, with exponential backoff
Connection Reliability
This bridge implements robust connection handling:
- Automatic Reconnection: If the WebSocket connection is lost, the bridge will automatically attempt to reconnect
- Exponential Backoff: Reconnection attempts use exponential backoff with jitter to avoid overwhelming the server
- Message Queuing: Messages sent while disconnected are queued and delivered once reconnected
- Connection Status Logging: The bridge logs connection status to stderr for monitoring
- SIGINT Handling: Properly closes the WebSocket connection on CTRL+C
The reconnection algorithm starts with a 1-second delay and doubles the wait time with each attempt, up to a maximum of 60 seconds. Random jitter is added to prevent connection storms.
Protocol Compatibility
- Netdata MCP implements the JSON-RPC 2.0 protocol
- Messages that don't conform to the JSON-RPC 2.0 format are silently ignored
- The bridge passes messages directly without any modification