We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/djmoore711/brandfetch-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# shellcheck shell=bash
# shellcheck disable=SC2034
# Brandfetch API Configuration
# Get both keys from https://brandfetch.com/developers
# Logo API Key (high quota, for domain lookups)
BRANDFETCH_CLIENT_ID="paste_logo_key_here"
# Brand API Key (limited quota, for fallback searches)
BRANDFETCH_API_KEY="paste_brand_key_here"
# Optional: Override API URLs
# BRANDFETCH_LOGO_API_URL=https://api.brandfetch.io/v2/logo/{domain}
# BRANDFETCH_BRAND_API_URL=https://api.brandfetch.io/v2/search/{q}
# Optional: Usage tracking configuration
# BRANDFETCH_DB_PATH=brand_api_usage.db
# BRAND_API_MONTH_LIMIT=100
# BRAND_API_WARN_THRESHOLD=90
# BRANDFETCH_REQUEST_TIMEOUT_SEC=8
# Optional: Logo CDN template for fallback lookups
# BRANDFETCH_LOGO_CDN_TEMPLATE=https://cdn.brandfetch.io/{domain}
# Optional: Cache configuration
# BRANDFETCH_CACHE_TTL=86400
# REDIS_URL=redis://localhost:6379