Skip to main content
Glama

MCP Toolbox

by ai-zerolab
from pathlib import Path from pydantic_settings import BaseSettings class Config(BaseSettings): figma_api_key: str | None = None tavily_api_key: str | None = None duckduckgo_api_key: str | None = None bfl_api_key: str | None = None enable_commond_tools: bool = True enable_file_ops_tools: bool = True enable_audio_tools: bool = True tool_home: str = Path("~/.zerolab/mcp-toolbox").expanduser().as_posix() @property def cache_dir(self) -> str: return (Path(self.tool_home) / "cache").expanduser().resolve().absolute().as_posix() if __name__ == "__main__": print(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/ai-zerolab/mcp-toolbox'

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