Skip to main content
Glama
markswendsen-code

@striderlabs/mcp-statefarm

statefarm_payment

Check payment due dates and history, make insurance payments, set up or cancel autopay, and update payment methods.

Instructions

Manage State Farm insurance payments. View payment history, due dates, make a payment, set up autopay, or update payment method.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionYesPayment action to perform
policy_numberNoPolicy number to manage payment for
payment_amountNo(make_payment) Amount to pay in USD
payment_methodNo(make_payment / update_payment_method) Payment method type

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure, and it falls short for a financial tool. It does not disclose that make_payment will actually charge the customer, that setup_autopay/cancel_autopay alter future billing behavior, or that update_payment_method affects the default method used for charges. It also does not mention any confirmation, idempotency, or authentication expectations. Listing the actions without their material financial consequences is a significant transparency gap.

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 a single efficient sentence with the core resource front-loaded in the first clause ('Manage State Farm insurance payments') and a compact list of supported operations following. Every phrase earns its place, and it is appropriately sized for a multi-action tool. The slight enumeration length is justified because it previews all six distinct actions an agent can invoke.

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 is a moderate-complexity tool with six actions, four parameters, no output schema, and no annotations, yet the description only provides a high-level overview. It omits material operational context: policy_number is not required by the schema but is logically needed for most actions, the financial side effects of mutating actions are unstated, and with no output schema the agent is left with no sense of what each action returns. A financial tool of this scope needs more than a one-line summary.

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%, with each parameter already documented (action enum, policy number, payment amount in USD, and payment method restrictions per action). Per rubric, this sets the baseline at 3, and the description adds no extra parameter-level meaning beyond what the schema provides. The six-action list in the description roughly mirrors the action enum, adding convenience but no new semantic detail.

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 specific verb-resource pair ('Manage State Farm insurance payments') and enumerates the concrete operations: viewing payment history, due dates, making a payment, setting up autopay, and updating payment method. These operations map directly to the action enum values, making the tool's scope unambiguous. None of the eight sibling tools (claims, quotes, agents, roadside assistance, digital ID) overlap with payment management, so it is clearly differentiated.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context by listing payment-related tasks, so an agent can reasonably infer this is the tool for payment activities. However, it provides no explicit when-to-use guidance, no exclusions, and never names alternative tools by condition. For example, it does not say 'for claims use statefarm_file_claim' or note when policy details would be more appropriate. The guidance is implied through the operation list rather than stated.

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