Skip to main content
Glama
setup.ps11.07 kB
# Setup script for Graphiti MCP Server (PowerShell) Write-Host "Setting up Graphiti MCP Server..." -ForegroundColor Green # Check if uv is installed if (Get-Command uv -ErrorAction SilentlyContinue) { Write-Host "Using uv to install dependencies..." -ForegroundColor Yellow uv sync } else { Write-Host "uv not found. Using pip instead..." -ForegroundColor Yellow pip install -e . } # Check if .env exists if (-not (Test-Path .env)) { Write-Host "Creating .env file from env.example..." -ForegroundColor Yellow Copy-Item env.example .env Write-Host "Please edit .env and add your OPENAI_API_KEY" -ForegroundColor Cyan } else { Write-Host ".env file already exists" -ForegroundColor Green } Write-Host "" Write-Host "Setup complete!" -ForegroundColor Green Write-Host "" Write-Host "Next steps:" -ForegroundColor Cyan Write-Host "1. Edit .env and add your OPENAI_API_KEY" Write-Host "2. Run 'docker compose up' to start Neo4j and MCP server" Write-Host " OR run 'uv run graphiti_mcp_server.py --transport sse' to start just the server"

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/apexneural-hansika/graphiti_mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server