We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/startreedata/mcp-pinot'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Pinot Quickstart Setup (Default - uses built-in defaults if not specified)
PINOT_CONTROLLER_URL=http://localhost:9000
PINOT_BROKER_URL=http://localhost:8000
PINOT_USE_MSQE=true
# Pinot Enterprise/Cloud Setup
# PINOT_CONTROLLER_URL=https://your-pinot-controller-url
# PINOT_BROKER_URL=https://broker.your-pinot-host:443
# PINOT_USE_MSQE=true
# Alternative: Individual broker configs (for advanced use cases)
# PINOT_CONTROLLER_URL=http://localhost:9000
# PINOT_BROKER_HOST=localhost
# PINOT_BROKER_PORT=8000
# PINOT_BROKER_SCHEME=http
# PINOT_USE_MSQE=true
# Override example: URL with specific port override
# PINOT_BROKER_URL=https://broker.your-pinot-host:443
# PINOT_BROKER_PORT=8099 # This will override the port from the URL
# PINOT_USERNAME="your-username"
# PINOT_PASSWORD="your-password"
# PINOT_TOKEN="your-pinot-token-used-in-HTTP-Authorization-header"
# PINOT_DATABASE=""
# Timeout configurations (in seconds)
PINOT_REQUEST_TIMEOUT=60
PINOT_CONNECTION_TIMEOUT=60
PINOT_QUERY_TIMEOUT=60
# Server configuration (optional)
MCP_SERVER_HOST=0.0.0.0
MCP_SERVER_PORT=8080
# Logging level
LOG_LEVEL=INFO