List agent utilities
lab.list_toolsList all currently discoverable utilities. Prefer search_tools when a concrete intent is known.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
lab.list_toolsList all currently discoverable utilities. Prefer search_tools when a concrete intent is known.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds scoping to 'currently discoverable' utilities, but does not disclose output shape, pagination, or dynamic behavior. No contradiction with annotations.
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?
Two short sentences with no filler. The first sentence states the purpose and the second provides usage routing, making the description efficient and front-loaded.
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?
Given zero parameters, no output schema, and annotations already covering read-only/idempotent/non-destructive behavior, this description is sufficient to guide correct invocation. It clearly names what the tool returns and when to use an alternative instead.
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 has zero parameters, and schema description coverage is 100%, so there is no parameter burden for the description to carry. The baseline of 4 applies because no parameter documentation is needed.
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?
States a specific verb and resource: 'List all currently discoverable utilities.' The scope is clear and it is explicitly differentiated from search_tools, which is a sibling. The title reinforces the same purpose without ambiguity.
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?
Directly tells the agent when not to use this tool: 'Prefer search_tools when a concrete intent is known.' This is explicit routing guidance that helps select among siblings without leaving it to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Tools are mostly distinct: list, search, and describe serve different discovery needs (broad listing, intent-based search, detailed metadata), while invoke, request, and poll cover execution and capability requests. The slight overlap between list_tools and search_tools is mitigated by clear descriptions and usage guidance.
All tool names follow a consistent verb_noun snake_case pattern with the lab prefix, such as invoke_tool, list_tools, and request_capability. The naming is predictable and easy to navigate.
Six tools is a well-scoped size for a utility marketplace/agent enhancement server. Each tool covers a necessary function without redundancy or bloat.
The tool set covers the core lifecycle: discover, inspect, invoke, request new capabilities, and poll request status. Minor gaps like canceling a capability request or managing usage history are absent, but the main workflows are complete.