Stats
Actions
Tags
From aming-claw
Connects to a remote agent/governance framework for managing distributed AI agent workflows, task orchestration, and memory-backed execution. Requires a running governance server.
Copy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"aming-claw": {
"type": "http",
"command": "python3",
"args": [
"-m",
"agent.mcp.server",
"--project",
"aming-claw",
"--workers",
"0",
"--governance-url",
"http://localhost:40000"
],
"url": "http://localhost:40000",
"env": {
"PYTHONPATH": "${CLAUDE_PLUGIN_ROOT}",
"MANAGER_URL": "http://127.0.0.1:40101",
"GOVERNANCE_URL": "http://localhost:40000",
"MEMORY_BACKEND": "docker",
"PYTHONUNBUFFERED": "1",
"PYTHONDONTWRITEBYTECODE": "1"
}
}
}
}Server configuration and connection parameters
python3http://localhost:40000${CLAUDE_PLUGIN_ROOT}Command-line arguments passed to the server process
Environment variables set when the server starts
PYTHONPATH=${CLAUDE_PLUGIN_ROOT}MANAGER_URL=http://127.0.0.1:40101GOVERNANCE_URL=http://localhost:40000MEMORY_BACKEND=dockerPYTHONUNBUFFERED=1PYTHONDONTWRITEBYTECODE=1npx claudepluginhub amingclawdev/aming-claw --plugin aming-claw