Skip to main content
Glama

bettermode

List posts

bettermode_list_posts
Read-only

List posts across the community, with pagination. Optionally scope to one or more spaces (spaceIds), order (orderBy, passed through as a plain string), and reverse. Returns edges[].node (title, shortContent, space, owner) plus pageInfo and totalCount. Bettermode GraphQL query: posts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax number of posts to return (1..100, default 10).
offsetNoNumber of posts to skip (offset-based pagination).
orderByNoOrder field, passed through as a plain string (e.g. "createdAt", "publishedAt").
reverseNoReverse the sort order.
spaceIdsNoRestrict to posts in these space ids.

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already indicate readOnlyHint=true, and the description adds valuable behavioral context: it details the return structure (edges[].node with fields, pageInfo, totalCount) and mentions the underlying GraphQL query ('posts'). No contradictions.

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?

The description is concise (~50 words) and front-loaded with the main action. Every sentence serves a purpose: listing, pagination, optional scoping/ordering, and return structure. No redundant or vague phrasing.

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?

The description explains return fields, pagination parameters, and the underlying query. It could mention that limit/offset are for pagination (already in schema) and that posts are returned globally if no spaceIds, but overall it's nearly complete for a list tool without an output 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 coverage is 100%, so baseline is 3. The description adds limited value beyond the schema—e.g., it restates 'scope to spaces' and 'passed through as a plain string' for orderBy, but these are already in the schema descriptions.

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?

The description clearly states 'List posts across the community, with pagination'—a specific verb and resource. It distinguishes from siblings like bettermode_get_post (single post) and bettermode_list_members (different resource) by focusing on listing posts.

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 provides clear guidance on optional parameters (spaceIds, orderBy, reverse) and mentions pagination via limit/offset. It doesn't explicitly state when not to use or alternative tools, but the context is sufficient for the agent to infer usage.

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.1/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: get vs list for members, posts, spaces, plus get_network and search. There is no ambiguity between tools.

Naming Consistency5/5

All tools follow a uniform 'bettermode_verb_noun' pattern with lowercase snake_case. Verbs are consistently 'get', 'list', or 'search'.

Tool Count5/5

With 8 tools, the server covers the essential read operations for a community platform without being overwhelming or too sparse.

Completeness2/5

The tool set is entirely read-only; there are no create, update, or delete operations for members, posts, or spaces, which are significant gaps for comprehensive community management.