Skip to main content
Glama
wkbaran

Medium Reader MCP

by wkbaran

Get list posts

get_list
Read-only

Retrieve posts from a specified Medium reading list or named list, sorted by most recently added.

Instructions

Posts saved in the reading list or one of the user's named lists, most recently added first.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
listNo"reading-list" (default) or the name / id of one of the user's lists, as shown by list_reading_lists.reading-list
limitNo
cursorNonextCursor from a previous call.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, so the description doesn't need to cover those. It does add the ordering (most recently added first), which is useful, but it omits details like pagination behavior via cursor or error handling when a list is not found. The added context is minimal but not contradictory.

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?

The description is a single, focused sentence that states the primary action and ordering. It's efficient with no redundancy and front-loads the core purpose.

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

Completeness3/5

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

For a read-only list retrieval tool with open-world semantics and no output schema, the description is minimally sufficient but lacks usage guidance and pagination details. The schema covers parameters well, so the main gap is absence of when-to-use context, which would round out completeness.

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 description coverage is 67% (list and cursor have descriptions, limit does not). The description adds no parameter-specific information beyond what's already in the schema. Since coverage is above 50%, the baseline of 3 is appropriate; the description doesn't compensate for the undocumented limit parameter.

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?

The description clearly states the tool retrieves posts from a reading list or named lists, ordered by most recent first. This distinguishes it from siblings like get_feed, get_recent_posts, and search_posts by identifying the specific resource (lists) and the ordering behavior.

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

Usage Guidelines2/5

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

The description provides no guidance on when to choose this tool over alternatives. It doesn't compare with get_feed or get_recent_posts, nor does it mention prerequisites like needing a list name from list_reading_lists. Usage context is entirely implied, not explicit.

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