Skip to main content
Glama

list_dataset_topics

Discover discussion topics associated with a Kaggle dataset. Filter by search term and sort by hot to surface relevant community conversations.

Instructions

List dataset discussion topics

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
refYes
searchNo
sort_byNohot
page_sizeNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.0.0

TDQS

C2.4/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It only indicates that the tool lists topics, implying a read operation, but says nothing about pagination, sorting behavior, authentication requirements, or what the returned topics look like.

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 sentence with no filler, making it easy to parse. However, it is so minimal that it borders on restating the tool name, and it omits necessary details for a tool with four parameters.

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

Completeness1/5

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

The tool has 4 parameters, no schema descriptions, no annotations, and no output schema, yet the description provides no operational context. It fails to explain the required 'ref' parameter, the behavior of search/sort/page_size, or the expected return value.

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

Parameters1/5

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

All four parameters have empty descriptions in the schema, and the description adds no information about ref, search, sort_by, or page_size. An agent has no way to know what values are valid or what the parameters control.

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 uses a clear verb 'List' with a specific resource 'dataset discussion topics', making the tool's purpose immediately understandable. The word 'dataset' distinguishes it from sibling tools like list_kernel_topics and list_competition_topics, though it does not explicitly name those alternatives.

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?

There is no guidance about when to use this tool versus alternatives such as show_dataset_topic or list_kernel_topics. The description simply states what the tool does, with no context on selection criteria or situations where another tool would be more appropriate.

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