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
# Cloudflare Workers Configuration for CashChat MCP Server
name = "cashchat-mcp"
main = "src/worker.ts"
compatibility_date = "2024-01-01"
# Environment variables (set these using wrangler secrets)
# wrangler secret put CASHCHAT_API_KEY
# wrangler secret put OAUTH_CLIENT_SECRET
[vars]
SERVER_URL = "https://cashchat.supastellar.dev"
OAUTH_CLIENT_ID = "cashchat-mcp-server"
CASHCHAT_API_URL = "https://cashchat.supastellar.dev/api"
# For development
[env.dev]
vars = { SERVER_URL = "http://localhost:8787" }
# Custom domain configuration (uncomment and configure after deployment)
# routes = [
# { pattern = "cashchat.supastellar.dev/*", zone_name = "supastellar.dev" }
# ]
# KV namespace for token storage (create with: wrangler kv:namespace create "TOKENS")
# [[kv_namespaces]]
# binding = "TOKENS"
# id = "your-kv-namespace-id"