Skip to main content
Glama

finance_anomaly_fraud_case_file

Destructive

Investigate financial anomalies and fraud by generating a structured case file from a free-text objective, with optional JSON inputs to tailor the analysis.

Instructions

Run the finance domain agent action finance_anomaly_fraud_case_file.

Routes through the platform's domain-agent dispatcher under your JWT, tenant, and company scope.

Args: message: Free-text objective for the action. inputs: Optional JSON string of structured inputs for the action.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
inputsNo{}
messageNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.1/5.0
Behavior2/5

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

The description does not contradict the annotations (destructiveHint=true, idempotentHint=false, readOnlyHint=false), but it adds almost no behavioral context. It notes the action runs under the caller's JWT/tenant/company scope, yet fails to disclose what side effects occur when a fraud case file is created — what records are written, what changes are irreversible, or what the action returns. With a destructive, non-idempotent profile, the description should carry the burden of explaining consequences, and it does not.

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

Conciseness3/5

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

The description is reasonably compact and the Args block is cleanly formatted. However, the first sentence wastes space restating the tool name, and the routing sentence is platform boilerplate. The structure is acceptable, but the space is not used to convey the information that matters most — the action's actual behavior.

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

Completeness2/5

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

This description is far too thin for a tool with this complexity and an enormous sibling context. It omits the action's purpose, expected input semantics, workflow context (e.g., should this run after an anomaly is confirmed?), and any behavioral expectations despite a destructive annotation. The output schema relieves the description of documenting return structure, but selection and correct invocation still depend on purpose, usage, and input knowledge that is entirely absent.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate for the bare param names — and it does label both: 'message: Free-text objective' and 'inputs: Optional JSON string of structured inputs'. However, these labels are generic boilerplate that would fit any domain-agent action; they give no clue what a fraud-case-file objective should contain (e.g., anomaly details, affected accounts, amounts) or what structured keys the JSON accepts. The agent is left to guess the invocation payload.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'Run the finance domain agent action finance_anomaly_fraud_case_file', which is effectively a tautology that restates the tool name without explaining what the action does. The only substantive content is a routing mechanism ('Routes through the platform's domain-agent dispatcher'), which describes plumbing, not purpose — an agent cannot tell that this action files/opens a fraud case, what criteria are relevant, or how it differs from siblings like finance_fraud_investigation and finance_anomaly_investigation.

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?

There is no guidance on when to use this tool versus alternatives. The routing sentence under JWT/tenant/company scope is generic platform context shared by all domain-agent actions, and nothing indicates whether this tool is for initiating a fraud case file, investigating an existing one, or confirming an anomaly. No exclusions, preconditions, or sibling differentiators are given, which is a serious gap given the hundreds of sibling tools.

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

Deploy Server

Other Tools