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 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 |
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 build