We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/burakdirin/clickhouse-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•224 B
"""
ClickHouse MCP Server
A server for interacting with ClickHouse databases through MCP.
"""
from .server import mcp
def main() -> None:
"""Run the ClickHouse MCP server"""
mcp.run()
__all__ = ['mcp', 'main']