Stats
Actions
Tags
From claude-soma
Local Python-based MCP server for orchestrating project workflows. Manages project structures and orchestration database via configured environment paths.
Copy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"project-orchestrator": {
"command": "/opt/claude-soma/.venv/bin/python",
"args": [
"-m",
"claude_soma.mcp_servers.project_orchestrator.server"
],
"env": {
"HERMES_ORCH_DB": "/opt/claude-soma/registry.sqlite",
"HERMES_PROJECTS_ROOT": "/home/ubuntu/projects"
}
}
}
}Server configuration and connection parameters
/opt/claude-soma/.venv/bin/pythonCommand-line arguments passed to the server process
Environment variables set when the server starts
HERMES_ORCH_DB=/opt/claude-soma/registry.sqliteHERMES_PROJECTS_ROOT=/home/ubuntu/projectsnpx claudepluginhub techfreakworm/claude-soma