process-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@process-mcpstart npm run dev in ./current-project"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
process-mcp
A local MCP (Model Context Protocol) server for managing background processes.
process-mcp lets AI assistants and other MCP clients start, stop, monitor, and query long-running shell commands without blocking the conversation. Instead of waiting for a command to finish, clients can start it in the background and receive a notification when it exits.
Features
Start background processes with custom arguments, working directory, and environment variables
Stop processes gracefully with SIGTERM or forcefully with SIGKILL
Query real-time status and retrieve recent log output
List all managed processes and resolve their system PIDs
Receive
process/exitnotifications when a background process terminatesShort, friendly process IDs via
nanoid(6 characters)Strict input validation with
zodRuns over stdio — no HTTP or SSE ports required
Related MCP server: MCP Background Job Server
Installation
Requires Bun.
bun install
bun run buildTo run the server directly during development:
bun run devTo run the compiled server:
bun run startConfiguration
Add process-mcp to your MCP client configuration. For opencode, edit ~/.config/opencode/opencode.json:
{
"mcpServers": {
"process-mcp": {
"command": "bun",
"args": [
"run",
"/path/to/process-mcp/dist/index.js"
]
}
}
}Adjust the absolute path to match your local clone location.
Tools Reference
start
Start a background process.
Parameters:
Name | Type | Required | Description |
| string | yes | Executable or command to run |
| string[] | no | Arguments passed to the command |
| string | no | Working directory for the process |
| record | no | Extra environment variables |
| boolean | no | Send a |
Example response:
{
"id": "a1b2c3",
"pid": 12345,
"status": "running"
}stop
Stop a managed process.
Parameters:
Name | Type | Required | Description |
| string | yes | Process ID returned by |
| boolean | no | Use SIGKILL instead of SIGTERM (default: |
Example response:
{
"id": "a1b2c3",
"pid": 12345,
"status": "stopped"
}get-status
Get the current status of a process.
Parameters:
Name | Type | Required | Description |
| string | yes | Process ID |
Returns: "running" | "stopped" | "exited" | "crashed" | "not-exists"
get-log
Retrieve the stdout/stderr log of a process.
Parameters:
Name | Type | Required | Description |
| string | yes | Process ID |
| number | no | Number of recent log lines to return |
Example response:
{
"lines": [
"Build started...",
"Compiled 42 files",
"Build finished"
]
}list
List all managed processes.
Parameters: none
Example response:
{
"processes": [
{ "id": "a1b2c3", "pid": 12345, "status": "running" },
{ "id": "d4e5f6", "pid": null, "status": "exited" }
]
}get-pid
Get the system PID of a managed process.
Parameters:
Name | Type | Required | Description |
| string | yes | Process ID |
Returns: PID number or null
Notification
When a process is started with notifyOnExit: true, the server sends a process/exit notification once the process terminates. The notification payload includes the process ID and final status.
This allows clients such as opencode to resume a conversation after a long-running task completes, without polling for status.
Development
Run the test suite:
bun testBuild the project:
bun run buildRun the server from source:
bun run devLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Kruceo/process-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server