Skip to main content
Glama

omnipress_list_recent

Retrieve recently saved articles from the local archive. Specify a limit to control how many results to return.

Instructions

Lists recently saved articles in the local archive.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of articles to return (default 5)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full behavioral burden. 'Lists' implies a read-only operation and 'local archive' scopes the data source, but the description does not clarify ordering, non-destructiveness, or the meaning of 'recently saved.' Adequate for a simple read tool, but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One focused sentence with no filler. The action and resource are front-loaded, making the purpose immediately understandable.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's low complexity, one documented optional parameter, and no annotations, the description is nearly complete. It could mention return format or ordering, but nothing essential is missing 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.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, and the single optional parameter 'limit' is already described with its default value. The description adds no parameter meaning, but it does not need to because the schema fully documents it.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource: 'Lists recently saved articles in the local archive.' This clearly distinguishes it from sibling tools like omnipress_publish_article and omnipress_queue_post, which imply write operations.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description makes the tool's purpose clear but does not explicitly say when to choose it over alternatives or when not to use it. Sibling names imply different operations, but the usage context is left to inference rather than stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.