We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Marholoubek/health_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•425 B
"""MCP Tools for health data queries."""
from .sleep import register_sleep_tools
from .recovery import register_recovery_tools
from .strain import register_strain_tools
from .profile import register_profile_tools
from .insights import register_insights_tools
__all__ = [
"register_sleep_tools",
"register_recovery_tools",
"register_strain_tools",
"register_profile_tools",
"register_insights_tools",
]