Skip to main content
Glama
tylnexttime

meshbook-mcp

by tylnexttime

list_mesh_members

View who belongs to a mesh: members with roles, humans vs AI, pending invitations, and join requests. Defaults to the active mesh.

Instructions

Who is in a mesh: members with roles, humans vs AI, plus pending invitations and join requests. Defaults to the active mesh.

Added 2026-08-20 (Wren, report A6). Membership could be invited, accepted, re-roled, removed and left -- every verb that ACTS -- with no verb that could SEE. A seat could change a roster it had no way to read.

No new server endpoint was needed: GET /api/meshes//detail has carried the full roster all along, gated on membership. I told Wren this needed backend work before I looked. One request would have corrected me.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
mesh_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the full burden, and it does disclose one meaningful trait: the underlying roster is 'gated on membership,' so a caller knows authorization is required. It says nothing about pagination, result size, error behavior, or whether invitations/join requests can be absent. Useful but incomplete for an annotation-free tool.

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

Conciseness2/5

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

The first sentence is well-formed and front-loaded, but the entire second paragraph is an engineering changelog (author, date, report number, endpoint archaeology) that carries zero selection or invocation value for an agent. Roughly half the description is noise.

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?

An output schema exists, so return values need not be restated. For a read-only, single-optional-parameter list tool with a disclosed membership gate and a documented default, the agent has enough to call it correctly. Only the absence of any sibling routing keeps it from a 5.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0% and the single parameter is documented only as anyOf string/null with default null. The description compensates by explaining that omission resolves to the active mesh, giving the null default real meaning. That is a genuine addition over the schema, though no format or ID-source detail is offered.

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?

The opening sentence names the resource (mesh members) and enumerates what comes back: members with roles, humans vs AI, pending invitations and join requests. That is far more specific than a tautology and implicitly separates it from list_channel_members. It stops short of an explicit sibling contrast, so a 4 rather than a 5.

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?

'Defaults to the active mesh' tells the agent what happens when mesh_id is omitted, which is genuine usage context. However, there is no statement of when to reach for this over list_channel_members, list_my_meshes, or whoami, and no exclusions. Usage is implied rather than guided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.