Skip to main content
Glama
BlogFactoryHQ

Ghost Publisher MCP

List Ghost posts

list_posts
Read-onlyIdempotent

Retrieve concise Ghost post records to get exact IDs and updated_at values before updating or publishing. Supports filtering by status, tag, author, and dates.

Instructions

List concise Ghost post records. Use this before updating or publishing to obtain exact IDs and updated_at values.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagNo
pageNo
limitNo
orderNoupdated_at_desc
searchNo
statusNoall
author_idNo
updated_afterNo
updated_beforeNo
published_afterNo
published_beforeNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
metaYes
postsYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.10.1

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so safety is covered. The description adds genuine value beyond them by disclosing the output shape ('concise' records) and the operational purpose (fetching IDs and updated_at for subsequent mutations). It omits pagination behavior and default limits.

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?

Two short sentences, zero waste, with the operation stated first and the workflow rationale second. Nothing is redundant or padded.

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?

An output schema and annotations exist, so return values and safety need not be explained. However, with 11 undocumented filtering/pagination parameters, the description is thin for a tool of this complexity; it should at least hint at what can be filtered.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

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

Schema description coverage is 0% across 11 parameters, including filters like tag, search, status, author_id, and four date bounds. The description mentions no parameter at all, so an agent must infer filter semantics entirely from bare names and enum values. This fails to compensate for the coverage gap.

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

Purpose4/5

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

Specific verb+resource: 'List concise Ghost post records.' The word 'concise' usefully signals this returns trimmed records rather than full post bodies, distinguishing it implicitly from get_post. It does not explicitly name a sibling alternative, so it falls short of a 5.

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?

Explicit when-to-use: 'Use this before updating or publishing to obtain exact IDs and updated_at values' gives a concrete workflow context and rationale. It does not state when NOT to use it or name alternatives like get_post, so no exclusion guidance.

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