We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdc15da commit 5202229Copy full SHA for 5202229
fastmcp.json
@@ -0,0 +1,16 @@
1
+{
2
+ "$schema": "https://gofastmcp.com/public/schemas/fastmcp.json/v1.json",
3
+ "source": {
4
+ "path": "mcp_clickhouse/mcp_server.py",
5
+ "entrypoint": "mcp"
6
+ },
7
+ "environment": {
8
+ "dependencies": [
9
+ "clickhouse-connect",
10
+ "python-dotenv",
11
+ "pip-system-certs",
12
+ "chdb"
13
+ ]
14
+ }
15
+}
16
+
mcp_clickhouse/mcp_server.py
@@ -67,15 +67,7 @@ class Table:
67
68
load_dotenv()
69
70
-mcp = FastMCP(
71
- name=MCP_SERVER_NAME,
72
- dependencies=[
73
- "clickhouse-connect",
74
- "python-dotenv",
75
- "pip-system-certs",
76
- "chdb",
77
- ],
78
-)
+mcp = FastMCP(name=MCP_SERVER_NAME)
79
80
81
@mcp.custom_route("/health", methods=["GET"])
0 commit comments