We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ozipi/brainloop-mcp-server-v2'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# BRAINLOOP MCP Server - Railway Production Environment
# Copy these environment variables to Railway dashboard
# Google OAuth Configuration (replace Reddit OAuth)
# Get these from Google Cloud Console OAuth 2.0 client
GOOGLE_CLIENT_ID=your_google_client_id_here
GOOGLE_CLIENT_SECRET=your_google_client_secret_here
# JWT Secret for MCP token signing
# Generate with: openssl rand -base64 32
JWT_SECRET=your-super-secure-jwt-secret-key-here-make-it-long-and-random
# Server Configuration
PORT=3000
# Production URLs - Railway will provide the domain
OAUTH_ISSUER=https://mcp.brainloop.cc
REDIRECT_URL=https://mcp.brainloop.cc/oauth/google/callback
# BRAINLOOP API Configuration
BRAINLOOP_API_URL=https://brainloop.cc/api
BRAINLOOP_DATABASE_URL=your_database_connection_string
# Application Identity
APP_NAME=BRAINLOOP MCP Server
APP_VERSION=1.0.0
APP_USER_AGENT=BrainloopMCP:v1.0.0 (by BRAINLOOP)
# Optional - Logging
LOG_LEVEL=info
DEBUG=false
# Railway specific
NODE_ENV=production