Skip to main content
Glama
krishna-goje

quicksight-mcp

by krishna-goje

publish_dashboard

Destructive

Publishes a QuickSight analysis to an existing dashboard, replacing current content for all viewers. Test the analysis first and roll back if needed.

Instructions

Publish a QuickSight analysis to an existing dashboard.

WARNING: This is a DESTRUCTIVE operation that replaces the current dashboard content with the analysis content. All viewers will immediately see the new version. Make sure you have tested the analysis thoroughly before publishing.

Best practice:

  1. Clone the analysis first (clone_analysis) and test

  2. Back up the dashboard (backup_analysis on the source)

  3. Publish with a descriptive version_description

  4. If something goes wrong, use rollback_dashboard

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dashboard_idYesThe target dashboard ID to publish to.
source_analysis_idYesThe analysis ID to publish from.
version_descriptionNoOptional description for this version (e.g., "Added revenue breakdown chart").

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.0

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations only declare destructiveHint=true, but the description goes well beyond that: it specifies that ALL existing dashboard content is replaced and that viewers see the new version immediately. This is exactly the impact-level detail an agent needs before invoking a destructive tool, and it is consistent with the annotation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Purpose is front-loaded, the warning follows, and the numbered best-practice list is scannable and actionable. The four-step list is slightly verbose for a 3-parameter tool, but every line carries operational value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With an output schema present, the description need not explain return values, and it covers what remains: the destructive semantics, the audience impact, the recovery path, and the recommended pre-flight steps. Nothing essential to invoking this tool safely is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so dashboard_id and source_analysis_id are already fully documented. The description adds only a weak hint ('publish with a descriptive version_description'), which is largely redundant with the schema's own example. Baseline 3 applies when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb (publish) and resource pair (analysis → existing dashboard), naming both source and target. An agent can immediately distinguish it from siblings like clone_analysis, backup_analysis, or get_dashboard_versions without opening a schema.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly provides a when-to-use workflow and names the alternatives at each step: clone_analysis to test, backup_analysis to back up, rollback_dashboard to recover. It even flags the prerequisite that the analysis must be tested thoroughly first, leaving little to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.