Skip to main content
Glama
dma9527

irs-taxpayer-mcp

by dma9527

check_refund_status

Read-onlyIdempotent

Get official IRS links and requirements to check your tax refund status, tailored to whether you filed electronically or by mail.

Instructions

Provide instructions on how to check IRS refund status. This tool does NOT access your IRS account — it provides the official links and requirements.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
filedElectronicallyNoWhether the return was e-filed

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYes
errorNo
isErrorYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.0.1
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "error": {
      +      "additionalProperties": false,
      +      "properties": {
      +        "code": {
      +          "type": "string"
      +        },
      +        "message": {
      +          "type": "string"
      +        },
      +        "suggestion": {
      +          "type": "string"
      +        }
      +      },
      +      "required": [
      +        "code",
      +        "message",
      +        "suggestion"
      +      ],
      +      "type": "object"
      +    },
      +    "isError": {
      +      "type": "boolean"
      +    },
      +    "text": {
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "text",
      +    "isError"
      +  ],
      +  "type": "object"
      +}
  2. First observedv0.5.3

TDQS

A4/5.0
Behavior4/5

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

Annotations already convey readOnlyHint, idempotentHint, and non-destructive behavior. The description adds important behavioral context beyond annotations: it does not access the user's IRS account, and instead provides official links and requirements. This meaningfully reduces the risk of misuse.

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?

Two sentences with no filler. The first sentence states the core function, and the second corrects the most likely misconception about what the tool can and cannot do. Every sentence earns its place.

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?

For a simple reference tool with one optional, fully described parameter, an output schema, and safety-related annotations, the description is largely sufficient. The only notable gap is that it does not explain how the optional 'filedElectronically' parameter changes the provided instructions, though this is a minor omission.

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 schema fully documents the single parameter 'filedElectronically' with a clear description, so the schema carries the parameter meaning. However, the tool description adds nothing about how this boolean affects the instructions, links, or requirements returned.

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 uses a specific verb and resource: 'Provide instructions on how to check IRS refund status.' It also explicitly disambiguates itself from an actual account-access tool by stating it does NOT access the IRS account, which is essential for correct agent selection.

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 usage context is implied through the task framing—when the user wants instructions on how to check a refund status—but there is no explicit when-to-use guidance or named alternatives among the many sibling tax tools. The non-access caveat helps, but it does not fully steer the agent away from or toward specific siblings.

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