We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/koizumikento/e-stats-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•584 B
"""e-Stat API MCP Server.
政府統計の総合窓口(e-Stat)APIにアクセスするためのMCPサーバー。
"""
from typing import TYPE_CHECKING
from e_stats_mcp.main import main, mcp
if TYPE_CHECKING:
from e_stats_mcp.cli import cli_main
__all__ = ["main", "mcp", "cli_main"]
def __getattr__(name: str):
"""遅延インポート(typerをMCPモードで読み込まないため)."""
if name == "cli_main":
from e_stats_mcp.cli import cli_main
return cli_main
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")