Get Deep Dive
get_deep_diveGet a specific deep dive by ID, including its full analysis text.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The deep dive ID |
get_deep_diveGet a specific deep dive by ID, including its full analysis text.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The deep dive ID |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true, so the safe read behavior is known. The description adds the useful detail that the full analysis text is returned, but it does not mention behavior such as 404 handling or response shape. This is acceptable given annotations but not richly transparent.
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?
The description is one compact sentence that front-loads the core action and resource, then adds the key return detail. Every word earns its place with no redundancy.
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?
For a simple single-parameter read operation with a clear ID schema and readOnlyHint annotation, the description is complete. It states what is returned ('full analysis text') and the retrieval criterion, which is sufficient for an agent to invoke it correctly.
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 schema already fully documents the single 'id' parameter with a UUID format and description 'The deep dive ID', giving 100% schema coverage. The description only restates that the lookup is by ID, adding no new parameter-level meaning.
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?
The description clearly states the action ('Get'), the specific resource ('a specific deep dive by ID'), and what is included ('full analysis text'). This distinguishes it from list_deep_dives, which would return multiple items, and from create/delete/research tools.
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?
The phrase 'by ID' clearly signals this tool is for fetching one known deep dive rather than enumerating all deep dives. It does not explicitly name alternatives like list_deep_dives, but the context is sufficiently clear for an agent to select it appropriately.
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.