We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/n-r-w/knowledgegraph-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
serve-docs.sh•280 B
#!/bin/bash
# Documentation server script
if [ -d "docs/api" ]; then
echo "📚 Starting documentation server on http://localhost:8080"
cd docs/api && python3 -m http.server 8080
else
echo "❌ Documentation not found. Run 'task docs:generate' first."
exit 1
fi