We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dubin555/clickhouse_mcp_server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
[project]
name = "clickhouse-mcp-server"
packages = [{ include = "src/clickhouse_mcp_server" }]
version = "0.1.0"
description = "A Model Context Protocal (MCP) server that enables secure interaction with Clickhouse. This server allows AI assistants to list tables, read data, and execute SQL queries through a controlled interface, making database exploration and analysis safer and more structured."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"clickhouse-connect>=0.8.15",
"httpx>=0.28.1",
"mcp>=1.4.1",
]
authors= [
{ name = "dubin555", email = "dubin555@gmail.com"}
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
"venv",
".git",
".gitignore"
]
[project.scripts]
clickhouse-mcp-server = "clickhouse_mcp_server:main"