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
# =============================================================================
# Apache Pinot MCP Server Environment Configuration
# =============================================================================
# Copy this file to .env and update the values according to your setup
# =============================================================================
# Pinot Database Configuration
# =============================================================================
# Pinot Controller URL (required)
PINOT_CONTROLLER_URL=http://localhost:9000
# Pinot Broker Configuration
# Option 1: Use a single broker URL (recommended)
PINOT_BROKER_URL=http://localhost:8000
# Option 2: Use individual broker settings (overrides PINOT_BROKER_URL if set)
# PINOT_BROKER_HOST=localhost
# PINOT_BROKER_PORT=8000
# PINOT_BROKER_SCHEME=http
# Pinot Authentication (optional)
# PINOT_USERNAME=your-username
# PINOT_PASSWORD=your-password
# PINOT_TOKEN=your-token
# Pinot Database Configuration
# PINOT_DATABASE=
# Pinot MSQE Configuration
PINOT_USE_MSQE=false
# Pinot Timeout Settings (in seconds)
PINOT_REQUEST_TIMEOUT=60
PINOT_CONNECTION_TIMEOUT=60
PINOT_QUERY_TIMEOUT=60
# =============================================================================
# MCP Server Configuration
# =============================================================================
# Server Transport (http, stdio)
MCP_TRANSPORT=http
# Server Host and Port
MCP_HOST=0.0.0.0
MCP_PORT=8080
# SSL Configuration (optional)
# MCP_SSL_KEYFILE=/path/to/private.key
# MCP_SSL_CERTFILE=/path/to/certificate.crt
# =============================================================================
# OAuth Authentication Configuration
# =============================================================================
# Enable OAuth authentication
OAUTH_ENABLED=false
# OAuth Client Configuration
# OAUTH_CLIENT_ID=
# OAUTH_CLIENT_SECRET=
# OAUTH_BASE_URL=http://localhost:8000
# # OAuth Endpoints
# OAUTH_AUTHORIZATION_ENDPOINT=
# OAUTH_TOKEN_ENDPOINT=
# OAUTH_JWKS_URI=
# OAUTH_ISSUER=
# OAUTH_AUDIENCE=
# OAuth Extra Parameters (JSON format)
# OAUTH_EXTRA_AUTH_PARAMS={"param1": "value1", "param2": "value2"}