Skip to main content
Glama

Misar.Blog MCP Server

List newsletter issues

list_newsletter_issues
Read-onlyIdempotent

List newsletter issues the account has sent or scheduled, newest first.

Use it to check what went out and when, or to confirm a scheduled send exists before queueing another. For WHO receives them, use list_newsletter_subscribers.

Reads only — this neither sends nor cancels an issue. Requires an API key. Returns each issue with its subject, status and send time. An empty list means nothing has been sent yet, which is not an error.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoIssues to return, 1-50, newest first. Defaults to 10.

TDQS

A4.7/5.0
Behavior5/5

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

While annotations already declare readOnlyHint=true and destructiveHint=false, the description adds value by stating 'Reads only — this neither sends nor cancels an issue' (behavioral confirmation), noting the API key requirement (auth context), previewing return fields (subject, status, send time), and explaining the empty-list edge case semantics ('not an error'). No contradiction with annotations. Genuinely useful context beyond structured data.

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?

Four sentences, each earning its place: purpose, use cases + alternative, read-only clarification with auth note, and empty-list semantics. The most critical information (core purpose and ordering) is front-loaded, and every subsequent sentence adds non-redundant value. Zero wasted words.

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 read tool with 1 optional parameter, no output schema, and rich annotations, the description is fully complete. It covers return value semantics (subject, status, send time) despite lacking a structured output schema, explains error/empty behavior, and addresses the sibling relationship. The complexity is low, and the description fully matches that complexity budget.

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%, and the single parameter (limit) is already well-documented in the schema with range, default, and ordering semantics. Per the baseline rule, a 3 is appropriate since the description doesn't need to compensate for schema gaps, and it doesn't contradict the schema. The description adds no param-specific detail beyond what the schema already provides, but doesn't need to.

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 opens with a specific verb+resource+scope construction ('List newsletter issues the account has sent or scheduled, newest first'), which precisely defines what the tool does. It explicitly distinguishes itself from the sibling tool list_newsletter_subscribers by clarifying the WHO/WHAT boundary, directly addressing the sibling context.

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

Usage Guidelines5/5

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

The description provides explicit when-to-use scenarios ('check what went out and when, or to confirm a scheduled send exists before queueing another') and names the alternative tool for a different use case ('For WHO receives them, use list_newsletter_subscribers'). This is an exemplary explicit-when-and-alternatives pattern with no ambiguity left for the agent.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation4/5

The tools mostly map to clearly distinct resources and actions, with good behavioral separation between create_draft, publish_article, and update_article, and between the two title-generating tools. Some naming choices are still slightly misleading, such as get_series returning the full collection rather than a single series, and generate_cover_image references a non-existent upload_image tool.

Naming Consistency4/5

The vast majority of tools follow a clean lowercase verb_noun pattern, including create_*, get_*, list_*, and add_* names. Notable exceptions are upgrade, a bare verb that also mixes read and mutate behaviors, and get_series, which functions more like a list than a get.

Tool Count3/5

23 tools is in the heavy range for an MCP server, exceeding the ideal 3-15 span. That said, the tools do span legitimate blogging concerns such as articles, reactions, series, newsletters, analytics, and AI assistance, so the count feels broad rather than padded.

Completeness2/5

The surface covers article creation, reading, updating, and publishing, but there is no delete or unpublish for articles/drafts, no way to remove an article from a series, and no update/delete for series. The dangling reference to upload_image in generate_cover_image also suggests a missing tool, and agents will hit dead ends trying to undo publication or remove content.

Resources