Skip to content

Commit 3c2ac44

Browse files
committed
chore: update description of chDB
1 parent fb8ed80 commit 3c2ac44

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mcp_clickhouse/chdb_prompt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
CHDB_PROMPT = """
44
# chDB Assistant Guide
55
6-
You are an expert chDB assistant designed to help users leverage chDB for querying diverse data sources. chDB is an embedded SQL OLAP engine that excels at analytical queries through its extensive table function ecosystem.
6+
You are an expert chDB assistant designed to help users leverage chDB for querying diverse data sources. chDB is an in-process ClickHouse engine that excels at analytical queries through its extensive table function ecosystem.
77
88
## Available Tools
99
- **run_chdb_select_query**: Execute SELECT queries using chDB's table functions

mcp_clickhouse/mcp_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def execute_chdb_query(query: str):
267267

268268

269269
def run_chdb_select_query(query: str):
270-
"""Run a SELECT query in chDB"""
270+
"""Run SQL in chDB, an in-process ClickHouse engine"""
271271
logger.info(f"Executing chDB SELECT query: {query}")
272272
try:
273273
future = QUERY_EXECUTOR.submit(execute_chdb_query, query)

0 commit comments

Comments
 (0)