download_pubmed
Attempt to download PDF of a PubMed paper.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| paper_id | Yes | ||
| save_path | No | ./downloads |
Attempt to download PDF of a PubMed paper.
| Name | Required | Description | Default |
|---|---|---|---|
| paper_id | Yes | ||
| save_path | No | ./downloads |
Changes observed during successful MCP inspections.
Input schema / $schemaAdded value: +"http://json-schema.org/draft-07/schema#"Input schema / additionalPropertiesAdded value: +falseInput schema / properties / paper_id / titleRemoved value: -"Paper Id"Input schema / properties / save_path / titleRemoved value: -"Save Path"Input schema / titleRemoved value: -"download_pubmedArguments"Output schema / (root)Previous value: -{
- "properties": {
- "result": {
- "title": "Result",
- "type": "string"
- }
- },
- "required": [
- "result"
- ],
- "title": "download_pubmedOutput",
- "type": "object"
-}New value: +nullDoes the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The phrase 'Attempt to' hints at potential failure modes (e.g., paywalled or unavailable PDFs), which is useful. However, with no annotations provided, the description fails to disclose critical behavioral traits: return value format (file path vs. binary data), whether existing files are overwritten, or required authentication.
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 single sentence is front-loaded and free of fluff—every word serves a purpose. However, given the lack of structured documentation elsewhere, the description is arguably too terse rather than appropriately concise.
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 file-download tool with zero annotations, no output schema, and zero parameter descriptions, the description is critically incomplete. It omits expected return values, error handling behavior, and file system interactions necessary for safe invocation.
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?
With 0% schema description coverage, the description must fully compensate but mentions neither 'paper_id' (nor its expected format like PMID) nor 'save_path'. The agent has no semantic guidance on parameter usage beyond the property names themselves.
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 (download) and resource (PDF of PubMed paper), distinguishing it from sibling tools like 'read_pubmed_paper' (likely text extraction) and 'search_pubmed' (discovery). However, it does not specify the expected format for the paper identifier (e.g., PMID vs. DOI).
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?
Provides no guidance on when to use this tool versus alternatives. Given siblings like 'read_pubmed_paper', the agent cannot determine whether to download the PDF or read the paper content directly based on this description alone.
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.