Skip to main content
Glama

gemini-conversations

List recent Gemini conversations available to resume, showing id, last activity, working directory, and first prompt. Pass an id to gemini-ask as conversationId to continue that thread.

Instructions

List recent Gemini conversations the relay can resume: id, last activity, working directory, first prompt. Pass an id to gemini-ask as conversationId to continue that thread. Reads agy's local store; no model turn.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoHow many conversations to list, newest first (default 20, max 100).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.0.0

TDQS

A4.3/5.0
Behavior4/5

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

No annotations are provided, so the description carries the burden. It discloses that the tool reads 'agy's local store' and makes no model turn, signaling a read-only, low-cost operation. This is meaningful behavioral context beyond a generic list action.

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?

Three short sentences, each adding distinct value: what is listed, how to use the result, and the operational side effect. The important action is front-loaded.

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?

For a simple list tool with one optional parameter and no output schema, the description covers the returned fields, the continuation workflow, and the read-only/no-model-turn behavior. Nothing essential is missing for correct invocation.

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?

The only parameter, limit, is fully documented in the input schema with default, max, and ordering. The description does not need to restate it, and at 100% schema coverage the baseline is 3.

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 leads with a specific verb and resource ('List recent Gemini conversations the relay can resume') and lists the returned fields. It also names gemini-ask as the downstream consumer, which helps an agent distinguish listing from asking.

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?

It explicitly tells the agent to pass a returned id to gemini-ask as conversationId when continuing a thread, giving a clear use case. It does not state when to avoid this tool in favor of gemini-ask for a new conversation, but the context is clear enough.

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