graphiti/conductor.json
Daniel Chalef ff937d9282 Add Conductor configuration for workspace setup
- Add conductor.json with setup, run (REST API), and run-mcp scripts
- Add conductor-setup.sh for automated dependency installation
- Support both FastAPI server and MCP server development workflows
- Include environment setup and initial code formatting

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-28 10:21:34 -07:00

8 lines
No EOL
319 B
JSON

{
"scripts": {
"setup": "./conductor-setup.sh",
"run": "cd server && uv run uvicorn graph_service.main:app --reload --port $CONDUCTOR_PORT",
"run-mcp": "cd mcp_server && uv run python graphiti_mcp_server.py --transport sse --use-custom-entities"
},
"runScriptMode": "nonconcurrent"
}