Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
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.
npx claudepluginhub amingclawdev/aming-claw --plugin aming-clawCopy 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": "/Users/yingzhang/aming-claw/aming-claw",
"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/Users/yingzhang/aming-claw/aming-clawCommand-line arguments passed to the server process
Environment variables set when the server starts
PYTHONPATH=/Users/yingzhang/aming-claw/aming-clawMANAGER_URL=http://127.0.0.1:40101GOVERNANCE_URL=http://localhost:40000MEMORY_BACKEND=dockerPYTHONUNBUFFERED=1PYTHONDONTWRITEBYTECODE=1Share bugs, ideas, or general feedback.