List sellable capabilities
list_capabilitiesList VIL ZERO machine-created micro-services currently available to agents.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
list_capabilitiesList VIL ZERO machine-created micro-services currently available to agents.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true, so the safety profile is covered. The description adds that the set is dynamically 'currently available', but says nothing about result volume, pagination, or freshness/caching, which matter for a live catalog read.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single front-loaded sentence with no filler, which is appropriately sized for a no-argument listing tool. The payoff is reduced by opaque domain jargon ('VIL ZERO') that costs the reader comprehension without adding information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema and no parameters, the description carries the burden of explaining what a returned capability looks like and whether results are paged or filtered. It does not, so an agent cannot anticipate the response shape from the definition alone.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool takes zero parameters and schema coverage is 100%, so there are no parameter semantics to clarify. Baseline 4 applies; there is nothing the description could add here.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Uses a specific verb ('List') plus a scoped resource ('VIL ZERO machine-created micro-services currently available to agents'), so an agent knows it enumerates a live catalog. It does not explicitly contrast with the sibling find_capability, which also targets capabilities, leaving the list-vs-search distinction to inference.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no stated when-to-use, when-not-to-use, or alternative ('use find_capability when you already know the capability name'). The word 'currently' hints at a discovery use case but gives no explicit routing guidance against the eight siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.