Skip to content

Commit f046ce4

Browse files
committed
define entrypoint and add deps
1 parent 62f77f2 commit f046ce4

File tree

3 files changed

+254
-1
lines changed

3 files changed

+254
-1
lines changed

mcp_clickhouse/main.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
3+
def main():
4+
print("Hello, World!")
5+
6+
7+
if __name__ == "__main__":
8+
main()

pyproject.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ version = "0.1.0"
44
description = "An MCP server for ClickHouse."
55
readme = "README.md"
66
requires-python = ">=3.13"
7-
dependencies = []
7+
dependencies = [
8+
"mcp>=1.0.0",
9+
"python-dotenv>=1.0.1",
10+
]
811

912
[project.scripts]
1013
mcp-clickhouse = "mcp_clickhouse.main:main"

uv.lock

+242
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)