We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/pam-supastellar/cashchat-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.env.example•1.27 KiB
# CashChat MCP Server Configuration
# Required: Your CashChat API key
# Get your API key from https://cashchat.supastellar.dev
CASHCHAT_API_KEY=your_cashchat_api_key_here
# Optional: CashChat API endpoint (defaults to production)
# CASHCHAT_API_URL=https://cashchat.supastellar.dev/api
# Server Configuration
# Port for HTTP server (default: 3000)
PORT=3000
# Public server URL (used for OAuth redirects)
# For local development:
SERVER_URL=http://localhost:3000
# For production (replace with your domain):
# SERVER_URL=https://cashchat.supastellar.dev
# OAuth Configuration
# OAuth client ID (default: cashchat-mcp-server)
OAUTH_CLIENT_ID=cashchat-mcp-server
# Optional: OAuth client secret for added security
# Generate with: openssl rand -hex 32
# OAUTH_CLIENT_SECRET=your_random_secret_here
# PayloadCMS URL (required for user authentication)
PAYLOAD_URL=https://cashchat.supastellar.dev
# Google OAuth Configuration (optional - enables "Sign in with Google" button)
# Get credentials from: https://console.cloud.google.com/apis/credentials
# GOOGLE_CLIENT_ID=your_google_client_id.apps.googleusercontent.com
# GOOGLE_CLIENT_SECRET=your_google_client_secret
# Session Secret (required for secure sessions)
# Generate with: openssl rand -hex 32
SESSION_SECRET=your_random_session_secret_here