Skip to main content
Glama
run-web-ui.ps11.02 kB
# Run Web UI Server for Graphiti MCP Write-Host "========================================" -ForegroundColor Cyan Write-Host "Graphiti MCP - Web UI Server" -ForegroundColor Cyan Write-Host "========================================" -ForegroundColor Cyan Write-Host "" # Check if .env file exists if (-not (Test-Path ".env")) { Write-Host "Error: .env file not found!" -ForegroundColor Red Write-Host "Please create a .env file with your configuration." -ForegroundColor Yellow Write-Host "See env.example for reference." -ForegroundColor Yellow exit 1 } # Try port 8081 first, fallback to 8082 if needed $port = 8081 if ($args.Count -gt 0) { $port = [int]$args[0] } Write-Host "Starting Web UI Server on http://localhost:$port" -ForegroundColor Green Write-Host "Open your browser and navigate to: http://localhost:$port" -ForegroundColor Green Write-Host "" Write-Host "Press Ctrl+C to stop the server" -ForegroundColor Yellow Write-Host "" # Run the web UI server python web_ui_server.py $port

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