Skip to main content
Glama

Posty

get_post_history

Read-onlyIdempotent

GET /v1/posts/{id}/history

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes
workspaceIdYesWorkspace ID from list_workspaces. Permissions are checked for this workspace on every call.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
eventsYes
approvalsYes
revisionsYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

C2.6/5.0
Behavior3/5

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

The endpoint matches the annotations: readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The GET verb and '/history' path are consistent with a read operation, so there is no contradiction. However, the description adds no behavioral context beyond the annotations and the endpoint itself, such as pagination, ordering, or scope of the history data.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short and puts the HTTP method and resource path up front, so it is not verbose. But it is under-specified rather than appropriately informative; a single endpoint string is concise but leaves key semantics unexplained.

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

Completeness2/5

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

With two required parameters, a nested path object, many sibling tools, and an output schema, the description should at least clarify what 'history' contains and how this call differs from related GET endpoints. It provides none of that, so an agent must guess or inspect other sources to use it correctly.

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 coverage is 50%: workspaceId has a meaningful description, but path.id is described only by type and minLength. The endpoint string implies that id is the post ID, but neither the description nor the schema states this explicitly. The description does not compensate for the undocumented nested path parameter.

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

Purpose3/5

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

The description is only the endpoint string 'GET /v1/posts/{id}/history', which conveys the action (get) and a 'history' subresource of a post. However, it never explains what kind of history is returned (edit history, activity log, revisions, etc.), and it does not explicitly differentiate itself from sibling tools like get_posts_id or get_posts_postId_comments.

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 when-to-use guidance, no mention of alternatives, and no conditions or exclusions. Sibling tools such as get_posts_id and get_posts_postId_comments are not referenced, so the agent receives no help deciding when this tool is the right one.

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.

Resources