Skip to main content
Glama

List blog posts

list_posts
Read-only

Every published Promptafire blog post with date, author, and a link.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, covering the safety profile. The description adds useful context by specifying that only published posts are returned and listing the fields included, but it does not mention ordering, pagination, or whether the result is a full list versus a summary.

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 core promise ('every published Promptafire blog post') and packs the output fields into a compact list. Every word earns its place; there is no repetition or filler.

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?

For a parameterless, read-only list tool, the description gives enough to understand the resource and the expected return contents (date, author, link). It does not mention sorting or pagination, but the low complexity and strong annotations make those omissions acceptable.

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?

The tool has zero parameters, so there is nothing for the description to explain beyond what the empty schema already shows. The schema coverage is trivially 100% and the description need not compensate for any parameter documentation gaps.

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 identifies the resource ('every published Promptafire blog post') and the output fields (date, author, link), making the tool's purpose clear. It lacks an explicit verb like 'list' or 'returns', but the tool name/title supply that, and 'every...' effectively distinguishes it from single-post tools like read_post.

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?

The description provides no guidance on when to use this tool versus alternatives such as read_post, search, or list_modules. It does not state any exclusions or preferred scenarios, so an agent must infer usage from the name and description.

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

A3.8/5.0
Disambiguation3/5

Most tools are distinct, but fetch overlaps with read_lesson and read_post since both can return lesson/post markdown, and search/search_curriculum have similar scopes. The descriptions help clarify some boundaries, such as search returning ids for fetch, but an agent could still be uncertain which retrieval tool to use.

Naming Consistency4/5

Tool names mostly follow a verb_noun pattern like list_modules, read_lesson, and get_module. The main inconsistencies are the bare verbs fetch and search, plus the mixed use of get versus read for similar retrieval actions.

Tool Count5/5

Eight tools is well-scoped for a content platform covering curriculum browsing, lesson reading, blog posts, and search. Each tool has a reasonable place in the workflow without excessive redundancy.

Completeness5/5

The tool surface covers the full content lifecycle: discovering tracks/modules, listing posts, searching lessons and posts, retrieving module metadata, and reading full lesson or post markdown. Access-level handling is included, so there are no obvious dead ends for the stated purpose.

Resources