Skip to content

Commit 36c1ff2

Browse files
committed
chore: update description of chDB
1 parent dc5fff5 commit 36c1ff2

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
@@ -271,7 +271,7 @@ def execute_chdb_query(query: str):
271271

272272

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

0 commit comments

Comments
 (0)