Skip to main content
Glama

Flamel Public Content

List blog posts

list_blog_posts
Read-onlyIdempotent

List published Flamel blog posts, newest first. Optionally filter by category. Returns titles, URLs, summaries, and publish dates, not full bodies.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number for pagination. Defaults to 1.
limitNoHow many posts to return (1-50). Defaults to 10.
categoryNoCategory name, e.g. "Social Media", "Strategy", "Paid Advertising", "AI & Automation". Omit for all categories.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageYes
postsYes
totalPagesYes
totalPostsYes

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already declare read-only, non-destructive, idempotent behavior. The description adds meaningful behavioral details: only published posts, newest-first ordering, optional category filtering, and the explicit exclusion of full bodies. These are useful beyond the structured fields.

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 concise sentences with no filler. The primary action and scope are front-loaded, and the return-format clarification is efficiently included without bloating the description.

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

Completeness5/5

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

For a read-only list operation with complete parameter descriptions, rich annotations, and an output schema present, the description is fully adequate. An agent knows what to expect, what to pass, and what will be returned.

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 100%, with each parameter clearly documented (page, limit, category, including defaults and allowed values). The description mostly restates the category filtering option without adding parameter-level meaning beyond the schema, so baseline 3 is appropriate.

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?

Clearly states the specific action ('list'), resource ('blog posts'), scope ('published'), ordering ('newest first'), and return fields ('titles, URLs, summaries, publish dates'). The 'not full bodies' clause distinguishes it from get_blog_post.

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

Usage Guidelines4/5

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

The description implies when it should be used (browsing published post summaries) and what it will not do (return full bodies), which points toward get_blog_post for full content. It does not explicitly name alternatives or exclusions, but the context is clear.

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

A4.4/5.0
Disambiguation5/5

Each tool targets a distinct content type and action: get_* fetches a single item by slug, list_* returns collections, and search_* does full-text search. There is no overlap that could cause misselection.

Naming Consistency5/5

All tool names follow the same verb_noun pattern with snake_case: get_*, list_*, and search_*. The verbs and nouns are clear and consistent across the entire set.

Tool Count5/5

With 9 tools, the server is well-scoped for a content-focused API. Each tool covers a necessary function (individual retrieval, collection listing, or search) without redundancy or bloat.

Completeness5/5

The tool surface fully covers the domain of public Flamel content: blog posts (get, list, categories), case studies (get, list), FAQs, testimonials, company overview, and a cross-content search. No obvious read operations are missing.

Resources