Skip to main content
Glama

The Revenue AI Report

Get dataset

get_dataset
Read-onlyIdempotent

Read one dataset's description, contents, full column schema, method notes, FAQs, and download URL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesDataset slug, e.g. proof-gap-index.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
datasetYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "dataset": {
      +      "additionalProperties": {},
      +      "properties": {
      +        "answer": {
      +          "type": "string"
      +        },
      +        "downloadUrl": {
      +          "anyOf": [
      +            {
      +              "type": "string"
      +            },
      +            {
      +              "type": "null"
      +            }
      +          ]
      +        },
      +        "faqs": {
      +          "items": {
      +            "additionalProperties": {},
      +            "properties": {
      +              "a": {
      +                "type": "string"
      +              },
      +              "q": {
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "q",
      +              "a"
      +            ],
      +            "type": "object"
      +          },
      +          "type": "array"
      +        },
      +        "h1": {
      +          "type": "string"
      +        },
      +        "includes": {
      +          "items": {
      +            "type": "string"
      +          },
      +          "type": "array"
      +        },
      +        "notes": {
      +          "type": "string"
      +        },
      +        "schema": {
      +          "items": {
      +            "additionalProperties": {},
      +            "properties": {
      +              "description": {
      +                "type": "string"
      +              },
      +              "name": {
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "name",
      +              "description"
      +            ],
      +            "type": "object"
      +          },
      +          "type": "array"
      +        },
      +        "slug": {
      +          "type": "string"
      +        },
      +        "url": {
      +          "type": "string"
      +        }
      +      },
      +      "required": [
      +        "slug",
      +        "h1",
      +        "answer",
      +        "includes",
      +        "schema",
      +        "notes",
      +        "faqs",
      +        "url",
      +        "downloadUrl"
      +      ],
      +      "type": "object"
      +    }
      +  },
      +  "required": [
      +    "dataset"
      +  ],
      +  "type": "object"
      +}
  2. First observed

TDQS

A4/5.0
Behavior4/5

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

Annotations already establish readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the description does not need to restate safety. It adds value by listing exactly what the read returns, which goes beyond the annotation metadata and helps the agent set expectations for the response.

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 a single, efficient sentence that front-loads the action and resource, then concisely lists the content areas returned. Every phrase earns its place and there is no redundant filler.

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 is a simple single-parameter read operation with a full output schema and strong annotations, the description is largely complete. It could slightly improve by mentioning that the slug should come from list_datasets, but that is a minor gap and likely inferable from the sibling tool set.

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?

The only parameter, slug, is already fully documented in the schema with a minLength and an example, so schema description coverage is 100%. The tool description adds no new meaning about slug beyond implying it identifies the dataset, which is the expected baseline when the schema carries the parameter details.

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?

Description clearly states the verb 'Read' plus the resource 'one dataset' and enumerates the returned content: description, contents, full column schema, method notes, FAQs, and download URL. This distinguishes get_dataset from list_datasets and other get_* siblings because it is explicitly about fetching a single dataset's full record.

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 makes the basic use case obvious: use this when you need the full details of one known dataset. However, it does not mention when not to use it or point to alternatives like list_datasets for discovering dataset slugs, so selection guidance is mostly implied rather than explicit.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources