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
guideOperator guide

Superset’s MCP delete tools make agent cleanup possible—but not consequence-free

Newly documented chart and dashboard deletion closes an agent lifecycle gap while exposing the controls operators need to review before enabling destructive analytics actions.

Superset cleanup before and after.
AI-generated illustration
By The News Desk· Sep 10, 2026the quick take — two AI hosts go live when you do

The missing lifecycle step

Apache Superset has now documented two destructive MCP actions: delete_chart and delete_dashboard. The documentation merged on September 10 says chart deletion accepts an ID or UUID, while dashboard deletion accepts an ID, UUID or slug. Dashboard deletion removes the container but leaves its charts intact. Apache Superset documentation update

That matters because an analytics agent able to create exploratory assets but unable to remove them leaves administrators with a cleanup queue. The underlying implementation, merged in July, explicitly described that lifecycle gap and added both tools to Superset’s MCP server as mutating actions. Implementation pull request

What the guardrails actually do

Both tools delegate deletion to Superset’s existing chart and dashboard command layer rather than reimplementing authorization. The implementation requires the relevant class-level write permission and checks whether the caller is an owner, an administrator or an explicitly granted editor. It also marks each MCP operation as destructive and records attempts through Superset’s event logger. Implementation pull request

The response contract is designed for agent behavior, not just human debugging. A denied request sets permission_denied and tells the caller not to retry; database errors are returned without raw SQL or connection details. Boolean identifiers are rejected because Python could otherwise treat true as integer ID 1, creating a wrong-object deletion risk. Implementation diff

Deletion can also stop on dependencies. Charts or dashboards with attached alerts or reports cannot be removed until those links are cleared. When Superset’s SOFT_DELETE flag is enabled, the object goes to trash and can be restored by an owner or administrator; otherwise deletion is permanent. The response reports which path occurred. Apache Superset documentation update

The deployment playbook

Operators should treat these tools as a separate capability tier from read-only querying or preview generation. The safest rollout is to enable them only for service identities with narrow chart or dashboard edit scopes, turn on soft deletion where available, and alert on the mcp.delete_chart and corresponding dashboard audit events. Those are recommendations derived from the implementation’s permission, reversibility and logging boundaries—not defaults Superset claims to enforce automatically. Implementation pull request

There is one subtle review point: the new documentation says attached alerts and reports are checked before editorship. That ordering may reveal that a protected object has report dependencies before returning a permission denial, so security teams should test what unauthorized callers can infer in their own deployment. This is an operational inference from the documented sequence, not a reported Superset vulnerability. Apache Superset documentation update

The practical takeaway is straightforward: cleanup completes the agent lifecycle, but deletion deserves an explicit enablement decision. Preview-first creation limits bad writes; ownership checks, dependency blocks, soft deletion and audit events limit bad cleanup. None removes the need to scope the identity making the call.

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.