Skip to main content
Glama

Fathom-Simple-MCP

config.py701 B
import os class Config: """Configuration for Fathom MCP Server""" def __init__(self): self.api_key = os.getenv("FATHOM_API_KEY", "") self.base_url = "https://api.fathom.ai/external/v1" self.timeout = int(os.getenv("FATHOM_TIMEOUT", "30")) def validate(self) -> bool: """Validate configuration""" return bool(self.api_key and self.base_url) @property def headers(self) -> dict: """Return headers for Fathom API requests""" return { "X-Api-Key": self.api_key, "Content-Type": "application/json", "User-Agent": "Fathom-MCP-Server/1.0" } # Global config instance config = Config()

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/druellan/fathom-get-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server