Process MCP Server
Click on "Deploy 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 MCP Serverlist all my active background sessions"
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 Server
MCP server for managing background process sessions via the OpenClaw process tool.
Tools
Tool | Description |
| List all running background sessions |
| Get detailed status of a session |
| Get output log from a session |
| Terminate a running session |
| Send keystrokes to a session |
| Paste text into a session |
Related MCP server: Tmux MCP Server
Usage
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
import { CallToolRequestSchema } from "@modelcontextprotocol/sdk/types.js";
const server = new McpServer({
name: "process-mcp-server",
version: "1.0.0"
});
// Register tools...
const transport = new StdioServerTransport();
server.connect(transport);Integration with mcporter
Add to your mcporter config:
{
"mcpServers": {
"process": {
"command": "node",
"args": ["/root/.openclaw/workspace/process-mcp-server/dist/index.js"]
}
}
}Build
cd process-mcp-server
npm install
npm run buildThis server cannot be deployed
Maintenance
Related MCP Connectors
Deploy, monitor, and manage your OpenClaw AI assistants via natural language.
Securely control computers you explicitly pair through files, terminals, processes, screenshots, desktop UI/input, clipboard, browser automation, diagnostics, and document tools.
Manage portable AI agent playbooks, Agent Skills, MCP configurations, personas, and memory.
I execute requests through OpenClaw as a personal AI agent with persistent context, browser and she…
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables comprehensive tmux session management through MCP, allowing users to list sessions, send commands, set up automated messaging timers, and control tmux processes directly from Claude Desktop. Provides both real-time session monitoring and automated workflow features like exit/continue cycles.2MIT
- AlicenseAqualityDmaintenanceEnables programmatic control over tmux terminal sessions for SSH access, command execution, and terminal automation. Supports creating sessions, sending commands, capturing output, and managing multiple panes for interactive debugging and monitoring.88 npmMIT
- FlicenseNot gradedqualityDmaintenanceProvides stateful, interactive terminal access for LLMs to spawn and maintain persistent processes like SSH sessions, debuggers, and REPLs with continuous input/output interaction across commands.8-
- AlicenseNot gradedqualityDmaintenanceProvides tools for executing shell commands both synchronously and asynchronously with real-time output streaming and process management capabilities. It enables users to start background tasks, monitor progress, and manage long-running processes via Stdio or HTTP transports.221 npmMIT