Skip to main content
Glama

mcp-hydrolix

Official
main.py703 B
from .mcp_server import mcp from .mcp_env import get_config, TransportType def main(): config = get_config() transport = config.mcp_server_transport # For HTTP and SSE transports, we need to specify host and port http_transports = [TransportType.HTTP.value, TransportType.SSE.value] if transport in http_transports: # Use the configured bind host (defaults to 127.0.0.1, can be set to 0.0.0.0) # and bind port (defaults to 8000) mcp.run(transport=transport, host=config.mcp_bind_host, port=config.mcp_bind_port) else: # For stdio transport, no host or port is needed mcp.run(transport=transport) if __name__ == "__main__": main()

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/hydrolix/mcp-hydrolix'

If you have feedback or need assistance with the MCP directory API, please join our Discord server