Skip to main content
Glama

finance_funding_program_intake

Destructive

Start a funding request intake by sending a message and optional structured inputs to the finance agent for processing.

Instructions

Run the finance domain agent action funding_program_intake.

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.4/5.0
Behavior2/5

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

Annotations already signal that this is a non-readonly, potentially destructive action, but the description adds no behavioral context such as what records are changed, whether an asynchronous agent run is launched, or what side effects follow. This is a missed opportunity because destructiveHint=true makes behavioral disclosure especially important.

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

Conciseness4/5

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

The text is compact and front-loads the action and routing context, with a clean Args list. It avoids fluff and redundant prose, though some brevity comes from under-specification rather than dense information.

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?

Despite having an output schema and annotations, the definition lacks enough context for correct invocation: no explanation of what funding_program_intake accomplishes, no example message or JSON inputs, and no warning about destructive side effects. For a generic dispatcher-style tool, this is insufficient.

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 Args section does add minimal meaning over the bare schema by identifying message as a free-text objective and inputs as an optional JSON string. With 0% schema description coverage, however, the description should provide examples or expected input structure; it only offers generic labels.

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 is essentially tautological: 'Run the finance domain agent action funding_program_intake' restates the tool name without explaining what a funding program intake does or what outcome it produces. The routing sentence describes mechanism, not domain purpose, so an agent cannot tell whether this creates an application, submits data, or triggers a workflow.

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 prefer this tool over finance_chat, dispatch_domain_agent, or other finance_* wrappers. Mentioning JWT/tenant/company scope provides context, not selection criteria. No alternatives or exclusions are given.

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