kill_process
Terminate a specified Node.js process by its ID using the debugging and process management capabilities of the Node.js Debugger MCP Server.
Instructions
Kill a managed Node.js process
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pid | Yes | Process ID to kill |
Input Schema (JSON Schema)
{
"properties": {
"pid": {
"description": "Process ID to kill",
"type": "number"
}
},
"required": [
"pid"
],
"type": "object"
}