Skip to main content
Glama
beenthatt-rehman

datagovin-mcp

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.1.0

  • Disambiguation5/5

    Each tool has a distinct responsibility: discover datasets (search_datasets), browse categories (list_sectors), inspect schema (get_dataset_info), and retrieve rows (query_dataset). No two tools could be confused for the same action.

    Naming Consistency5/5

    All four tool names follow a uniform verb_noun pattern (search_datasets, list_sectors, get_dataset_info, query_dataset). While the verbs differ, each one accurately maps to its unique action, and the snake_case style is consistent throughout.

    Tool Count5/5

    With only 4 tools, the server is tightly scoped to the core use case of discovering and retrieving Indian open government data. Each tool is necessary and none feel redundant, making the tool count highly appropriate.

    Completeness4/5

    The tool surface covers the end-to-end read-only workflow: search, sector overview, schema inspection, and data extraction with pagination. Minor gaps include no direct way to list every dataset in the catalog and limited dataset metadata (e.g., update date), but agents can work around these via search and get_dataset_info.

  • Average 4.7/5 across 4 of 4 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 1 commit in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior4/5

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

    With no annotations provided, the description carries the full behavioral disclosure burden. The word 'List' conveys that this is a non-mutating, harmless operation, and the examples clarify the nature of the returned content. While it does not address edge cases like ordering or format, the output schema is present to cover return shape, so the description is adequate for a simple catalog-listing tool.

    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 short sentences with no filler: the first delivers the core action and resource, and the second adds the practical 'why/when' context. The example list is compact and useful, and the front-loading is excellent.

    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 zero-parameter, low-complexity tool with an output schema, the description is complete: it states what the tool returns, gives example values, and explains its role in the workflow (before a search). Nothing an agent needs to decide whether to call this tool correctly is missing.

    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 tool takes zero parameters, so the baseline for this dimension is 4. The description refers to the sectors themselves (the result content) rather than parameters, which is appropriate for a parameterless operation.

    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 names a specific verb ('List') and resource ('sectors covered by the curated dataset catalog'), with concrete examples (Environment, Agriculture, Health). It also frames its distinct role as an orientation step 'before a search', clearly differentiating it from the sibling search/get/query tools.

    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 phrase 'Useful for orienting the user before a search' gives a clear usage context. It does not explicitly list alternative tools or when-not-to-use conditions, but it positions this tool as the pre-search starting point, which is sufficient guidance for the sibling set provided.

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

  • Behavior4/5

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

    With no annotations provided, the description carries the behavioral burden and handles it well: it discloses that this searches a curated local index of verified datasets and provides a fallback path when nothing matches. It also clarifies that results are matching datasets, though it doesn't describe potential failure modes or whether the local index is refreshed.

    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 organized into purpose, usage timing, fallback, and parameters, making it easy for an agent to parse. Every sentence adds information; nothing is redundant.

    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 2-parameter tool with an existing output schema, the description covers the key points: what it returns, when to invoke it, what to do if nothing matches, and how to onboard new datasets. This is sufficient for correct tool selection and invocation.

    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 schema provides no descriptions (0% coverage), but the description fully compensates with a clear Args section. query is explained with plain-language examples, and limit is described as the max result count with a default value for schema coverage 0%.

    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 ('Find datasets'), a concrete resource (India's Open Government Data platform), and the method (by keyword). It also distinguishes the tool from get_dataset_info and query_dataset by noting that this tool returns resource_id, which the other tools need.

    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 to use this tool FIRST when the user asks about Indian public data and no resource ID is already known. It implies the alternative tools are used when a resource ID is already available, though it never names them explicitly, so a direct comparison is missing.

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

  • Behavior5/5

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

    With no annotations, the description carries the full burden of behavioral disclosure — and it delivers. It reveals the API-key auth requirement, the upstream 100-row hard cap, the paged-past-the-end signature (zero rows with positive total), and the case-sensitivity pitfall for filter fields. This is exactly the kind of non-obvious behavior an agent needs before calling.

    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 structure is effective: a crisp opening sentence, then operational details, a highlighted IMPORTANT warning, and a per-parameter Args block. There is minor redundancy — the 100-row cap and the 1-100 limit are stated in both the prose and the Args — and the description runs long because it is dense with value; every sentence earns its place, but a tighter consolidation would be possible.

    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 5-parameter tool with 0% schema coverage and no annotations, the description covers everything an agent needs to call it correctly: auth requirements, pagination pitfalls, filter capitalization traps, and full parameter semantics. The output schema exists, so not explaining return values is acceptable. The description is complete enough that an agent could perform correct data pulls on the first generic run.

    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%, so the description must fully compensate — and it does. The Args block explains what the schema cannot: where resource_id comes from (search_datasets or portal), the exact shape of filters with a concrete example ({'city': 'Delhi'}), the semantic meaning of fields as a projection, and the effective 1-100 range for limit, given that pagination semantics only exist in the description.

    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 opens with a specific verb+resource: 'Pull actual rows from a data.gov.in dataset, optionally filtered.' This clearly differentiates it from siblings: search_datasets (discovery), list_sectors (catalog navigation), and get_dataset_info (metadata), by explicitly positioning it as the tool that retrieves the live data rows themselves.

    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 gives clear contextual usage guidance: it explains pagination semantics, when a zero-row result means you have paged past the end, and the dependency flow for filters ('must match a field id from get_dataset_info exactly'). It does not explicitly state 'use X instead when...' selection criteria, so exclusions between siblings are only implied, not spelled out, so a 4 is appropriate.

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

  • Behavior4/5

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

    The description accurately lays out the tool's observable behavior: it returns schema metadata, and it cautions that field names are case-sensitive, giving the practical consequence (use the exact 'id'). It does not mention side effects, errors, or authentication requirements—but for a GET-style read-only tool these are seldom necessary. The case-sensitivity disclosure is worth credit because it changes how the agent uses the returned data.

    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?

    Every portion contributes: the opening line states the operation, the second line supplies usage context with a sequencing cue, the warning adds a necessary behavioral nuance, and the Args block gives the parameter source. No sentence is filler; the length is appropriate for the information density.

    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?

    With a single required parameter and an output schema present, the description fully covers the needed information: the dataset scope, the source of the identifier, and a critical data-quality principle. The tool is simple enough that no further prerequisites or error-handling notes are 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 input schema provides only the parameter name 'resource_id' with zero description coverage. The description compensates fully by explaining that it is a UUID and pointing the agent to 'search_datasets or the portal' for sourcing it. This eliminates any guesswork about how to obtain or format the value.

    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 the precise operation ('Get the schema of a specific dataset') and enumerates exactly what is returned: title, description, row count, and field names/types. This clearly distinguishes it from the sibling tools (search_datasets searches, query_dataset queries, list_sectors lists sectors) without any ambiguity.

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

    Usage Guidelines5/5

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

    It gives an explicit sequencing instruction: 'Call this BEFORE query_dataset when you need to know which fields exist or how to spell a filter field.' This tells the agent exactly when to use the tool and what to use with it, and the case-sensitivity warning that has a direct effect on subsequent filter construction. It could mention alternatives more cleanly, but the instruction is refreshingly complete and non-obvious.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

datagovin-mcp MCP server

Copy to your README.md:

Score Badge

datagovin-mcp MCP server

Copy to your README.md:

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/beenthatt-rehman/datagovin-mcp'

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