We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mcpmessenger/LangchainMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
start.sh•185 B
#!/bin/sh
# Startup script for Cloud Run
# Reads PORT from environment (set by Cloud Run) or defaults to 8000
PORT=${PORT:-8000}
exec uvicorn src.main:app --host 0.0.0.0 --port $PORT