We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ryan-rbw/kepler-mcp-gitlab-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•370 B
"""Tools module for Kepler MCP Server.
Provides base utilities and core tools for MCP servers.
"""
from kepler_mcp_gitlab.tools.base import kepler_tool
from kepler_mcp_gitlab.tools.health import register_health_tools
from kepler_mcp_gitlab.tools.info import register_info_tools
__all__ = [
"kepler_tool",
"register_health_tools",
"register_info_tools",
]