Skip to main content
Glama
vishnu27597

Sandbox GSTR-1 MCP Server

by vishnu27597

file_gstr1

Submit the final GSTR-1 return with EVC OTP verification to receive an acknowledgment number (ARN).

Instructions

Submit the final GSTR-1 return with EVC OTP verification (Step 7 — final step).

Args: access_token: Taxpayer session token gstin: 15-digit GST Identification Number ret_period: Return period in MMYYYY format pan: Permanent Account Number otp: EVC OTP received after calling generate_evc_otp() sec_sum: Section summaries array from get_gstr1_summary() chksum: Checksum string from get_gstr1_summary()

Returns: Dict with filing acknowledgement number (ARN) and status, or an error dict.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
otpYes
panYes
gstinYes
chksumYes
sec_sumYes
ret_periodYes
access_tokenYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.1/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. It discloses that this is a submission action requiring OTP verification, and that it returns an ARN and status or an error dict. However, it doesn't disclose side effects (e.g., whether this permanently files the return, whether it can be called multiple times, or what happens on failure). The description adds some behavioral context but not deep transparency.

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 compact and front-loaded with the core purpose. The Args list is terse and useful, and the Returns line is brief. It could be slightly more structured (e.g., grouping related params), but 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?

Given the tool has an output schema and 7 required parameters, the description covers the workflow context (final step, OTP verification, source of derived parameters) and return value. It doesn't mention error handling details or idempotency, but for a final-step submission tool with an output schema, it is reasonably complete.

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?

Schema description coverage is 0%, so the description must compensate. It does: it explains the source of otp, sec_sum, and chksum by naming the producing tools, and clarifies formats for gstin and ret_period. However, it doesn't explain access_token or pan beyond their names, and the schema itself provides no descriptions. The description adds meaningful meaning for 5 of 7 parameters.

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 states a specific verb ('Submit'), a specific resource ('final GSTR-1 return'), and the exact step context ('Step 7 — final step'). It clearly distinguishes this from sibling tools like save_gstr1_data, get_gstr1_summary, and generate_evc_otp by framing it as the final submission step.

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 clearly indicates this is the final step in a multi-step workflow and references sibling tools by name in the parameter descriptions (e.g., 'OTP received after calling generate_evc_otp()', 'Section summaries array from get_gstr1_summary()'). It implies the tool should be used after those steps, though it doesn't explicitly state when not to use it or name alternatives for exclusion.

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