We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/alti3/stk-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•505 B
"""Register MCP tools and resources.
Importing modules ensures the @mcp_server.tool() and .resource() decorators
run and register endpoints with the server.
"""
from . import scenario # noqa: F401
from . import satellite # noqa: F401
from . import location # noqa: F401
from . import objects # noqa: F401
from . import health # noqa: F401
from . import analysis # noqa: F401
# You can optionally define an __all__ if needed, but importing is usually sufficient
# for the decorators to register.