We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/acidsolution/schwab-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.env.example•1014 B
# Schwab MCP Server Configuration
# Copy this to .env and fill in your values
# NEVER commit .env to version control
# ===========================================
# Schwab API Credentials (Required)
# ===========================================
# Get these from https://developer.schwab.com/
SCHWAB_CLIENT_ID=your_app_key_here
SCHWAB_CLIENT_SECRET=your_app_secret_here
SCHWAB_CALLBACK_URL=https://127.0.0.1:8182/callback
# ===========================================
# Token Storage (Required)
# ===========================================
# Path where the OAuth token will be stored
# schwab-py manages refresh automatically
SCHWAB_TOKEN_PATH=~/.schwab-mcp/token.json
# ===========================================
# Optional Settings
# ===========================================
# Logging level: DEBUG, INFO, WARNING, ERROR
LOG_LEVEL=INFO
# Default account hash (if you have multiple accounts)
# Leave empty to use first account
# SCHWAB_DEFAULT_ACCOUNT=
# Request timeout in seconds
# SCHWAB_TIMEOUT=30