Skip to main content
Glama

Lovie Company Formation

Update Card Spend Limit

card_update_card_spend_limit
Idempotent

Replace a card's spend limit at the issuer. amount_cents is in CENTS, not dollars — a $500 limit is 50000 — and interval chooses the window the limit resets over. The new limit replaces the old one outright, so this raises spending authority as readily as it lowers it: send the exact amount the user asked for and never round up. Use SPEND_INTERVAL_MONTHLY, SPEND_INTERVAL_DAILY, or SPEND_INTERVAL_TRANSACTION; SPEND_INTERVAL_YEARLY is not supported by the default issuer and is rejected, so convert a yearly figure to a monthly amount and say so.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cardIdYesUUID value wrapper.
intervalNo
amountCentsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
cardNo

TDQS

A4.4/5.0
Behavior4/5

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

The description reveals that the new limit fully replaces the old one, and that the tool can both raise and lower spending authority, which is important behavioral context. It also warns about SPEND_INTERVAL_YEARLY being rejected. The annotations already indicate idempotent and non-destructive, but the description adds specifics like 'replaces the old one outright' and the issuer rejection behavior.

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?

The description is compact yet information-dense. Each sentence earns its place: the core operation, the unit clarification with example, the replacement semantics, a never-round-up guardrail, and interval constraints. There is no fluff or repetition, making it appropriately sized and front-loaded.

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 has three parameters and an output schema, the description covers the essential invocation aspects: units, interval choices, replacement behavior, and an unsupported interval. It omits details like error handling or prerequisites, but these are likely covered by the output schema and openWorldHint. It is reasonably complete for the agent to select and invoke correctly.

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

Parameters4/5

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

The schema is sparse (only cardId is described), so the description compensates by explaining that amount_cents is in cents with a concrete example, and by clarifying which interval enum values are supported vs. rejected, including a conversion instruction. It does not mention 'SPEND_INTERVAL_UNSPECIFIED' from the enum, but overall it adds strong value beyond the 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 clearly states the action: 'Replace a card's spend limit at the issuer.' This specific verb+resource combination distinguishes it from sibling card tools like card_freeze_card, card_unfreeze_card, and card_get_card_spend. The purpose is unambiguous and immediately understandable.

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 explicit parameter guidance: which SPEND_INTERVAL values are acceptable (MONTHLY, DAILY, TRANSACTION), which is rejected (YEARLY), and how to convert a yearly figure to monthly. It also instructs to send the exact amount and never round up. However, it does not explicitly mention alternative tools or state when not to use this tool, so it falls short of a 5.

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

C2.5/5.0
Disambiguation1/5

Multiple tool pairs are nearly identical (formation_extract_cap_table / formation_extract_cap_table_ocr; formation_start_formation / formation_create_formation), and several tools lack descriptions, making selection ambiguous. The scale of 202 tools with overlapping summaries (e.g., multiple cap-table summary tools) compounds the confusion.

Naming Consistency3/5

Dominant snake_case `module_verb_noun` pattern, but with notable deviations: `captable_send_safe_for_signature` uses an inconsistent abbreviation, `check_company_name_availability` lacks a module prefix, and `get_list_` vs `list_` prefixes are mixed. Readable but not fully consistent.

Tool Count1/5

202 tools is far beyond any reasonable surface for a single server, even a broad platform. The sheer number overwhelms and makes tool discovery impractical; many tools are peripheral (ads metrics) to the core formation purpose.

Completeness4/5

The domain appears well covered: formation flows, cap-table lifecycle (import, close, simulate), accounting (journal entries, periods, schedules), cards, documents, and transactions all have CRUD or lifecycle operations. Minor gaps exist (e.g., no card deletion, no counterparty creation), but they are unlikely to cause dead ends.