Skip to main content
Glama
krishna-goje

quicksight-mcp

by krishna-goje

get_error_patterns

Read-only

Analyze QuickSight error history to surface recurring failure patterns and provide documented fixes for SPICE refresh, permission, and API throttling issues.

Instructions

Show common QuickSight errors and their known fixes.

Analyzes your error history to identify recurring failure patterns and provides specific remediation steps. This is especially useful for diagnosing SPICE refresh failures, permission issues, and API throttling.

Returns:

  • patterns: Grouped error types with frequency and last occurrence

  • known_fixes: Documented fixes for each error pattern

  • recent_errors: The most recent errors with context

Call this when something goes wrong to see if it is a known issue with a known fix.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.0

TDQS

A3.9/5.0
Behavior3/5

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

The readOnlyHint annotation already tells the agent this is a safe read operation. The description adds that it 'analyzes your error history' and what categories it covers, but discloses nothing about data sources, time windows, rate limits, or how much history is scanned, so it only modestly exceeds the annotation baseline.

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?

The purpose is front-loaded and the body is well organized into a short prose block plus a 'Returns' list. The Returns section partly duplicates what the output schema already declares, which is a minor redundancy but not wasteful enough to hurt readability.

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?

For a zero-parameter, read-only diagnostic tool with annotations and an existing output schema, the description covers purpose, trigger conditions, and the categories of error it addresses. An agent has everything needed to decide to call it and interpret the result.

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

Parameters4/5

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

The tool takes zero parameters, so per the rubric this is a baseline 4. There are no inputs whose semantics need explaining, and the description correctly does not invent any.

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

Purpose4/5

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

The description opens with a specific verb and resource ('Show common QuickSight errors and their known fixes') and adds domain specificity by naming SPICE refresh, permission, and throttling failures. It is clearly about error-pattern analysis, though it does not explicitly differentiate itself from adjacent diagnostic siblings like verify_analysis_health or get_learning_insights.

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

Usage Guidelines4/5

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

The final sentence gives an unambiguous trigger: 'Call this when something goes wrong to see if it is a known issue with a known fix.' It states clear usage context but offers no explicit exclusions or named alternative tools for diagnosis, keeping it short of a 5.

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