We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MichaelWeed/atlas-g-protocol'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
docker-entrypoint.shโข643 B
#!/bin/bash
set -e
# Atlas-G Protocol - Intelligent Entrypoint
# Switches between Web Portfolio mode and MCP Server mode based on environment.
if [ -n "$PORT" ]; then
echo "๐ Starting Portfolio Web Engine on port $PORT..."
# Run the FastAPI/Uvicorn application
exec python -m uvicorn backend.main:application --host 0.0.0.0 --port "$PORT"
else
if [ $# -gt 0 ]; then
echo "๐ Executing custom command: $@"
exec "$@"
else
echo "๐ Starting MCP Protocol Engine (stdio)..."
# Run the MCP server directly for Glama/Registry inspection
exec python -m backend.mcp_server
fi
fi