Skip to main content
Glama

The Revenue AI Report

List datasets

list_datasets
Read-onlyIdempotent

List the open datasets published by The Revenue AI Report, with what each contains, its column schema, and the download URL. Most are free CSV downloads.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
totalYes
datasetsYes
bundleUrlYes
datePublishedYes

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": {
      +    "bundleUrl": {
      +      "type": "string"
      +    },
      +    "datasets": {
      +      "items": {
      +        "additionalProperties": {},
      +        "properties": {
      +          "downloadUrl": {
      +            "anyOf": [
      +              {
      +                "type": "string"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "gated": {
      +            "type": "boolean"
      +          },
      +          "live": {
      +            "type": "boolean"
      +          },
      +          "slug": {
      +            "type": "string"
      +          },
      +          "summary": {
      +            "type": "string"
      +          },
      +          "title": {
      +            "type": "string"
      +          },
      +          "url": {
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "slug",
      +          "title",
      +          "summary",
      +          "gated",
      +          "url",
      +          "downloadUrl"
      +        ],
      +        "type": "object"
      +      },
      +      "type": "array"
      +    },
      +    "datePublished": {
      +      "type": "string"
      +    },
      +    "total": {
      +      "type": "number"
      +    }
      +  },
      +  "required": [
      +    "total",
      +    "datePublished",
      +    "bundleUrl",
      +    "datasets"
      +  ],
      +  "type": "object"
      +}
  2. First observed

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so the agent knows it's a safe read operation. The description adds that most datasets are free CSV downloads, which is useful but not deeply behavioral. No mention of pagination, output size, or any potential side effects, but given the zero-param and read-only nature, this is adequate.

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 two sentences, direct, and front-loads the core purpose (listing datasets) before adding details about content and download URL. No filler or redundant phrasing.

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 key information an agent needs: what is listed (datasets), what each entry includes (contents, schema, URL), and the access type (free CSV download). With an output schema present, the description doesn't need to detail return structure. Minor gap: doesn't clarify whether the list is exhaustive or filtered, but for a zero-param tool this is 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?

Since the tool has zero parameters, there's no schema to describe, making a baseline 4 appropriate. The description doesn't need to add parameter semantics, and it doesn't; it clearly explains what the output contains instead.

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 lists open datasets published by a specific source (The Revenue AI Report), and specifies the content of the listing: what each dataset contains, schema, and download URL. This is specific and distinguishes it from siblings like list_frameworks or list_publications.

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 browsing available datasets, but does not state when to prefer this over get_dataset or other list tools. No explicit exclusion or alternative naming, though the 'open datasets' qualifier gives some context. Without entering get_dataset's schema, an agent might not know the difference.

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