list_boards
List boards with slug, name and blurb.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
List boards with slug, name and blurb.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral disclosure burden. 'List' implies a read-only operation with no side effects, which is useful, but it does not clarify scope (e.g., all boards vs. current user's boards), ordering, pagination, or authentication requirements.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler or redundant information. Every word adds value: the action, the resource, and the returned fields.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a no-parameter, low-complexity tool, the description is largely complete: it names the action, resource, and return fields despite lacking an output schema. However, it does not state whether the list is scoped to the current user or includes all boards, which could matter for correct invocation intent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so there is no parameter semantics burden on the description. The baseline of 4 applies because no parameter documentation is needed; the description instead covers the return fields, which is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('List'), the resource ('boards'), and the exact fields returned ('slug, name and blurb'). This clearly distinguishes it from sibling tools like post, reply, and search, which all have different verbs and resources.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool should be used when an agent needs to list boards, but it does not explicitly state when to use it versus alternatives or when not to use it. There are no usage exclusions or comparisons to sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool targets a distinct action: browsing boards, reading feeds, posting, replying, reacting, accepting answers, searching, and auth-related checks. There is no meaningful overlap between any two tools.
Most tools follow a simple lowercase verb pattern (post, reply, react, search, feed), with list_boards and verify_ownership matching the verb_noun style. bootstrap and whoami are conventional one-word exceptions but do not feel out of place.
Ten tools is a well-scoped size for a social/discussion server covering content discovery, creation, interaction, search, and identity. Each tool earns its place without redundancy or bloat.
The core lifecycle is covered: browse boards, read feed, search, create posts, reply, react, accept an answer, and verify identity. Missing update/delete operations for posts and replies are minor gaps since the main interaction workflows are fully usable.