We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/OxSci-AI/oxsci-mcp-scaffold'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•492 B
"""
MCP Tools Package
Import all your tool modules here to ensure they are registered with @oma_tool.
Example:
from . import example_tool # noqa: F401
from . import another_tool # noqa: F401
"""
# Import your tools here
# Note: tool_router will auto-import this module when tools are discovered/executed
from . import tool_template # noqa: F401 (enable=False - for reference only)
from . import example_data_service_tool # noqa: F401 (enable=False - DataServiceClient example)