Skip to main content
Glama
wkbaran

Medium Reader MCP

by wkbaran

Save to list

save_to_list
Idempotent

Save a Medium post to your reading list or a named list. Checks for existing saves to avoid duplicates.

Instructions

Save a post to the reading list (default) or one of the user's named lists. Does nothing if it's already there. Only use when the user asks.

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
postYesPost URL (any Medium or custom-domain link) or the post's hex id.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already indicate the tool is mutating and idempotent. The description adds concrete behavioral detail with 'Does nothing if it's already there' and the default-list behavior, which helps the agent predict outcomes without contradicting the annotations.

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 three short sentences with no filler. The key action, default behavior, idempotency, and usage guardrail are all front-loaded and each sentence adds value.

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

Completeness5/5

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

For a simple two-parameter tool with annotations and full schema coverage, the description is adequately complete. It covers the action, default, duplicate behavior, and the condition to invoke it; no critical operational details are missing.

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 100%, so the schema already documents both parameters. The description mainly restates the default list behavior and does not add material parameter-level detail beyond the schema.

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 uses a specific verb ('Save') and a clearly defined resource (a post to a list). It also distinguishes itself from sibling tools like remove_from_list and list_reading_lists by explicitly stating the default reading list and named-list behavior.

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

Usage Guidelines4/5

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

The description provides clear context for when to use the tool ('Only use when the user asks') and explains the default and named-list targets. It does not explicitly name alternatives or when-not-to-use conditions, but the purpose is distinct enough among siblings.

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