- 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>
8 lines
No EOL
319 B
JSON
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"
|
|
} |