loading…
Search for a command to run...
loading…
Enables interaction with the hosted PacedLoop API to manage workflows and monitor process runs. It provides tools for workflow CRUD operations, run execution ma
Enables interaction with the hosted PacedLoop API to manage workflows and monitor process runs. It provides tools for workflow CRUD operations, run execution management, and access to detailed performance analytics within MCP-capable clients.
Standalone MCP server for the hosted PacedLoop API.
This package is for users who want PacedLoop tools inside an MCP-capable client without running the full PacedLoop app locally.
Hosted default:
https://www.pacedloop.com
npm install
export PACEDLOOP_BASE_URL=https://www.pacedloop.com
export PACEDLOOP_API_TOKEN=your_pacedloop_token
PowerShell:
$env:PACEDLOOP_BASE_URL="https://www.pacedloop.com"
$env:PACEDLOOP_API_TOKEN="your_pacedloop_token"
npm start
Use this process definition in your MCP client configuration:
Command:
npm
Args:
start
Working directory:
/path/to/pacedloop-mcp-server
Environment:
PACEDLOOP_BASE_URL=https://www.pacedloop.com
PACEDLOOP_API_TOKEN=your_pacedloop_token
If your MCP client supports launching a script directly, use:
Command:
node
Args:
/path/to/pacedloop-mcp-server/bin/pacedloop-mcp-server.mjs
OpenClaw/NemoClaw config shapes can vary by version, but this is the command block you want to represent:
{
"command": "npm",
"args": ["start"],
"cwd": "/path/to/pacedloop-mcp-server",
"env": {
"PACEDLOOP_BASE_URL": "https://www.pacedloop.com",
"PACEDLOOP_API_TOKEN": "your_pacedloop_token"
}
}
If your OpenClaw build expects direct script execution, use:
{
"command": "node",
"args": ["/path/to/pacedloop-mcp-server/bin/pacedloop-mcp-server.mjs"],
"env": {
"PACEDLOOP_BASE_URL": "https://www.pacedloop.com",
"PACEDLOOP_API_TOKEN": "your_pacedloop_token"
}
}
From the parent directory:
cd pacedloop-mcp-server
git init
git add .
git commit -m "Initial standalone PacedLoop MCP server"
Then create a new GitHub repository and push:
git remote add origin [email protected]:YOUR_ORG_OR_USER/pacedloop-mcp-server.git
git branch -M main
git push -u origin main
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"pacedloop-mcp-server": {
"command": "npx",
"args": []
}
}
}