Skip to main content
Glama
chrisconviviera

conviviera

List bookmarks

list_bookmarks
Read-only

Retrieve a paginated list of discussions you have bookmarked. Access saved threads to revisit important conversations.

Instructions

List the participant's bookmarked discussions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.0

TDQS

A3.5/5.0
Behavior3/5

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

The readOnlyHint annotation already establishes that this is a safe read operation. The description adds the participant-scoping detail, which is useful, but does not disclose behavior like pagination, ordering, or whether only the calling participant's bookmarks are included beyond what is already stated.

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?

A single, front-loaded sentence with no filler. Every word contributes to understanding the tool's purpose and scope.

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?

For a simple listing tool with one optional pagination parameter and a readOnlyHint annotation, the description is largely sufficient. It states the resource and participant scope, though it omits output format and ordering details, which are not critical for correct invocation.

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

Parameters2/5

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

Schema description coverage is 0%, so the description was expected to compensate for parameter semantics, and it does not. The 'page' parameter is partially self-explanatory from the schema's type/default/minimum, but the description adds no meaning about how pagination works or how page relates to the result set.

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?

Description names a specific verb ('List'), a specific resource ('the participant's bookmarked discussions'), and clearly distinguishes from siblings like list_threads and bookmark. An agent knows exactly what this tool does.

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

Usage Guidelines2/5

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

No explicit guidance on when to use this tool versus alternatives such as list_threads or bookmark. The intended context is implied by the name and description, but no when-not-to-use conditions or alternative routing are provided.

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