Skip to main content
Glama

Costory: Your Finops MCP

update_report

Apply declarative partial changes to one non-archived report. Call get_skill with skillId: "reports" first when changing DIGEST content, schedule, destinations, or reportContext. Omitted fields are preserved. Pass reportContext as a partial patch to edit the report-wide period, groupBy, metricId, currency, scopeId, or conditionsCel without recreating widgets — omit fields you want to keep; empty conditionsCel clears the filter. The legacy context alias is temporarily accepted but deprecated; never send both. DANGER ZONE when changing schedule, widget, destinations, resuming to ACTIVE, or using schedule.mode NOW: summarize the merged future configuration and ask the user to confirm before calling. Pure pause plus metadata / reportContext edits can apply immediately. schedule.mode NOW converts to on-demand ACTIVE and sends immediately. Archived restore is forbidden in MCP. destinations replaces the full list (must be non-empty; omit to leave it unchanged). widgets (an array) replaces the report's entire widget list wholesale, with type inside each widget; omit widgets to leave the widgets unchanged. The input field is always widgets (array) — a singular widget key is silently ignored. EXAMPLE pause: { reportId: "clx…", state: "PAUSED" } EXAMPLE context patch: { reportId: "clx…", reportContext: { datePreset: "LAST_WEEK", groupBy: "cos_service_name" } }

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoOptional name patch.
slugNoOrganization slug. Omit to auto-detect from your account (fails if you belong to multiple orgs).
stateNoACTIVE or PAUSED (MCP-facing status).
contextNoDeprecated alias for `reportContext`; supported temporarily for backward compatibility. Do not send both fields.
widgetsNoWhen set, replaces the widget list wholesale; omit to leave unchanged. Same widget objects as `create_report` `widgets[]`.
reportIdYesReport id to patch.
scheduleNoOptional schedule replace. NOW / UNSCHEDULED / SCHEDULED (WEEKLY requires `weekday`).
descriptionNoOptional description patch.
destinationsNoWhen set, replaces the destination list wholesale; omit to leave unchanged (never empties it). Same destination objects as `create_report` `destinations`.
reportContextNoPartial patch for report-level shared context (same fields as `create_report` `reportContext`). Omitted fields keep their current values. Empty conditionsCel clears the filter. Can be used alone or together with `widgets`.

TDQS

A5/5.0
Behavior5/5

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

Annotations only convey readOnly=false, openWorld=true, and destructive=false; the description adds substantial behavioral detail beyond that: wholesale replacement semantics for destinations and widgets, 'a singular `widget` key is silently ignored,' the deprecated `context` alias with 'never send both,' and 'schedule.mode NOW converts to on-demand ACTIVE and sends immediately.' No contradiction with annotations exists.

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?

Although long, the description is front-loaded with purpose, then prerequisites, then safety-critical DANGER ZONE guidance, then parameter semantics, and ends with concrete examples. Every sentence carries distinct operational value, and the length is justified by the tool's complexity.

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 10-parameter mutation tool with nested objects and no output schema, the description covers what is needed to invoke it correctly: prerequisites, confirmation requirements, forbidden operations, replacement-versus-patch semantics, and examples. The lack of a return-value note is a minor omission given the depth of invocation guidance.

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

Parameters5/5

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

Schema description coverage is 100%, which sets a baseline of 3, but the description adds meaning the schema lacks: reportContext is a partial patch, 'empty conditionsCel clears the filter,' destinations 'must be non-empty; omit to leave it unchanged,' and widgets are always an array whereas the singular `widget` key is ignored. These are operationally crucial clarifications beyond the JSON schema.

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 opens with a precise verb and resource: 'Apply declarative partial changes to one non-archived report.' It further distinguishes itself by noting 'Omitted fields are preserved' and 'Archived restore is forbidden in MCP,' which separates it from create/archive siblings without needing to open their schemas.

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?

The description gives explicit when-to-use guidance: 'Call get_skill with skillId: "reports" first when changing DIGEST content, schedule, destinations, or reportContext.' It also provides clear when-not/confirmation instructions: a DANGER ZONE for schedule/widget/destination changes requiring user confirmation, while 'Pure pause plus metadata / reportContext edits can apply immediately.'

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation4/5

Tools are organized by resource (alerts, dashboards, reports, events, virtual dimensions) with distinct actions, so most are clearly separable. The main confusion risks are the three report-delivery side-effect tools (run_report_now, retry_report_execution, transfer_report_execution) and the generic get that spans five resource types, though detailed descriptions mitigate these.

Naming Consistency4/5

The dominant verb_noun pattern (create_*, list_*, update_*, preview_*, get_*) is consistent and predictable across the set. Deviations like bare verbs query/search/get and the noun-only virtual_dimension_overlap_matrix are readable but break the otherwise uniform convention.

Tool Count3/5

44 tools is heavy and exceeds the comfortable range, but the server covers a genuinely broad FinOps platform spanning querying, dashboards, reports, alerts, events, virtual dimensions, docs, skills, and suggestions. Each tool has a distinct job, though the sheer count makes agent navigation harder.

Completeness3/5

Core workflows are well covered: query → dashboard/report/alert/event, plus a full virtual-dimension draft lifecycle. Notable gaps include alerts being create-only with no update/delete, no deletes for dashboards/events/published virtual dimensions, and budget management limited to query/get with no create/update.

Resources