Skip to main content
Glama

List topic ideas

list_topic_ideas
Read-onlyIdempotent

List saved topic ideas for a blog, optionally filtered by status and minimum score. Returns id, score, title, status, and source. Use the id with generate_article to write the article.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
blogIdYesTarget blog id
cursorNo
statusNoFilter by lifecycle status (default: all)
minScoreNoMinimum LLM score (0-10) to include

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
itemsYes
hasMoreYes
nextCursorYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and openWorldHint=false, so the safety profile is covered without description help. The description adds that filtering is optional and enumerates returned fields, but says nothing about the cursor/pagination behavior despite a cursor parameter existing, which is the main behavioral gap for a list endpoint.

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

Conciseness4/5

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

Two tight sentences with the core operation front-loaded and the workflow hint last. The returned-fields sentence is partially redundant given an output schema exists, but it is short and does not bloat the definition.

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 an output schema present, the description need not explain return values, and it correctly focuses on filters and the downstream generate_article link. It is nonetheless incomplete for a paginated list tool: the cursor parameter and any page-size/paging expectations go unaddressed in both the description and the schema.

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 60%: status and minScore carry schema descriptions, while limit and cursor have none. The description echoes the status/minScore semantics (including the 0-10 score range implied by 'minimum score') but adds nothing for limit or cursor, so it does not compensate for the undocumented parameters. Baseline 3 is warranted.

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?

States a specific verb and resource ('List saved topic ideas for a blog') plus the two supported filters, so the agent knows exactly what this returns. It stops short of explicitly contrasting with refresh_topic_ideas or set_topic_idea_status, which are the closest siblings, but the operation is unambiguous from the name and text.

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?

It provides a useful forward route ('Use the id with generate_article to write the article'), which tells the agent what to do next with the result. However it gives no guidance on when to pick this over refresh_topic_ideas (to fetch new ideas) or set_topic_idea_status (to change the status field it surfaces), leaving the sibling selection to inference.

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