We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Marholoubek/health_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
config.example.yaml•1.76 kB
# Health MCP Server Configuration
# Copy this file to config.yaml and fill in your credentials
#
# Each adapter is optional - only configure the ones you want to use.
# Adapters are automatically enabled when their credentials are configured.
# You can also explicitly enable/disable with: enabled: true/false
# =============================================================================
# Whoop API Configuration
# Get your credentials from: https://developer.whoop.com/
# =============================================================================
whoop:
client_id: "your_client_id_here"
client_secret: "your_client_secret_here"
redirect_uri: "http://localhost:8787/callback"
# enabled: true # Optional: auto-enabled if credentials are present
# =============================================================================
# Strava API Configuration
# Get your credentials from: https://www.strava.com/settings/api
# =============================================================================
strava:
client_id: "your_client_id_here"
client_secret: "your_client_secret_here"
redirect_uri: "http://localhost:8787/callback"
# enabled: true # Optional: auto-enabled if credentials are present
# =============================================================================
# OAuth Server Settings (shared by all adapters)
# =============================================================================
oauth:
port: 8787
host: "localhost"
# =============================================================================
# Token Storage Location (optional, defaults to ~/.health_mcp/tokens.json)
# =============================================================================
# token_storage_path: "~/.health_mcp/tokens.json"