Read one blog article
get_articleFull text (markdown) of one published article, by slug from list_articles.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Article slug, e.g. "dea-telemedicine-flexibilities-2026" |
get_articleFull text (markdown) of one published article, by slug from list_articles.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Article slug, e.g. "dea-telemedicine-flexibilities-2026" |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover read-only, idempotent, and non-destructive behavior. The description adds valuable context beyond that: it states the response format (markdown) and that only published articles are returned, which is useful agent information.
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 a single, tightly written sentence that front-loads the most important information (full text, markdown, one article). Every word earns its place and no redundancy is present.
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, the description covers the return format (markdown), the input source (slug from list_articles), and the applicable scope (published articles). With no output schema, the description adequately conveys what the agent will receive. No critical details are missing.
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 'slug' parameter with an example. The description additionally states the slug comes from list_articles, giving the agent a direct source for where to obtain a valid value. This adds meaning beyond the schema.
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 states a specific action and resource: returns full-text markdown of one published article. It also distinguishes itself from list_articles by specifying this takes a slug from that list. An agent can clearly identify the tool's purpose.
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 slug from list_articles' provides clear usage context by tying this tool to the output of list_articles. It implies the proper workflow without explicitly listing alternatives or exclusions, so it earns a 4 rather than a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.