- Home
- MCP servers
- Process
Process
- typescript
0
GitHub Stars
typescript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"orkuhh-process-mcp-server": {
"command": "node",
"args": [
"/root/.openclaw/workspace/process-mcp-server/dist/index.js"
]
}
}
}This MCP server lets you manage OpenClaw background process sessions through a dedicated commands set. It exposes actions to list, inspect, monitor, control, and interact with running sessions, enabling you to automate and orchestrate long-running processes from a centralized MCP client.
How to use
You connect a client to the MCP server to manage process sessions. Once connected, you can list all active sessions, check detailed status information for a specific session, view output logs, terminate sessions, and interact with them by sending keystrokes or pasting text. Use the tool commands to perform these actions against any running session. Prepare your client to authenticate if required by your environment, then issue the corresponding tool calls to control the background processes.
How to install
Prerequisites you need before installing this MCP server are Node.js and npm. Ensure Node.js is installed and accessible in your environment.
# 1) Clone the repository
# (Replace with your actual repository URL)
git clone https://example.com/orga/process-mcp-server.git
cd process-mcp-server
# 2) Install dependencies
npm install
# 3) Build the project
npm run build
Integration with mcporter
To integrate with mcporter, add a server entry that points to the built MCP server executable. This configuration connects via the standard input/output transport.
{
"mcpServers": {
"process": {
"command": "node",
"args": ["/root/.openclaw/workspace/process-mcp-server/dist/index.js"]
}
}
}
Available tools
process_list
List all running background sessions.
process_status
Get detailed status of a session.
process_log
Get output log from a session.
process_kill
Terminate a running session.
process_send_keys
Send keystrokes to a session.
process_paste
Paste text into a session.