Skip to main content
Glama

get_offer

Destructive

Records a loan enquiry in SecureLend's system and submits it to one selected lender on the user's behalf, after explicit user confirmation. The lender reviews the enquiry and, if interested, provides a quote. The user then completes their full application directly on the lender's own platform. This tool does not collect sensitive personal data such as social security numbers, bank account details, health information, or biometric data. Creates a persistent lead record in SecureLend's database.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
providerYesThe selected provider to submit the application to.
applicantYesPersonal details of the applicant.
productTypeYesThe type of financial product being applied for.
applicationDataYesThe original search parameters or form data for the application.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe unique ID of the application.
statusYesThe current status of the application.
createdAtYesThe timestamp when the application was created.
providersYesThe list of providers the application was sent to.
productTypeYesThe type of product applied for.
requiredInfoNoDetails on information required from the applicant when status is ACTION_REQUIRED.
applicationIdNoAlias of `id`. Pass this value as `applicationId` to the `track_offer_status` tool to check enquiry status later.

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already indicate a write operation (readOnlyHint=false) and potential destructiveness (destructiveHint=true). The description adds valuable context beyond annotations: it requires explicit user confirmation, creates a persistent lead record, does not collect sensitive personal data, and explains the post-submission workflow. No contradictions with annotations.

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 description is four sentences and front-loads the main action. It is mostly efficient, though the final sentence ('Creates a persistent lead record') partially overlaps with the first sentence ('Records a loan enquiry'). It earns its place by adding persistence and database context, so overall it is concise without being minimal.

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?

Given the tool's complexity (multiple product types, nested applicationData variants) and the presence of an output schema, the description provides sufficient high-level context. It explains the workflow, user confirmation, and privacy stance. It does not detail return values, but the output schema covers that. The description could be slightly more explicit about when to prefer this over get_multiple_offers, but it remains fairly complete.

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%, so the schema already thoroughly documents all parameters and nested properties. The description does not add parameter-specific details, but it clarifies the overall purpose and mentions that sensitive data is not collected, which indirectly helps interpret the applicationData content. Baseline 3 is appropriate given the schema's completeness.

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 clearly states the tool records a loan enquiry and submits it to one selected lender on the user's behalf. It uses a specific verb with a resource (SecureLend's system, one lender) and distinguishes itself from siblings like get_multiple_offers by emphasizing 'one selected lender' and the post-submission flow.

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?

The description provides clear context for when to use the tool: after explicit user confirmation, for submitting to a single selected lender. It implies alternatives through the phrase 'one selected lender' (contrasting with get_multiple_offers) and notes the user will later apply on the lender's platform. However, it does not explicitly list when-not-to-use alternatives.

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

Most tools have clear, distinct purposes, but there are a few potentially confusing pairs. Compare_personal_banking and compare_savings_accounts overlap somewhat, and calculate_loan_payment could be mistaken for covering mortgages despite calculate_mortgage_payment existing. Overall, descriptions help resolve most ambiguity.

Naming Consistency5/5

Tool names follow a consistent verb_noun pattern throughout: compare_* for comparisons, calculate_* for calculations, display_* for forms, submit_* for submissions, and get_* for offers. All names use lowercase with underscores, creating a predictable and uniform naming scheme.

Tool Count4/5

With 22 tools, the count is on the higher side but appropriate given the broad financial marketplace domain. Each tool covers a specific product category or workflow step, so the size feels justified rather than bloated. It is slightly heavy but not excessive for the scope.

Completeness4/5

The tool surface covers comparison, calculation, lead generation, prequalification, document upload, and status tracking, forming a comprehensive marketplace workflow. Minor gaps exist, such as no tools for updating or canceling applications, but these are workarounds and the core user journey is well supported.

Resources