We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jezweb/australian-postcodes-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
_yaml.py•328 B
from pathlib import Path
from typing import Any
from cyclopts.config._common import ConfigFromFile
class Yaml(ConfigFromFile):
def _load_config(self, path: Path) -> dict[str, Any]:
from yaml import safe_load # pyright: ignore[reportMissingImports]
with path.open() as f:
return safe_load(f)