Skip to main content
Glama
brunosemfio

app-store-connect-mcp

by brunosemfio

download_finance_report

Read-onlyIdempotent

Fetch App Store Connect finance reports as parsed rows, covering payments and proceeds. Specify fiscal month, region, and report type to get the data.

Instructions

Download a finance report (payments and proceeds) as parsed rows.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
max_rowsNoCap on returned rows (1-20000).
max_bytesNoSafety cap after decompression.
region_codeNoRegion of the report, or "ZZ" for all regions (default).ZZ
report_dateYesFiscal month, "YYYY-MM".
report_typeNo"FINANCIAL" (default) or "FINANCE_DETAIL".FINANCIAL
vendor_numberNoOverrides $APP_STORE_CONNECT_VENDOR_NUMBER.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds that results are returned as parsed rows rather than raw files, but does not disclose further behaviors such as pagination, decompression handling, or date-range semantics.

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?

A single sentence that front-loads the action and resource, then adds the relevant semantic detail about payments/proceeds and parsed rows. No filler or redundant repetition of schema information.

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

Completeness4/5

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

With a rich output schema, full parameter documentation, and safety annotations, the description covers the essential call context. It does not mention how to choose among sibling download tools, but that is a usage-guidance gap rather than a completeness gap for invoking this tool correctly.

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% for all 6 parameters, including defaults and allowed values. The description adds no unique parameter semantics, so the baseline of 3 applies since 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 ('Download'), a resource ('finance report'), content ('payments and proceeds'), and output format ('parsed rows'). This clearly distinguishes it from sibling tools like download_sales_report or download_report_instance.

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

Usage Guidelines3/5

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

The description implies usage for finance reports via 'payments and proceeds', but gives no explicit guidance about when to choose this over siblings such as download_sales_report or download_report_instance. It provides context but no exclusions or alternative routing.

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