Skip to main content
Glama
amanharshx
by amanharshx

datasets_list

Read-only

List datasets in your Ultralytics workspace, filtered by owner or username, to review available data for training and analysis.

Instructions

List datasets in your Ultralytics workspace.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ownerNoWorkspace owner; defaults to the account owner. Takes precedence over username when both are given.
usernameNoCompatibility alias for owner.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv0.1.13
    • addedInput schema / properties / owner / description
      Added value: +"Workspace owner; defaults to the account owner. Takes precedence over username when both are given."
    • addedInput schema / properties / username / description
      Added value: +"Compatibility alias for owner."
  2. Changed1 schema field changedv0.1.12
    • addedInput schema / properties / owner
      Added value: +{
      +  "type": "string"
      +}
  3. First observedv0.1.0

TDQS

B3.4/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds no additional behavioral details beyond the obvious 'list' operation – it doesn't mention pagination, filtering, or the scope of datasets returned (e.g., owned vs. accessible).

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 a single, concise sentence with zero filler. The core purpose ('List datasets') is front-loaded, making it easy to scan. It could arguably be too sparse, but for a simple list operation it is appropriately sized.

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?

Given the tool's simplicity (no required params, no output schema), the description is adequate but has gaps. It doesn't explain the return format, whether pagination exists, or if it lists only owned datasets or all accessible ones. These missing details could leave an agent uncertain about the response structure.

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 input schema provides 100% coverage for both parameters (owner and username), with clear descriptions. The tool description adds no extra meaning or nuance beyond what the schema already states, so the baseline score of 3 applies.

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 verb 'List' and the resource 'datasets', scoped to 'your Ultralytics workspace'. This is specific and unambiguous, distinguishing it from sibling tools like datasets_get (which retrieves a single dataset) and exports_list.

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 its use case (listing datasets) but provides no explicit guidance on when to choose it over alternatives or when not to use it. There's no mention of alternatives or exclusions, leaving the agent to infer the appropriate context.

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