Skip to main content
Glama
rehan1020

mcp-india-stack

by rehan1020

calculate_rti_penalty_estimate

Read-onlyIdempotent

Estimate potential Section 20 penalties for a PIO's delayed RTI response. Input due and response dates to calculate days delayed and penalty estimate.

Instructions

Estimate potential penalties for delayed RTI responses under Section 20.

Use when computing the estimated penalty that may be imposed on a PIO for delay.

Args: due_date: Due date of the response (YYYY-MM-DD). response_received_date: Actual response date (YYYY-MM-DD) or None if still pending.

Returns: Standard envelope with penalty estimate and days delayed.

Notes: Not legal advice. Consult a qualified advocate.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
due_dateYesThe date the RTI response was due (YYYY-MM-DD)
response_received_dateNoDate the response was received, if any (YYYY-MM-DD)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.6.0

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, openWorldHint=false, so the safety profile is covered. The description adds useful context: how to handle pending responses (None) and a disclaimer that it is not legal advice. No mention of rate limits or permissions, but not needed for a pure calculation.

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?

Well-structured with clear sections (purpose, usage, args, returns, notes). Slightly redundant in restating parameter descriptions, but overall efficient 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?

Complete for a calculation tool with an output schema (envelope with penalty estimate and days delayed). Includes usage context and legal disclaimer. Does not explain return fields in detail, but output schema covers that.

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 coverage is 100%, so the schema already documents both parameters with types and formats. The description repeats the date format and mentions None for pending responses, adding minor clarity 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?

States a specific verb (Estimate) and resource (penalties for delayed RTI responses under Section 20). Clearly distinguishes from siblings like calculate_rti_deadline or calculate_rti_fee by focusing on penalties for PIO delay.

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?

Explicitly states when to use: 'computing the estimated penalty that may be imposed on a PIO for delay'. Gives clear context but does not name alternative tools or exclusion criteria.

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