Skip to main content
Glama
krishna-goje

quicksight-mcp

by krishna-goje

get_calculated_field

Read-only

Retrieve details for a specific calculated field in a QuickSight analysis using its analysis ID and exact field name.

Instructions

Get details of a specific calculated field in an analysis.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesExact name of the calculated field.
analysis_idYesThe QuickSight analysis ID.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.0

TDQS

B3.2/5.0
Behavior3/5

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

The readOnlyHint annotation already declares this is a safe read operation, so the description's burden is lower. However, the description does not add any behavioral context such as error handling for missing fields or permission requirements.

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?

A single, efficient sentence with the core action and resource front-loaded. No unnecessary words.

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

Completeness3/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 needn't explain return values, but it still lacks usage guidance and any behavioral caveats. For a simple retrieval tool with full schema coverage and annotations, it is adequate but leaves clear gaps in routing.

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 coverage is 100%, so both parameters are fully documented in the schema. The description adds no additional meaning beyond what the schema provides, which is the baseline expectation.

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?

States a specific verb (Get details) and resource (calculated field in an analysis), clearly distinguishing it from siblings like list_calculated_fields, add_calculated_field, and update_calculated_field.

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

Usage Guidelines2/5

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

No guidance is given on when to use this tool versus alternatives like get_analysis_raw or list_calculated_fields. The agent is left to infer that this is for retrieving one specific field by name rather than listing all fields.

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