We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/satheeshds/gbp-review-agent'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Environment variables for Google Business Profile Review MCP Server
# Google OAuth 2.0 credentials
GOOGLE_CLIENT_ID=your_google_client_id_here
GOOGLE_CLIENT_SECRET=your_google_client_secret_here
GOOGLE_REDIRECT_URI=http://localhost:3000/auth/callback
# Server configuration
PORT=3000
HOST=localhost
# MCP Server settings
MCP_SERVER_NAME=google-business-review-mcp-server
MCP_SERVER_VERSION=1.0.0
# Logging level (debug, info, warn, error)
LOG_LEVEL=info
# Rate limiting
RATE_LIMIT_REQUESTS_PER_MINUTE=60
# Session settings (optional - for stateful sessions)
SESSION_SECRET=your_session_secret_here
SESSION_TIMEOUT_MINUTES=60