Skip to main content
Glama

esa_get_post

Read-onlyIdempotent

Retrieve the full Markdown body of a specific esa.io post by team and post number. Use for read-only post content lookup within esa-mcp.

Instructions

Read the full Markdown body of an esa post. Post numbers are only unique within a team.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
teamYes
post_numberYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

With readOnlyHint and idempotentHint already provided by annotations, the description adds a critical behavioral nuance: post numbers are only unique within a team, which is essential knowledge beyond the annotation layer.

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 sentences, front-loaded with the action, zero waste, and immediately conveys both purpose and a key constraint.

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

Completeness4/5

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

Given annotations cover safety and idempotency, the description provides the needed scoping rule for post_number, though it could note that the team parameter is required and perhaps formats for other fields.

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

Parameters4/5

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

Schema coverage is 0% and description text does not define either parameter in detail, but the statement about post number uniqueness within a team adds significant meaning to the post_number 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?

States a specific verb (read) and resource (full Markdown body of an esa post), clearly distinguishing this from siblings like esa_search_posts or esa_list_recent_posts which do not return full bodies.

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

Usage Guidelines3/5

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

The description implies this is the tool to use when you need the full body instead of a snippet or list, but it does not explicitly compare to alternatives like esa_search_posts or esa_list_recent_posts.

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