Skip to main content
Glama
vishnu27597

Sandbox GSTR-1 MCP Server

by vishnu27597

proceed_to_file

Initializes GSTR-1 filing after data validation, returning a reference_id to poll until completed before fetching summary.

Instructions

Initialise the filing process after data validation is complete (Step 4).

Poll check_return_status() with the returned reference_id until COMPLETED before calling get_gstr1_summary().

Args: access_token: Taxpayer session token gstin: 15-digit GST Identification Number ret_period: Return period in MMYYYY format is_nil: "Y" for a nil return, "N" for a regular return (default "N")

Returns: Dict with reference_id for status polling, or an error dict.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
gstinYes
is_nilNoN
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.3/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden. It discloses that the tool returns a reference_id for polling or an error dict, and implies an asynchronous workflow. However, it does not describe side effects of initializing the filing, idempotency, or what happens if the tool is called prematurely or repeatedly.

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 and well-structured: a one-line purpose, a direct sequencing instruction, a neatly formatted Args block, and a Returns line. No redundant prose or filler; every sentence contributes to successful invocation.

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?

The description covers the trigger condition, downstream dependency, parameter meanings, and return contract, and an output schema exists to detail return fields. It lacks explicit notes on idempotency or error scenarios, but the provided information is sufficient for an agent to call the tool and handle the next step correctly.

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

Parameters5/5

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

Schema description coverage is 0%, but the description fully compensates by documenting every parameter: access_token as a taxpayer session token, gstin as a 15-digit GSTIN, ret_period in MMYYYY format, and is_nil with its allowed values and default. This is exactly the semantic value the schema lacks.

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 action ('Initialise the filing process') and anchors it to a defined step ('after data validation is complete (Step 4)'). It also positions itself relative to sibling tools by referencing the polling and summary steps that follow, making its role distinct from file_gstr1 or save_gstr1_data.

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 says when to use the tool: after data validation is complete (Step 4). It also gives explicit sequencing guidance: poll check_return_status with the returned reference_id until COMPLETED before calling get_gstr1_summary. It does not explicitly name alternatives or exclusions, but the workflow context is strong.

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