Skip to main content
Glama
amanharshx
by amanharshx

projects_list

Read-only

List computer-vision projects from your Ultralytics workspace. Use the returned details to manage or continue work.

Instructions

List computer-vision projects 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

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, covering the safety profile. The description adds the workspace scope but does not disclose pagination, return shape, or default-owner behavior beyond what the schema already states.

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?

A single front-loaded sentence with no redundant wording. The action and object are stated immediately, and every word contributes to the meaning.

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?

For a simple read-only list with fully documented optional parameters and no required arguments, the description is sufficient for correct invocation. It does not explicitly describe the return format, but the verb 'List' conveys the output adequately and annotations cover side effects.

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?

Schema description coverage is 100%, with owner and username fully described, including defaults and precedence. The description adds no parameter-level meaning beyond the general workspace context, so the schema carries the burden.

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 uses the specific verb 'List' with a clear resource ('computer-vision projects') and scope ('your Ultralytics workspace'). This distinguishes it from sibling tools like datasets_list and exports_list, even though no alternative is explicitly named.

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?

The description gives no guidance on when to use this tool versus alternatives such as explore_projects, projects_get, or projects_create. The intended use is only implied by the verb 'List', with no explicit when/when-not conditions.

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