Skip to main content
Glama
EquateItAu

ClassQuill MCP server

by EquateItAu

list_blog_posts

Read-onlyIdempotent

List blog posts from ClassQuill tutoring business data with filters for brand, status, target, and pagination. Retrieve published or draft posts for platform or org.

Instructions

List Blog Posts

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
brandNoFilter by brand (equateit | classquill).
limitNoRecords per page (default 50, max 200)
offsetNoPagination offset
statusNoFilter by status (draft | published).
targetNoFilter by target (platform | org).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
itemsYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.4

TDQS

C2.3/5.0
Behavior2/5

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

The annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false. The description adds no behavioral characteristics beyond that, such as pagination behavior, default ordering, or scope limitations. It is consistent with the annotations but contributes no extra transparency.

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

Conciseness2/5

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

The description is only three words and front-loaded, but it restates the title without earning its place. It is under-specified rather than genuinely concise, similar to a stub.

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?

The tool is simple, the schema fully documents optional filters, and the output schema exists, so the description needs to convey little about return values. However, with over 60 siblings, it provides no context for when this listing tool is the right choice; it is minimally viable but has clear gaps.

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?

Parameter schema coverage is 100%, with all five parameters (brand, limit, offset, status, target) individually documented. The description itself adds no parameter semantics, but the schema fully carries that burden, so a baseline 3 is appropriate.

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

Purpose2/5

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

The description is exactly the tool title and name: 'List Blog Posts'. It states the operation but adds no detail about scope, filters, or relation to siblings, so it is essentially a tautology rather than an independent explanation.

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 guidance about when to use this tool versus the many sibling list_* tools, nor when get_blog_post would be more appropriate for a single post. The description provides no usage context, exclusions, or alternatives.

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