We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SAK1337/myzerionmcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
config.yaml•1.3 KiB
# Zerion MCP Server Configuration
# Server name (shown in MCP protocol)
name: "Zerion API"
# Zerion API base URL
base_url: "https://api.zerion.io"
# OpenAPI specification URL
oas_url: "zerion_mcp_server/openapi_zerion.yaml"
# API key for Zerion API
api_key: "zk_dev_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
# Logging configuration
logging:
# Log level: DEBUG, INFO, WARN, ERROR
level: "DEBUG"
# Log format: text (human-readable) or json (structured)
format: "text"
# Pagination configuration
pagination:
# Default page size for paginated requests (max: 100)
default_page_size: 100
# Maximum number of pages to fetch with auto-pagination helper
# This prevents accidental quota exhaustion
max_auto_pages: 50
# Retry policy for rate limiting (429 Too Many Requests)
retry_policy:
# Maximum number of retry attempts
max_attempts: 5
# Base delay for exponential backoff (seconds)
base_delay: 1
# Maximum delay between retries (seconds)
max_delay: 60
# Exponential backoff multiplier
exponential_base: 2
# Wallet indexing handling (202 Accepted responses)
wallet_indexing:
# Delay between retries when wallet is being indexed (seconds)
retry_delay: 3
# Maximum number of retry attempts for indexing
max_retries: 3
# Automatically retry 202 responses (recommended)
auto_retry: true