live wire
IBM makes watsonx Orchestrate AgentOps, custom LLM judging and Bedrock-agent discovery generally availableIBMSchemaGate 0.1.45 fixes broken Oracle ADB wallet connections and an OCI stack pinned 28 releases behindSchemaGatePDI’s Amazon Quick procurement agent grounds spend answers in vendor, category and contract contextAWS Business Intelligence BlogBigQuery’s ML.METRICS example returns 0.84 accuracy but 0.30 macro-F1 on the same 100-row classification queryGoogle Cloud BigQuery docsSchemaGate 0.1.44 auto-selects sentence embeddings, lifting bundled-schema retrieval from 90/98 to 93/98SchemaGateSchemaGate 0.1.43 adds read-only SQL execution with per-principal table checks—and documents unauthenticated client assertionsSchemaGateDatabox adds reusable AI Analyst Skills with personal/company scope, auto-matching and marketplace installsDataboxFabric previews an AI builder for data-agent instructions, source guidance and example queriesMicrosoft FabricDatabricks trains data-agent retriever to stop early or spend bounded extra search steps, reporting 5.8-second latencyDatabricksThoughtSpot adds SpotterCode coding agent to its Visual Embed PlaygroundThoughtSpotLongMemEval-S audit: 67–73% of restore-fixable 80k-budget errors came from evicted evidence under three policiesarXivSchemaGate 0.1.42 adds dimension-aware retrieval and fixes complex multi-table SQL promptsSchemaGateSnowflake agent toolsets can silently drop inherited tools when callers lack accessSnowflake DocumentationLooker’s VS Code extension reaches GA with MCP-assisted LookML generation, editing and validationGoogle Cloud Looker release docsIBM makes watsonx Orchestrate AgentOps, custom LLM judging and Bedrock-agent discovery generally availableIBMSchemaGate 0.1.45 fixes broken Oracle ADB wallet connections and an OCI stack pinned 28 releases behindSchemaGatePDI’s Amazon Quick procurement agent grounds spend answers in vendor, category and contract contextAWS Business Intelligence BlogBigQuery’s ML.METRICS example returns 0.84 accuracy but 0.30 macro-F1 on the same 100-row classification queryGoogle Cloud BigQuery docsSchemaGate 0.1.44 auto-selects sentence embeddings, lifting bundled-schema retrieval from 90/98 to 93/98SchemaGateSchemaGate 0.1.43 adds read-only SQL execution with per-principal table checks—and documents unauthenticated client assertionsSchemaGateDatabox adds reusable AI Analyst Skills with personal/company scope, auto-matching and marketplace installsDataboxFabric previews an AI builder for data-agent instructions, source guidance and example queriesMicrosoft FabricDatabricks trains data-agent retriever to stop early or spend bounded extra search steps, reporting 5.8-second latencyDatabricksThoughtSpot adds SpotterCode coding agent to its Visual Embed PlaygroundThoughtSpotLongMemEval-S audit: 67–73% of restore-fixable 80k-budget errors came from evicted evidence under three policiesarXivSchemaGate 0.1.42 adds dimension-aware retrieval and fixes complex multi-table SQL promptsSchemaGateSnowflake agent toolsets can silently drop inherited tools when callers lack accessSnowflake DocumentationLooker’s VS Code extension reaches GA with MCP-assisted LookML generation, editing and validationGoogle Cloud Looker release docs
nl2sql.ai
guideDeployment guide

ClickHouse’s MCP vector recipe exposes four production traps behind a short YAML demo

MCP Toolbox removes the embedding glue code, but ClickHouse’s end-to-end test shows why production teams still need bounded tools, no-match thresholds, log controls and retrieval-specific evaluation.

By The News Desk· Sep 8, 2026the quick take — two AI hosts go live when you do

ClickHouse has published an end-to-end recipe for turning an agent’s text into vectors through Google’s MCP Toolbox for Databases. The integration is compact; the production contract is not.

In the September 7 walkthrough, a Toolbox configuration declares a Gemini embedding model and marks a typed string parameter with embeddedBy. Toolbox sends the text for embedding, binds the returned vector to parameterized SQL, and ClickHouse ranks matching rows with cosineDistance. The test used MCP Toolbox 1.9.0 and ClickHouse Cloud 26.4.1.

The pattern removes a bespoke service from the path, but the same walkthrough surfaces four controls teams should settle before exposing it to users.

1. Do not confuse exploration tools with runtime tools

Toolbox’s generic ClickHouse configuration exposes execute_sql, list_databases and list_tables. ClickHouse reports that Toolbox itself warns these prebuilt tools are intended for trusted build-time use, not runtime interactions with potentially untrusted users.

Google’s MCP Toolbox repository draws the same boundary: prebuilt tools are for build-time exploration, while its custom-tools framework is the runtime path for restricted access, structured queries, semantic search and NL2SQL. Production agents should therefore receive named, curated operations—not a general SQL executor merely because it is convenient during development.

2. Typed parameters are not server-side prepared statements

The walkthrough tested a SQL-injection-shaped string and found that the ClickHouse driver serialized and escaped it as data. That is useful, but the author also inspected system.query_log and found that the statement reached ClickHouse as an interpolated SQL string with the full vector literal included.

That distinction affects both security language and operations. Teams should say “driver-escaped typed values,” not “server-side binding,” and should budget for large query-log entries. ClickHouse also warns that Toolbox template parameters use plain string substitution, so user-controlled values belong in regular typed parameters.

3. A top-five result is not evidence of a match

In the test corpus, an unrelated dinner query still returned five rows because pure top-k search always returns k candidates. ClickHouse recommends a distance threshold, tuned against the deployment’s own data, so the tool can return no result rather than hand irrelevant context to an agent.

That makes abstention part of the evaluation target. A benchmark should include out-of-domain questions and score whether the retrieval tool returns nothing, not only whether known-answer questions place the right document first.

4. The embedding defaults impose a retrieval ceiling

For Toolbox 1.9, the walkthrough found Gemini was the only embedding provider and that SEMANTIC_SIMILARITY was hardcoded for both documents and queries. Google’s retrieval-specific pairing—RETRIEVAL_DOCUMENT for content and RETRIEVAL_QUERY for questions—could not be selected. ClickHouse’s conclusion is direct: if retrieval quality is the priority, embed outside Toolbox.

The practical rollout sequence is therefore: start with curated tools, keep untrusted input out of template parameters, measure query-log growth, add no-match cases to the benchmark, and compare the built-in embedding path with an external retrieval-tuned pipeline before committing. The YAML may be short; the acceptance test should not be.

Filed by The News Desk. Corrections: desk@nl2sql.ai · Our standards →

comments · 0

    Comments are moderated before they appear. Your email is used once to confirm it is you — never shown, never sold. Corrections and questions get an answer from the desk when we have one.