Skip to main content
Glama

exportFixItemsCsv

Read-onlyIdempotent

Export an audit's fix list as CSV, with one row per proposed change, for direct developer handoff.

Instructions

Export an audit's fix list as CSV — the developer-handoff format, with one row per proposed change.

Returns the CSV as text you can read, transform, or write to a file. PDF export is dashboard-only.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
auditIdYesAudit ID.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
csvYes
auditIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.1.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so the safety profile is fully covered. The description adds useful behavioral context: the CSV is returned as text, can be consumed programmatically, and represents one row per proposed change. This goes beyond what the annotations alone express.

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 short sentences with no wasted words. The first sentence states the core operation and format; the second explains what can be done with the output and adds the PDF limitation. It does not repeat schema fields or annotation information.

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 single-parameter, read-only export tool, the description covers everything needed to invoke it correctly: the required auditId is in the schema, the response format is stated as CSV text, and the PDF limitation is explicit. An output schema is present, so detailed return structure does not need to be duplicated here.

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?

The only parameter, auditId, is fully documented in the input schema with 100% coverage. The description does not add further detail about the parameter, but the schema already carries the semantic burden. This is the appropriate baseline case.

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?

The description names the exact verb ('Export'), resource ('an audit's fix list'), and format ('as CSV'), and adds the semantic 'developer-handoff format, with one row per proposed change.' This distinguishes it from sibling listFixItems and other audit-related tools. The CSV-vs-PDF caveat further disambiguates what this tool produces.

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?

It clearly communicates the use case: obtain a machine-readable CSV fix list that can be read, transformed, or written to a file. It also gives an exclusion by stating that PDF export is dashboard-only. It does not explicitly name an alternative sibling tool, but the CSV-versus-PDF distinction is sufficient routing guidance.

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