Skip to main content
Glama

bettermode

List spaces

bettermode_list_spaces
Read-only

List spaces (the containers for posts — e.g. discussions, Q&A, articles) in the community, with pagination. Optionally filter by name (query), order (orderBy, a SpaceListOrderByEnum value), and reverse the order. Returns edges[].node plus pageInfo and totalCount. Bettermode GraphQL query: spaces.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax number of spaces to return (1..100, default 10).
queryNoFilter to spaces matching this name/search term.
offsetNoNumber of spaces to skip (offset-based pagination).
orderByNoOrder field — a SpaceListOrderByEnum value (e.g. "createdAt", "name").
reverseNoReverse the sort order.

TDQS

A4.3/5.0
Behavior5/5

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

Annotations already indicate readOnlyHint=true, and the description adds value by specifying pagination behavior (offset-based) and return format (edges[].node plus pageInfo and totalCount), going beyond the annotation.

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 sentences with no fluff: first sentence defines purpose and pagination, second details optional filters and return format. Front-loaded and efficient.

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?

Given no output schema, the description adequately covers purpose, pagination, filters, and return structure. It also names the GraphQL query ('spaces'). No gaps for a list tool.

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 the schema already documents parameters. The description adds marginal extra context like 'SpaceListOrderByEnum value' and pagination hints, but does not significantly deepen understanding beyond the schema.

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 the resource (spaces) and action (list), and distinguishes from siblings like 'bettermode_get_space' and 'bettermode_list_posts' by specifying containers for posts (discussions, Q&A, articles).

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 mentions optional filters and pagination, providing usage context. However, it does not explicitly state when to use this vs. alternatives like 'bettermode_get_space' or 'bettermode_search', lacking when-not guidance.

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.