Skip to main content
Glama

Describe fleet indexing configuration

describe_indexing_configuration
Read-onlyIdempotent

Check if AWS IoT fleet indexing is enabled and which modes are active, so you can tell whether empty search results mean no matches or missing indexing.

Instructions

Reports whether fleet indexing is enabled and which modes are active (registry, shadow, connectivity, named shadows). Call this first when search_fleet_index returns nothing or reports unknown connectivity — it distinguishes "no matches" from "not indexed".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already declare readOnly, idempotent and non-destructive, so the safety profile is covered. The description adds genuine diagnostic context by framing the tool as a disambiguator between 'no matches' and 'not indexed', though it says nothing about cost, latency, or auth requirements.

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

Conciseness5/5

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

Two sentences with zero filler; the 'what it reports' clause comes first and the troubleshooting guidance second. Every clause earns its place.

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 no output schema, the description still tells the agent what it will learn (enabled flag plus active modes) and why that matters in a workflow. Complete for a zero-argument diagnostic probe.

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 there are no parameter semantics to explain and no schema gaps to compensate for. Baseline of 4 applies for a no-argument tool.

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 (reports) and resource (fleet indexing configuration), and enumerates the modes it covers (registry, shadow, connectivity, named shadows). An agent can distinguish it from describe_* siblings and search_fleet_index 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 names the trigger condition: 'Call this first when search_fleet_index returns nothing or reports unknown connectivity.' It also names the sibling it complements and the diagnostic decision it enables, leaving nothing to inference.

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