Skip to main content
Glama
BACH-AI-Tools

GST Insights API MCP Server

Gst Insights Api MCP Server

English | 简体中文 | 繁體中文

用于访问 Gst Insights Api API 的 MCP 服务器。

🚀 使用 EMCP 平台快速体验

EMCP 是一个强大的 MCP 服务器管理平台,让您无需手动配置即可快速使用各种 MCP 服务器!

快速开始:

  1. 🌐 访问 EMCP 平台

  2. 📝 注册并登录账号

  3. 🎯 进入 MCP 广场,浏览所有可用的 MCP 服务器

  4. 🔍 搜索或找到本服务器(bach-gst_insights_api

  5. 🎉 点击 "安装 MCP" 按钮

  6. ✅ 完成!即可在您的应用中使用

EMCP 平台优势:

  • 零配置:无需手动编辑配置文件

  • 🎨 可视化管理:图形界面轻松管理所有 MCP 服务器

  • 🔐 安全可靠:统一管理 API 密钥和认证信息

  • 🚀 一键安装:MCP 广场提供丰富的服务器选择

  • 📊 使用统计:实时查看服务调用情况

立即访问 EMCP 平台 开始您的 MCP 之旅!


Related MCP server: indian-regulatory-mcp

简介

这是一个 MCP 服务器,用于访问 Gst Insights Api API。

  • PyPI 包名: bach-gst_insights_api

  • 版本: 1.0.0

  • 传输协议: stdio

安装

从 PyPI 安装:

pip install bach-gst_insights_api

从源码安装:

pip install -e .

运行

方式 1: 使用 uvx(推荐,无需安装)

# 运行(uvx 会自动安装并运行)
uvx --from bach-gst_insights_api bach_gst_insights_api

# 或指定版本
uvx --from bach-gst_insights_api@latest bach_gst_insights_api

方式 2: 直接运行(开发模式)

python server.py

方式 3: 安装后作为命令运行

# 安装
pip install bach-gst_insights_api

# 运行(命令名使用下划线)
bach_gst_insights_api

配置

API 认证

此 API 需要认证。请设置环境变量:

export API_KEY="your_api_key_here"

环境变量

变量名

说明

必需

API_KEY

API 密钥

PORT

不适用

HOST

不适用

在 Cursor 中使用

编辑 Cursor MCP 配置文件 ~/.cursor/mcp.json:

{
  "mcpServers": {
    "bach-gst_insights_api": {
      "command": "uvx",
      "args": ["--from", "bach-gst_insights_api", "bach_gst_insights_api"],
      "env": {
        "API_KEY": "your_api_key_here"
      }
    }
  }
}

在 Claude Desktop 中使用

编辑 Claude Desktop 配置文件 claude_desktop_config.json:

{
  "mcpServers": {
    "bach-gst_insights_api": {
      "command": "uvx",
      "args": ["--from", "bach-gst_insights_api", "bach_gst_insights_api"],
      "env": {
        "API_KEY": "your_api_key_here"
      }
    }
  }
}

可用工具

此服务器提供以下工具:

get_gst_details_using_gst_number_

Endpoint: /getGSTDetailsUsingGST/:gst Method: GET Description: Fetches GST details using the provided GST number. Parameters: gst (string, required): A valid GST number (15 characters). Responses: 200 OK: Returns GST details along with a timestamp. 400 Bad Request: Invalid GST number. 500 Internal Server Error: An error occurred on the server. Example Request: GET /getGSTDetailsUsingGST/22ABCDE1234F1Z5

端点: GET /getGSTDetailsUsingGST/{gstNumber}

参数:

  • gstNumber (string) 必需: Example value: 27AABCI6363G3ZH


get_gst_details_using_pan_

Endpoint: /getGSTDetailsUsingPAN/:pan Method: GET Description: Fetches GST details using the provided PAN number. Parameters: pan (string, required): A valid PAN number (10 characters). Responses: 200 OK: Returns GST details along with a timestamp. 400 Bad Request: Invalid PAN number. 500 Internal Server Error: An error occurred on the server. Example Request: GET /getGSTDetailsUsingPAN/ABCDE1234F

端点: GET /getGSTDetailsUsingPAN/{panCard}

参数:

  • panCard (string) 必需: Example value: AABCI6363G


get_gst_status_

Endpoint: /getGSTStatus/:gst Method: GET Description: Retrieves the status of the provided GST number. Parameters: gst (string, required): A valid GST number (15 characters). Responses: 200 OK: Returns GST status along with a timestamp. 400 Bad Request: Invalid GST number. 500 Internal Server Error: An error occurred on the server. GET /getGSTStatus/22ABCDE1234F1Z5

端点: GET /getGSTStatus/{GSTNumber}

参数:

  • GSTNumber (string) 必需: Example value: 27AABCI6363G3ZH


get_gst_return_filing_status_for_a_specific_year_

Endpoint: /getGSTReturnFilingStatusSpecificYear/:gst/:year Method: GET Description: Fetches the GST return filing status for a specific year using the provided GST number. Parameters: gst (string, required): A valid GST number (15 characters). year (string, required): The year for which the status is to be fetched. Responses: 200 OK: Returns GST return filing status for the specific year along with a timestamp. 400 Bad Request: Invalid GST number or year. 500 Internal Server Error: An er...

端点: GET /getGSTReturnFilingStatusSpecificYear/{GSTNumber}/{year}

参数:

  • GSTNumber (string) 必需: Example value: 27AABCI6363G3ZH

  • year (string) 必需: Example value: 2022-2023


get_address_using_gst_

Endpoint: /getAddressUsingGST/:gst Method: GET Description: Retrieves the address associated with the provided GST number. Parameters: gst (string, required): A valid GST number (15 characters). Responses: 200 OK: Returns the address associated with the GST number along with a timestamp. 400 Bad Request: Invalid GST number. 500 Internal Server Error: An error occurred on the server. GET /getAddressUsingGST/22ABCDE1234F1Z5

端点: GET /getAddressUsingGST/{GSTNumber}

参数:

  • GSTNumber (string) 必需: Example value: 27AABCI6363G3ZH


get_gst_return_filing_status_

Endpoint: /getGSTReturnFilingStatus/:gst Method: GET Description: Fetches the GST return filing status of the provided GST number. Parameters: gst (string, required): A valid GST number (15 characters). Responses: 200 OK: Returns GST return filing status along with a timestamp. 400 Bad Request: Invalid GST number. 500 Internal Server Error: An error occurred on the server. Example Request: GET /getGSTReturnFilingStatus/22ABCDE1234F1Z5

端点: GET /getGSTReturnFilingStatus/{GSTNumber}

参数:

  • GSTNumber (string) 必需: Example value: 27AABCI6363G3ZH


validate_gst_number_

Endpoint: /validateGSTNumber/:gst Method: GET Description: Validates the provided GST number. Parameters: gst (string, required): A valid GST number (15 characters). Responses: 200 OK: Returns validation results along with a timestamp. 400 Bad Request: Invalid GST number. 500 Internal Server Error: An error occurred on the server. GET /validateGSTNumber/22ABCDE1234F1Z5

端点: GET /validateGSTNumber/{GSTNumber}

参数:

  • GSTNumber (string) 必需: Example value: 27AABCI6363G3ZH


get_gst_details_using_company_name_

Endpoint: /getGSTDetailsUsingCompanyName/:companyName Method: GET Description: Fetches GST details using the provided company name. Parameters: companyName (string, required): The name of the company. Responses: 200 OK: Returns GST details along with a timestamp. 400 Bad Request: Invalid company name. 500 Internal Server Error: An error occurred on the server. Example Request: GET /getGSTDetailsUsingCompanyName/jio

端点: GET /getGSTDetailsUsingCompanyName/{name}

参数:

  • name (string) 必需: Example value: Reliance Jio Infocomm Limited


技术栈

  • 传输协议: stdio

  • HTTP 客户端: httpx

许可证

MIT License - 详见 LICENSE 文件。

开发

此服务器由 API-to-MCP 工具生成。

版本: 1.0.0

Available Tools

8 tools
get_address_using_gstA

Endpoint: /getAddressUsingGST/:gst Method: GET Description: Retrieves the address associated with the provided GST number. Parameters: gst (string, required): A valid GST number (15 characters). Responses: 200 OK: Returns the address associated with the GST number along with a timestamp. 400 Bad Request: Invalid GST number. 500 Internal Server Error: An error occurred on the server. GET /getAddressUsingGST/22ABCDE1234F1Z5

ParametersJSON Schema
NameRequiredDescriptionDefault
GSTNumberYesExample value: 27AABCI6363G3ZH

TDQS

A4.1/5.0
Behavior4/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 specifies the HTTP method (GET), response codes (200, 400, 500), and implies read-only behavior. It could mention idempotency or lack of side effects, but it is still fairly transparent.

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 structured with endpoint, method, description, parameters, responses, and an example. It is informative but slightly verbose; could be more concise, but still well-organized.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with one parameter and no output schema, the description is complete. It covers input validation, response shapes (200 returns address, errors), and provides an example. No additional context needed.

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?

The description adds meaning beyond the schema: it states the requirement for a 15-character valid GST number, while the schema only provides an example. This helps the agent understand validation constraints.

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 clearly states 'Retrieves the address associated with the provided GST number', which is a specific verb+resource combination. It is distinct from sibling tools like get_gst_details_using_gst_number which likely returns other details.

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

Usage Guidelines2/5

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

The description does not provide guidance on when to use this tool versus alternatives such as get_gst_details_using_gst_number. There is no explicit 'when to use' or 'when not to use' context.

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

get_gst_details_using_company_nameC

Endpoint: /getGSTDetailsUsingCompanyName/:companyName Method: GET Description: Fetches GST details using the provided company name. Parameters: companyName (string, required): The name of the company. Responses: 200 OK: Returns GST details along with a timestamp. 400 Bad Request: Invalid company name. 500 Internal Server Error: An error occurred on the server. Example Request: GET /getGSTDetailsUsingCompanyName/jio

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesExample value: Reliance Jio Infocomm Limited

TDQS

C2.7/5.0
Behavior3/5

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

No annotations present, so the description carries the burden. It discloses that the HTTP method is GET (implying read-only) and lists possible response codes (200, 400, 500) with an example. However, it does not explicitly state that the operation is non-destructive or mention authentication or rate limits.

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 well-structured with sections for endpoint, method, parameters, responses, and example. Each sentence is relevant, though it could be more concise by omitting the full endpoint path which duplicates the tool name.

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?

With no output schema, the description only vaguely mentions 'Returns GST details along with a timestamp' without specifying the actual fields or format. The parameter name discrepancy undermines completeness, and error responses are listed but not detailed for each code.

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

Parameters2/5

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

While the description adds a human-readable explanation ('The name of the company') and an example request, it mistakenly uses 'companyName' instead of the schema's required parameter 'name'. This contradiction outweighs the added value, as the agent may send the wrong key.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states that it fetches GST details using the company name, differentiating it from siblings like get_gst_details_using_gst_number. However, the parameter name mismatch between the description (companyName) and the schema (name) casts doubt on whether the agent will invoke it correctly, slightly reducing clarity.

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

Usage Guidelines1/5

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

No usage guidelines provided; the description does not specify when to use this tool over siblings or mention any prerequisites. Worse, it gives an incorrect parameter name (companyName instead of the schema's name), which is misleading and could cause invocation failures.

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

get_gst_details_using_gst_numberA

Endpoint: /getGSTDetailsUsingGST/:gst Method: GET Description: Fetches GST details using the provided GST number. Parameters: gst (string, required): A valid GST number (15 characters). Responses: 200 OK: Returns GST details along with a timestamp. 400 Bad Request: Invalid GST number. 500 Internal Server Error: An error occurred on the server. Example Request: GET /getGSTDetailsUsingGST/22ABCDE1234F1Z5

ParametersJSON Schema
NameRequiredDescriptionDefault
gstNumberYesExample value: 27AABCI6363G3ZH

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries full burden. It discloses the read-only nature (GET method), parameter format (15-character), and error responses (400, 500). However, lacks details on authentication or rate limits, but acceptable for a simple lookup.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single paragraph with technical details (endpoint, method, responses) but is somewhat verbose and not tightly structured. Could be more concise while retaining all key information.

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 GET request with one parameter and no output schema, the description adequately covers purpose, input, and expected responses (200, 400, 500). Missing detailed response structure, but overall sufficient.

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?

The input schema only provides an example value with 100% coverage. The description adds meaningful context: 'A valid GST number (15 characters)' and an example request, clarifying the required format 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?

The description clearly states it fetches GST details using a GST number. The sibling tools (e.g., get_gst_details_using_company_name, get_gst_details_using_pan) differ in input, making this tool distinct and specific.

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 specifies the HTTP method, endpoint, required parameter, and response codes. Implicitly suggests usage when a GST number is available, but lacks explicit guidance on when not to use or alternatives.

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

get_gst_details_using_panA

Endpoint: /getGSTDetailsUsingPAN/:pan Method: GET Description: Fetches GST details using the provided PAN number. Parameters: pan (string, required): A valid PAN number (10 characters). Responses: 200 OK: Returns GST details along with a timestamp. 400 Bad Request: Invalid PAN number. 500 Internal Server Error: An error occurred on the server. Example Request: GET /getGSTDetailsUsingPAN/ABCDE1234F

ParametersJSON Schema
NameRequiredDescriptionDefault
panCardYesExample value: AABCI6363G

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries full burden. It discloses HTTP responses (200, 400, 500) and mentions a timestamp, but does not address read-only nature, permissions, rate limits, or side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description includes redundant sections (e.g., repeating endpoint and method) and is longer than necessary. However, it is organized clearly with segmented info. Some sentences could be streamlined.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple 1-param tool without output schema, the description covers core aspects: purpose, input, responses, and an example. However, it lacks a breakdown of the return data fields, which would enhance completeness.

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?

The schema has 100% coverage with a description example. The description adds format and length details (e.g., 'valid PAN number (10 characters)') that supplement the schema, providing clear parameter semantics.

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 clearly states the tool fetches GST details using a PAN number. It specifies the resource (GST details) and the input key (PAN number), distinguishing it from siblings that use GST number or company name.

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 for PAN-based queries but does not explicitly state when to prefer this over alternatives or when not to use it. No exclusions or context are provided.

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

get_gst_return_filing_statusA

Endpoint: /getGSTReturnFilingStatus/:gst Method: GET Description: Fetches the GST return filing status of the provided GST number. Parameters: gst (string, required): A valid GST number (15 characters). Responses: 200 OK: Returns GST return filing status along with a timestamp. 400 Bad Request: Invalid GST number. 500 Internal Server Error: An error occurred on the server. Example Request: GET /getGSTReturnFilingStatus/22ABCDE1234F1Z5

ParametersJSON Schema
NameRequiredDescriptionDefault
GSTNumberYesExample value: 27AABCI6363G3ZH

TDQS

A3.6/5.0
Behavior3/5

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

Annotations are absent, so the description carries the full burden. It discloses the HTTP method (GET) and possible response codes (200, 400, 500), but it does not address rate limits, authentication, or confirm read-only behavior beyond the verb 'Fetches.'

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is overly verbose, including endpoint, method, and full response details, some of which may be redundant for an MCP tool. It is structured but could be more concise by focusing on the purpose and parameter details.

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 no output schema and no annotations, the description provides a good level of completeness: it explains input, expected output (filing status with timestamp), and error responses, plus an example. However, the parameter name mismatch and lack of year differentiation slightly reduce clarity.

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?

The schema provides an example value but lacks a description of the parameter's meaning. The description compensates by stating 'A valid GST number (15 characters),' adding clarity beyond the schema. However, there is a mismatch: the description uses 'gst' while the schema uses 'GSTNumber', which could cause confusion.

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 clearly states 'Fetches the GST return filing status of the provided GST number,' which is a specific verb and resource. It distinguishes from siblings like 'get_gst_return_filing_status_for_a_specific_year' by not including a year parameter.

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

Usage Guidelines2/5

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

No explicit guidance on when to use this tool versus alternatives. While the description provides context, it does not mention when not to use it or compare with siblings such as 'get_gst_status' or 'get_gst_details_using_gst_number'.

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

get_gst_return_filing_status_for_a_specific_yearA

Endpoint: /getGSTReturnFilingStatusSpecificYear/:gst/:year Method: GET Description: Fetches the GST return filing status for a specific year using the provided GST number. Parameters: gst (string, required): A valid GST number (15 characters). year (string, required): The year for which the status is to be fetched. Responses: 200 OK: Returns GST return filing status for the specific year along with a timestamp. 400 Bad Request: Invalid GST number or year. 500 Internal Server Error: An er...

ParametersJSON Schema
NameRequiredDescriptionDefault
yearYesExample value: 2022-2023
GSTNumberYesExample value: 27AABCI6363G3ZH

TDQS

A3.6/5.0
Behavior2/5

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

No annotations provided; description only mentions HTTP method and response codes. Missing details on whether it's read-only, permissions required, rate limits, or error handling beyond 400/500.

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?

Concise single paragraph with front-loaded purpose. Includes endpoint, method, parameter list, and response codes. Ends abruptly but overall efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, response description is brief but mentions status and timestamp. Missing details on error formats, status values, or pagination. Adequate for a simple fetch tool.

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 coverage is 100%; description adds context beyond schema by specifying GST number must be 15 characters and providing endpoint path. Year description is minimal but matches schema example.

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?

Explicitly states it fetches GST return filing status for a specific year using GST number and year. Clearly distinguishes from generic sibling 'get_gst_return_filing_status' by specifying 'for a specific year'.

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?

Implies usage when a specific year is needed, but no explicit guidance on when to use this versus the generic sibling or alternatives. No exclusions mentioned.

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

get_gst_statusB

Endpoint: /getGSTStatus/:gst Method: GET Description: Retrieves the status of the provided GST number. Parameters: gst (string, required): A valid GST number (15 characters). Responses: 200 OK: Returns GST status along with a timestamp. 400 Bad Request: Invalid GST number. 500 Internal Server Error: An error occurred on the server. GET /getGSTStatus/22ABCDE1234F1Z5

ParametersJSON Schema
NameRequiredDescriptionDefault
GSTNumberYesExample value: 27AABCI6363G3ZH

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations, the description carries full burden for behavioral disclosure. It mentions HTTP method and responses but fails to state that the operation is read-only, idempotent, or any rate limits or authentication requirements. The value 'status' is not elaborated.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is verbose, including raw endpoint, method, and response codes that could be condensed. It is front-loaded with the purpose but contains redundant elements like the full example curl path.

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 one-parameter retrieval tool with no output schema, the description is fairly complete: it specifies required parameter, format, example, and possible responses. However, it lacks explanation of what the returned 'status' and 'timestamp' represent.

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 coverage is 100% with a single parameter. The description adds value by specifying the expected format (15 characters, valid GST number) and provides an example, which goes beyond the schema's minimal description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states 'Retrieves the status of the provided GST number,' which is a clear verb+resource combination. However, it does not distinguish 'status' from 'details' or 'validation' as offered by sibling tools like get_gst_details_using_gst_number and validate_gst_number, causing potential confusion.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives. The description lacks explicit context, prerequisites, or exclusions, leaving the agent to infer usage from the tool name alone.

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

validate_gst_numberA

Endpoint: /validateGSTNumber/:gst Method: GET Description: Validates the provided GST number. Parameters: gst (string, required): A valid GST number (15 characters). Responses: 200 OK: Returns validation results along with a timestamp. 400 Bad Request: Invalid GST number. 500 Internal Server Error: An error occurred on the server. GET /validateGSTNumber/22ABCDE1234F1Z5

ParametersJSON Schema
NameRequiredDescriptionDefault
GSTNumberYesExample value: 27AABCI6363G3ZH

TDQS

A3.7/5.0
Behavior3/5

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

No annotations provided. The description mentions the GET method (implying read-only) and lists response codes (200, 400, 500) with brief meanings, but does not disclose side effects, authentication needs, or rate limits. Adequate but minimal behavioral context.

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 well-structured with sections for endpoint, method, parameters, and responses. It is somewhat lengthy due to the example, but the key purpose is front-loaded. Slightly verbose but effective.

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?

With no output schema, the description adequately explains return types (validation results with timestamp) and error responses. For a single-parameter tool, it provides sufficient context, though the response structure could be more detailed.

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 coverage is 100% with one parameter. The description adds meaning by specifying the required length (15 characters) and providing an example usage in the endpoint, though there is a mismatch between the description parameter name 'gst' and schema property 'GSTNumber'.

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 clearly states it validates a GST number, with specific verb and resource. It distinguishes from sibling tools (e.g., get_gst_details_using_gst_number) by focusing on validation rather than retrieval of details.

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

Usage Guidelines2/5

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

No guidance on when to use this tool versus siblings. For example, it does not say to use this for validation only and other tools for detailed information. The description is purely technical.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 8 tool updatesv1.0.0
    • First observedget_address_using_gst
    • First observedget_gst_details_using_company_name
    • First observedget_gst_details_using_gst_number
    • First observedget_gst_details_using_pan
    • First observedget_gst_return_filing_status
    • First observedget_gst_return_filing_status_for_a_specific_year
    • First observedget_gst_status
    • First observedvalidate_gst_number

TDQS

A3.6/5.0
Disambiguation4/5

Each tool has a distinct purpose (address, details, status, validation, return filing), but there is potential confusion between 'get_gst_details_using_gst_number' and 'get_gst_status' as both use a GST number but return different data. The descriptions help, but an agent might misselect if not careful.

Naming Consistency5/5

All tools follow a consistent snake_case pattern with verbs 'get' or 'validate', and parameters are clearly described in the name (e.g., get_gst_details_using_company_name). The naming is predictable and easy to understand.

Tool Count5/5

With 8 tools, the server covers the core GST lookup functionalities (by GST, PAN, company name, address, status, validation, return filing) without being excessive or sparse. The number is appropriate for a focused GST insights API.

Completeness4/5

The tool set covers common queries for GST insights, including multiple lookup methods and filing status. However, it lacks tools for e-invoice or e-way bill queries, which are related features. Minor gap, but overall the surface is well-rounded.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    Provides AI agents with Indian fintech utilities including IFSC bank lookups, PAN/GSTIN validation, mutual fund NAVs, UPI VPA identification, pincode lookups, and INR formatting, all with zero authentication and zero cost.
    7
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Validates Indian GSTIN numbers with structural checks, embedded PAN extraction, state-code lookup, and mod-36 check character validation, all via local compute.
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Enables LLMs to query real-time Indian bank branch details, postal PIN codes, validate GSTIN/PAN structures, check e-commerce serviceability, and compute GST breakdowns using free public APIs and offline verification logic.
    6
    10
    1
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/BACH-AI-Tools/bachai-gst-insights-api'

If you have feedback or need assistance with the MCP directory API, please join our Discord server