Skip to main content
Glama

get_blog_post

Retrieve a single blog post, including full PlateJS content, by ID or slug for CMS content display or editing.

Instructions

Get a single blog post (including full PlateJS content) by ID or slug.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
id_or_slugYesBlog post UUID or slug

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral burden. It usefully discloses that the response includes full PlateJS content (not just metadata), but says nothing about behavior when the ID/slug is missing, whether drafts are returned, or auth requirements.

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?

A single sentence that front-loads the verb and resource, then adds the one detail (full content) most likely to affect tool choice. Nothing is wasted.

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?

With no output schema and no annotations, the description is adequate for a simple getter and correctly flags the full-content payload. It still omits the most relevant behavioral detail for a by-ID getter: what happens on a not-found or invalid slug.

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% for the single parameter, so the schema already documents 'Blog post UUID or slug'. The phrase 'by ID or slug' in the description simply mirrors that and adds no new syntax or format guidance. Baseline 3 applies.

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?

The description names a specific verb and resource ('Get a single blog post') and pins down the retrieval key ('by ID or slug'), which implicitly separates it from list_blog_posts and update_blog_post. It stops short of explicitly naming those siblings as alternatives, so it is clear but not maximally differentiated.

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?

There is no statement of when to use this tool versus list_blog_posts or update_blog_post, and no prerequisites or exclusions are given. The read semantics are inferable from 'Get', which is only implied guidance.

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