Skip to main content
Glama

propublica-mcp

_toml.py•553 B
from pathlib import Path from typing import Any from cyclopts.config._common import ConfigFromFile class Toml(ConfigFromFile): def _load_config(self, path: Path) -> dict[str, Any]: try: # Attempt to use builtin >=python3.11 import tomllib # pyright: ignore[reportMissingImports] except ImportError: # Fallback to most popular pypi toml package. import tomli as tomllib # pyright: ignore[reportMissingImports] with path.open("rb") as f: return tomllib.load(f)

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/asachs01/propublica-mcp'

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