We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/leonardo-amaral-3/mcp-datasus'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•315 B
"""DATASUS data access layer — SIGTAP + CNES via DuckDB over Parquet/S3."""
__all__ = ["DatasusClient"]
def __getattr__(name: str):
if name == "DatasusClient":
from .client import DatasusClient
return DatasusClient
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")