Skip to main content
Glama

RCLM — Captura de datos para herramientas de IA

Cada vez que usas un asistente de programación con IA, produces razonamiento y código valiosos. RCLM (ReclainLLM) garantiza que esos datos te pertenecen. Es una capa de captura ligera que registra tus sesiones de IA de Claude Code, Gemni CLI, Codex CLI y OpenClaw, y las envía a tu cuenta personal de ReclainLLM para su búsqueda, anáisis y continuación.

Características principales

  • Hooks nativos: Integración sin configuración en Claude Code, Gemni CLI, Codex CLI y OpenClaw.

  • Sincronización histórica: Relleno retroactivo con un solo comando de todas tus sesiones de IA anterores.

  • DLP y privacidad: Ocultación automática de secretos de los archivos .env antes de que lleguen al modelo.

  • Compresión de contexto: La caché de lectura, la deduplicación de resultados, la compactación de la salida de ejecución y el redimensinado automático de imágenes reducen el uso de tokens sin perder información — consulta Compresión de contexto y DLP.

  • Conversión de contexto: Exporta cualquier sesión capturada como documeto de contexto en Markdown para continuar el trabajo en otra herramienta.

  • Proxy local: Proxy experimetal basado en LiteLLM para herramientas compatibles con OpenAI.


Related MCP server: vibe-hnindex

Inicio rápido

1. Instalar

pip install rclm
# Or for proxy support: pip install 'rclm[proxy]'

2. Configurar hooks

# Integrates with Claude Code, Gemini CLI, Codex CLI, and OpenClaw
rclm-hooks-install

Esto abrirá un navegador en reclainllm.com para vinculr tu cuenta. Una vez vinculada, cada sesión se captura automáticamente.

3. Sincronizar historial

# Upload sessions that predated the installation
rclm-sync

Conversión de sesiones (¡Nuevo!)

rclm convert-sesion genera un documeto de contexto compacto para iniciar una nueva sesión en otra herramienta. No restaura el estado privado de ejecución de la herramienta de origen.

# Export a session for Claude Code
rclm convert-session <session_id> claude -o CLAUDE.md

# Export for Gemini CLI
rclm convert-session <session_id> gemini -o .gemini

# Options
rclm convert-session <session_id> generic --no-diffs          # Omit file diffs
rclm convert-session <session_id> claude  --force-regenerate  # Use LLM for a fresh summary

Destinos compatibles: claude, gemini, codex, generic.


Plugins para agentes

RCLM incluye entradas locales de marketplce de plugns para Codex, Claude y Cursor. Cada plugn expone ReclainLLM como memoria persistente para agentes de IA mediante el servidor rclm-mcp incluido.

codex plugin marketplace add /path/to/DC-hooks-proxy
codex plugin add reclaimllm@reclaimllm-plugins

Para Claude y Cursor, añade el archivo de marketplce correspondiente de este repositorio:

  • DC-hooks-proxy/.claude-plugin/marketplce.json

  • DC-hooks-proxy/.cursor-plugin/marketplce.json

Después, autentica el servidor MCP local si aún no lo has hecho:

rclm-hooks-install --with-mcp

Inicia un nuevo hilo de agente y confirma que el plugn reclainllm y el servidor MCP están habilitados.

Herramientas MCP

Tool

Description

search_sesions

Búsqueda híbrida semántica + por palabras clave en las sesiones capturadas por tema, error, archivo o rango de fechas.

filter_sesions

Listado autoritativo de sesiones Postgres para filtros por metadatos/fechas cuando no hay una consulta de texto semántico.

search_by_filename

Historial de sesiones acotado a archivos/carpetas, p. ej., «qué cambió en auth.tsx».

get_sesion

Metadatos de resumen y un enlace de frontend para un ID de sesión.

summarize_sesion

Inccorpora el resumen de una sesión específica como contexto de trabajo, bajo petición explícita.

list_proyectos

Lista los filtros de proyeco disponibles.

file_brief

Resumen del historial reciente de un archivo antes de realizar una edición no triviel en él.

handoff

Genera un documeto de contiuación para iniciar una sesión nueva sin perder contexto.

transfer_sesion

Transmite una sesión capturada completa (mensajes, llamadas/resultados de herramientas, diffs de archivos) como un artefacto JSON versionado.

signals

Hasta 5 señales pendientes de eficiencia del flujo de trabajo (evidencia + corrección prescrita) para el proyecto actual.

replay_eligibility

Comprobación económica, solo de metadatos, de si merece la pena reproducir los mecanismos de compresión.

replay_sesion

Reproduce los mecanismos de compresión incluidos sobre una sesión capturada e informa de la reducción real de tokens de resultados de herramientas.

replay_corpus

Igual que replay_sesion, agregado en una ventana filtrada de sesiones.

replay_compara

Reproduce el mismo corpus con varias configuraciones de mecanismos en una sola llamada.

Todas las herramientas son de solo lectura: ninguna re-ejecuta comandos históricos, llama a un modelo ni modifica datos capturados.

Cuando necesites la sesión capturada completa en lugar de un resumen, pide al agente de destino que llame a transfer_session con el ID de sesión de ReclaimLLM. La herramienta transmite un artefacto JSON versionado que contiene cada mensaje capturado, llamada/resultado de herramienta, diff de archivo y campo de metadatos a un archivo temporal accesible solo por el propietario. El agente de destino lee ese archivo como contexto histórico; las llamadas a herramientas registradas nunca se re-ejecutan automáticamente.

SESSION_TRANSFER_MAX_BYTES controla el límite máximo de descarga en el backend y en local, y su valor por defecto es 100 MiB. Las transferencias nunca se truncan silenciosamente. SESSION_TRANSFER_TTL_SECONDS controla cuándo los artefactos locales son elegibles para una limpieza oportunista acotada y su valor por defecto es una hora.

Reproducción: verificación del ahorro de tokens

replay_eligibility, replay_sesion, replay_corpus y replay_compara reproducen los mecanismos de compresión incluidos en RCLM (range_cache, shell_compacton, hash_dedupe) sobre sesiones ya capturadas e informan de la reducción real de tokens de resultados de herramientas, sin llamar a un modelo ni volver a ejecutar ningún comando histórico:

  • "¿Ayudaría la compresión en mis últimas 50 sesiones?" → replay_eligibility

  • "¿Cuánto ahorró la compresión en la sesión <id>?" → replay_session

  • "¿Cuál es el ahorro agregado en mis sesiones de Codex de este mes?" → replay_corpus

  • "Comparar la compactación de shell sola frente a combinada con range cache" → replay_compare

Cada resultado muestra las sesiones consideradas, las elegibles y las excluidas; una sesión o corpus por debajo de los umbrales de turnos/llamadas a herramientas se rechaza con la restricción concreta que falla, en lugar de ofrecer un número inestable.


Referencia de CLI

Command

Description

rclm-hooks-install

Instala/configura hooks nativos para las CLI de LLM locales.

rclm-sync

Descubre y sube transcripciones históricas.

rclm convert-sesion

Exporta una sesión a contexto Markdown para cambiar de herramienta.

rclm-proxy

Inicia/configura un proxy LiteLLM para captura compatble con OpenAI.

rclm-update

Comprueda y aplica actualizaciones del paquete rclm.


Uso avanzado

Compresión de contexto y DLP

El DLP de archivos de entorno está habilitado en instalaciones nuevas y conserva una exculsión explícita guardada:

rclm-hooks-install --compress                          # Reduces tool-result tokens in Claude Code, Codex, and Cursor
rclm-hooks-install --dlp                                # Explicitly enable or re-enable DLP
rclm-hooks-install --no-dlp                             # Explicitly disable DLP
rclm-hooks-install --image-lifecycle                    # Downscales oversized screenshots/images before they reach the model
rclm-hooks-install --image-lifecycle --image-max-dim=1280  # Set the max image dimension in pixels (default 1280)

El redimensinado de imágenes (--image-lifecycle) redimensiona y recodifica las imágenes de resultados de herramientas sobredimensinadas (capturas de pantalla de página completa, salida de herramientas de captura de pantalla MCP) antes de que entren en el contexto del modelo, y nunca aumeta su escala. Se aplica realmente en las sesiones de Claude Code; en Codex, por ahora, solo informa del ahorro medido antes/después, ya que Codex CLI todavía no aplica reescrituras basadas en hooks de la salida de las herramientas MCP. Requiere el extra opcional images: pip install 'rclm[images].

La compresión de texto utiliza los hooks nativos de cada cliente de programación; no requiere tráfico de proxy ni de puerta de enlace LLM. Claude Code y Codex admiten la compactación reconocida de la salida de shell. Cursor envuelve los comandos de shell reconocidos antes de ejecutarlos y limita el reemplazo posterior del resultado a la salida MCP estructurada. Los comandos desconocidos, los fallos, las imágenes y los resultados estructurados ambiguos pasan sin cambios. La deduplicación de resultados idénticos sigue desactivada por defecto (--dedupe).

Filtros de captura por carpeta

Limita las subidas a carpetas de proyecto especificas durate la instalación:

rclm-hooks-install --include-folder=/path/to/project
rclm-hooks-install --include-folder=/work/app --include-folder=/work/infra

Usa --exclude-folder=/path/to/private para omitir carpetas especificas cuando no se haya configurado una lista blanca de inclusión.

Captura por proxy (experimetal)

Apunta tus herramientas a http://localhost:4000 para capturar las interacciones de API sin procesar:

rclm-proxy setup
rclm-proxy start

Detalles técnicos

Para obtener información sobre los modelos de datos, el funcionamiento interno de los hooks y el motor de DLP, consulta architecture.md.

Desarrollo

uv sync --extra dev          # Install dev dependencies
uv run pre-commit install    # Setup linting/formatting hooks
uv run pytest rclm/tests     # Run the test suite

Licencia: Apache-2.0

Available Tools

14 tools
file_briefA

Return a distilled brief of prior sessions that touched a file: who, when, and a short highlight of what each session did.

Use before a non-trivial edit to a file you don't already have context on — to see why it looks the way it does or what related work has touched it recently. Do not call this for every file you read; only when prior history is actually likely to change your approach. scope controls whose sessions are searched: "mine", "team", or "org". Omit scope to search the widest scope your organization's sharing settings allow.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYes
limitNo
scopeNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the burden of behavioral disclosure. It explains what the tool returns, that the result is distilled rather than exhaustive, and that scope controls whose sessions are searched. It does not discuss authentication, rate limits, or edge cases, but for a read-only informational tool the disclosed behavior is sufficient.

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?

The description is compact, front-loaded with the tool's purpose, and every sentence contributes either core behavior, usage context, or parameter explanation. There is no fluff or repetition.

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?

The description covers purpose, when to use it, what the output contains, and the main scope parameter, which is adequate for a simple read-only tool with an output schema. The only minor gap is limit semantics and edge cases like files with no prior sessions.

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?

Input schema description coverage is 0%, so the description must compensate. It explains the scope parameter well: 'mine', 'team', 'org', and the omission behavior. It also maps path to the file whose history is briefed. However, the limit parameter has no explanation of how it caps the brief, and path format is not further specified.

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 description states a specific action and object: 'Return a distilled brief of prior sessions that touched a file', and specifies the returned fields (who, when, a short highlight). It is clearly about file history rather than session text search or session summarization, though it does not explicitly name sibling tools for contrast.

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

Usage Guidelines5/5

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

The description gives explicit when-to-use guidance: 'Use before a non-trivial edit to a file you don't already have context on'. It also provides a when-not-to-use rule: 'Do not call this for every file you read; only when prior history is actually likely to change your approach.' This is strong usage routing even without naming sibling alternatives.

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

filter_sessionsA

List sessions by metadata using authoritative Postgres filters, without semantic search.

Use when the user provides no semantic text query and instead asks for sessions in a date window or matching metadata such as provider, model, project, language, category, minimum turn/tool-call counts, or code changes. Do not invent search text for these requests and do not use this tool when the user asks for sessions similar to a topic; use search_sessions.

Use provider="codex" for Codex sessions whose stored model names are in the GPT family. date_from is inclusive and date_to is exclusive; both are YYYY-MM-DD ingestion dates. scope controls whose sessions are listed: "mine", "team", or "org". Omit it to use the widest scope permitted by the organization's sharing settings. Results are capped at 100.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
modelNo
scopeNo
date_toNo
languageNo
providerNo
date_fromNo
file_pathNo
min_turnsNo
model_familyNo
project_nameNo
min_tool_callsNo
has_code_changesNo
session_categoryNo
include_changed_filesNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.7/5.0
Behavior4/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It discloses result capping ('Results are capped at 100'), date inclusivity/exclusivity, default scope behavior, and the special provider='codex' mapping. It does not discuss ordering or output format, but an output schema exists and the tool is a read-style listing.

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?

The description is compact and front-loaded with the essential purpose. Every sentence adds distinct value: purpose, when to use, when not to use, special provider handling, date semantics, and scope behavior.

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 15-parameter filtering tool with no annotations and no schema descriptions, the description is unusually complete. It covers selection criteria, exclusion criteria, date/scope/provider nuances, and result limits; the existing output schema covers return shape.

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 description coverage is 0%, so the description must compensate. It explains the non-ovious semantics of scope, date_from/date_to, provider, and the minimum-count/code-change filters. It does not individually explain limit, file_path, model_family, or include_changed_files, but these are fairly inferable and the schema provides titles.

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 opens with a specific verb and resource: 'List sessions by metadata using authoritative Postgres filters, without semantic search.' It also explicitly distinguishes itself from the sibling search_sessions, so an agent can tell them apart without inspecting schemas.

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

Usage Guidelines5/5

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

It provides explicit when-to-use guidance ('Use when the user provides no semantic text query...'), what not to do ('Do not invent search text'), and names the alternative tool for semantic-topic queries ('use search_sissions'). It also covers date semantics and scope behavior.

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

get_sessionA

Return summary metadata and a frontend link for a specific ReclaimLLM session ID.

Use only when the user asks to look at a particular session by ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
session_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It does disclose the primary output ('summary metadata and a frontend link') and implies a read-only retrieval, but it does not mention error behavior, authorization requirements, or what happens when an ID does not exist.

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?

The description is two sentences with no filler. The core function is front-loaded, and the usage constraint is stated separately and clearly. Every sentence earns its place.

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?

Given the tool's simplicity, one required parameter, and the presence of an output schema, the description is nearly complete. It explains what the tool returns and when to use it. The only notable omission is behavior for invalid or missing session IDs, which is a minor gap for a direct lookup 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 description coverage is 0%, so the description must compensate for the undocumented session_id parameter. It adds that the parameter is a ReclaimLLM session ID and that it should be a specific identifier, but it does not specify format, source, or examples. This is adequate for a single self-explanatory parameter but not rich.

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 description clearly states the action ('Return summary metadata and a frontend link') and the target resource ('a specific ReclaimLLM session ID'). It distinguishes get_session from listing/searching tools by emphasizing lookup by ID, though it does not explicitly contrast with the sibling summarize_session.

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?

The description provides an explicit use condition: 'Use only when the user asks to look at a particular session by ID.' This is clear guidance, but it does not name alternative sibling tools or explain when a different tool would be more appropriate.

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

handoffA

Package the current (or a given) session's state into a compact continuation document for starting a fresh session, without losing decisions/context already established.

Use when the current session has grown long (many turns, large context) and continuing it is getting expensive, or when the user explicitly asks to "hand off", "continue this in a new session", or "start fresh but keep context". If session_id is omitted, resolves the current session from the CLAUDE_SESSION_ID environment variable; if that isn't set, pass session_id explicitly. Returns a markdown document to paste as the first message of a new session — this does not end the current session for you.

ParametersJSON Schema
NameRequiredDescriptionDefault
session_idNo
include_diffsNo
max_diff_linesNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.7/5.0
Behavior4/5

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

No annotations are provided, so the description correctly carries the burden of behavioral disclosure. It states that the tool does not end the current session and explains fallback resolution via CLAUDE_SESSION_ID. It also clarifies that the output is a paste-ready markdown document, which is important for setting expectations.

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?

The description is well-structured and front-loaded: purpose first, then use cases, then parameter resolution, then output behavior. Every sentence adds value and there is no redundant filler or repetition of the tool name.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the main workflow and output format, and an output schema exists, so return values are handled. However, two parameters remain under-specified and there is no comparison with sibling tools like transfer_session. For a tool with no annotations and zero schema param descriptions, this is a noticeable completeness gap.

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 needed to compensate for all three parameters. It only explains session_id behavior; include_diffs and max_diff_lines are left entirely to inference from their names and defaults. An agent cannot tell what 'diffs' refers to or how max_diff_lines caps the output.

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 description clearly identifies the tool's purpose: packaging a session's state into a compact continuation document for a new session. It names a specific verb and resource, and the phrase 'for starting a fresh session' distinguishes it from plain session retrieval. It does not explicitly contrast it with sibling tools like transfer_session, so it falls short of full differentiation.

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?

The description gives explicit conditions for use: long sessions, expensive context, or user phrases like 'continue this in a new session.' It also explains how session_id resolution works, which is practical guidance. However, it does not mention when to avoid the tool or recommend an alternative sibling, so it lacks full exclusion guidance.

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

list_projectsA

List deterministic ReclaimLLM CLI project names.

Use only when the user asks to see available projects.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.9/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral burden. 'List' implies a non-mutating read operation and 'deterministic' adds some useful context, but it does not explicitly state side-effect-free behavior, authorization needs, or other operational traits.

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?

The description is two succinct sentences with the core purpose front-loaded and the usage condition stated immediately. Every word earns its place.

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 zero-parameter listing tool with an output schema present, the description is largely sufficient. It names the resource scope and when to call it, though it relies on the output schema for return details and omits any mention of prerequisites or failure modes.

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?

The input schema has zero parameters, so there is nothing for the description to document. The 0-parameter baseline of 4 applies; the description does not need to add parameter meaning.

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 description clearly states the tool 'List deterministic ReclaimLLM CLI project names', providing a specific verb and resource. It distinguishes from sibling session-oriented tools by focusing on projects, though it does not explicitly name an alternative.

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?

The phrase 'Use only when the user asks to see available projects' gives an explicit trigger condition and a mild restriction. It does not mention alternative tools or when not to use it beyond 'only when', so it stops short of a 5.

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

replay_compareA

Replay the same session corpus under multiple mechanism configurations in one call, so bundles stay attributable — e.g. compare shell compaction alone against shell compaction plus range cache. Strictly read-only; fetches each eligible session's blob once and reuses it across every config.

configs is a list of mechanism-name lists, e.g. [["shell_compaction"], ["shell_compaction", "range_cache"]]. Defaults to comparing each mechanism individually plus the full combined set if omitted. days/source/model_family/project/session_category/limit select the corpus, same as replay_corpus.

min_turns/min_tool_calls override the turn-count and tool-call-count floors (default 5/5; PRD §6's documented floors are 10/10) — reported in each config row's provenance.

ParametersJSON Schema
NameRequiredDescriptionDefault
daysNo
limitNo
sourceNoall
configsNo
projectNo
min_turnsNo
model_familyNo
min_tool_callsNo
session_categoryNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.6/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden, and it delivers: it declares 'Strictly read-only', explains the fetch-once-and-reuse behavior, discloses the default config-set behavior when configs is omitted, and exposes the surprising min_turns/min_tool_calls default of 5/5 versus the PRD's 10/10. It even notes where this appears in output ('reported in each config row's provenance').

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?

Every sentence carries distinct information: purpose and example, read-only guarantee, configs format and default, corpus selection reference, and floor overrides with provenance note. The description is dense but well-organized, front-loading the core purpose and behavior before parameter details.

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?

The description covers the essential behavior, all parameter groups, defaults, and output provenance for a tool with 9 optional parameters and a non-trivial configs structure. The only notable gap is that corpus-selection parameters are documented by reference to replay_corpus rather than described inline, and there is no mention of potential errors or limit semantics, though an output schema exists to fill in return details.

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 description coverage is 0%, so the description must compensate. It does for the complex configs parameter with a concrete example and default behavior, and for min_turns/min_tool_calls with floor values and PRD context. The corpus-selection parameters (days/source/model_family/project/session_category/limit) are grouped and delegated to 'same as replay_corpus' rather than individually explained, which is helpful but not fully self-contained.

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 first sentence states a specific verb and resource: 'Replay the same session corpus under multiple mechanism configurations in one call'. It also names the exact purpose and outcome ('so bundles stay attributable') and gives a concrete comparison example. This clearly distinguishes it from siblings like replay_corpus and replay_session by its multi-config focus.

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?

The description establishes clear context: you use this tool to compare multiple mechanism configurations in a single read-only call, with an explicit example. It references replay_corpus for corpus-selection semantics, implying a shared/different usage pattern, but it never explicitly states when to use replay_compare instead of replay_corpus or replay_session, nor gives a when-not-to-use exclusion.

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

replay_corpusA

Reproduce the shipped compression mechanisms across a filtered corpus of captured sessions and report the aggregate real tool-result token reduction. Strictly read-only.

days is an exact rolling ingestion window over the caller's own sessions (default 30). For source="codex", stored model names must start with gpt- or codex-. model_family/project/session_category further narrow the corpus. limit is the target fully eligible session count (max 100); Replay scans up to 4x that many recent session records, capped at 100, and stops when it reaches the target or exhausts the scan. Every result states sessions considered vs eligible and why the rest were excluded.

min_turns/min_tool_calls override the turn-count and tool-call-count floors (default 5/5; PRD §6's documented floors are 10/10) — reported in the output's provenance.

ParametersJSON Schema
NameRequiredDescriptionDefault
daysNo
limitNo
sourceNoall
projectNo
min_turnsNo
mechanismsNo
model_familyNo
min_tool_callsNo
session_categoryNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.6/5.0
Behavior4/5

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

With no annotations, the description carries the burden and does well: it discloses strict read-only behavior, exact rolling ingestion window semantics, model-name constraints for source='codex', the scan cap of 4x limit, and result reporting of considered vs eligible sessions. Minor gap: it doesn't state whether results are returned incrementally or only when complete, and doesn't detail output shape beyond provenance, but an output schema exists.

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

Conciseness4/5

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

The description is compact for 9 parameters and uses multiple sentences purposefully. It front-loads the core purpose and read-only nature, then explains key parameters in order. The PRD floors aside is slightly dense but valuable. Not every parameter gets an example, but no sentence is wasted.

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 complex retrieval/replay tool with 9 optional parameters, no annotations, and a rich output-schema, the description is thorough. It covers the selection algorithm, eligibility thresholds, and provenance reporting. The presence of the output schema fills return-shape details, so the description is complete enough for an agent to invoke correctly.

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 description coverage is 0%, so the description must compensate. The text explains days, source, model_family/project/session_category, limit, min_turns/min_tool_calls, and mechanisms implicitly. It grounds the default floors (5/5) against PRD §6's documented floors (10/10). It omits a detailed explanation of 'mechanisms' and 'project' semantics, but given the filter set is mostly intuitive, the description adds substantial meaning over the bare 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 begins with a specific verb and resource ('Reproduce the shipped compression mechanisms... report the aggregate real tool-result token reduction'), clearly distinguishing it as a batch replay/evaluation tool over a corpus. It also contrasts with siblings like replay_session and replay_compare by its corpus-wide aggregate focus.

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

Usage Guidelines5/5

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

The description explicitly explains when to use the tool, how the corpus is filtered, and which parameters narrow it. It communicates the relationship between the 'limit' parameter and scan behavior, the default vs PRD floors, and includes exclusions ('why the rest were excluded'). While it doesn't name an alternative tool explicitly, it provides clear and detailed guidance on invocation context.

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

replay_eligibilityA

Cheap read-only check of whether replaying compression mechanisms on captured sessions is worth doing — call this before replay_session or replay_corpus. Checks only session metadata (turn count, tool-call count, completion state, model), never fetches the full session blob, so it's fast.

Pass session_id to check one session. Omit it to check a corpus window instead, using the same days/source/model_family/project/ session_category/limit filters as replay_corpus. Always returns the funnel of sessions considered vs excluded and why — a session or corpus with few eligible sessions is itself the finding; do not keep loosening filters to force a number.

min_turns/min_tool_calls override the turn-count and tool-call-count floors (default 5/5; PRD §6's documented floors are 10/10). Lowering them trades evidence quality for sample size — state the values used alongside any result, don't drop them silently.

ParametersJSON Schema
NameRequiredDescriptionDefault
daysNo
limitNo
sourceNoall
projectNo
min_turnsNo
session_idNo
model_familyNo
min_tool_callsNo
session_categoryNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.9/5.0
Behavior5/5

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

With no annotations provided, the description fully carries the behavioral disclosure burden. It states the operation is cheap and read-only, never fetches the full session blob, checks only metadata, always returns a funnel of considered vs excluded sessions, and explains the min_turns/min_tool_calls tradeoff. This is exemplary transparency.

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 paragraphs, each earning its place: purpose and cost, invocation modes and output semantics, and parameter override caveats. The most important information is front-loaded in the first sentence, and the guidance is dense without being repetitive.

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 9-parameter tool with no annotations, the description provides complete enough context: when to call it, how to use both modes, what it checks, what it returns, and what caveats apply to parameter overrides. The existence of an output schema further reduces the need to explain return details.

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%, so the description must compensate. It gives meaningful semantics for session_id, min_turns, min_tool_calls, and the shared corpus filter set (days/source/model_family/project/session_category/limit) by referencing replay_corpus. It doesn't individually describe every parameter's allowed values or defaults, but the grouped reference is useful enough for correct invocation.

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?

States a specific verb and resource: it checks whether replaying compression mechanisms on captured sessions is worth doing. It clearly distinguishes itself from sibling tools by naming replay_session and replay_corpus as the follow-up actions it pre-empts.

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

Usage Guidelines5/5

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

Explicitly says 'call this before replay_session or replay_corpus' and explains the two invocation modes: pass session_id for a single session, omit it for a corpus window using the same filters as replay_corpus. It also warns against loosening filters to force a non-finding, which is strong usage guidance.

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

replay_sessionA

Reproduce the shipped compression mechanisms over one captured session's tool calls and report the real tool-result token reduction. Strictly read-only: no model calls, no writes, no re-execution of historical commands.

session_id defaults to your most recent complete session. mechanisms defaults to all three (range_cache, shell_compaction, hash_dedupe); pass a subset (e.g. ["shell_compaction"]) to isolate one mechanism's effect. A session below the size/turn thresholds is refused with the specific failing constraint (verdict "insufficient_data") rather than given an unstable number.

min_turns/min_tool_calls override the turn-count and tool-call-count floors (default 5/5; PRD §6's documented floors are 10/10) — reported in the output's provenance.

ParametersJSON Schema
NameRequiredDescriptionDefault
min_turnsNo
mechanismsNo
session_idNo
min_tool_callsNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations, the description fully carries the behavioral burden. It explicitly discloses read-only constraints ('no model calls, no writes, no re-execution'), defaulting behavior, refusal with verdict 'insufficient_data', and override semantics. This is exemplary transparency beyond the structured schema.

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?

Front-loaded with the core purpose, followed by safety and parameter behavior. Every sentence adds useful information, and the dense but organized structure avoids waste.

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 4-parameter tool with no annotations and an output schema, the description covers purpose, safety, defaults, failure behavior, and parameter semantics completely. Nothing an agent needs to invoke it correctly is missing.

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

Parameters5/5

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

Schema description coverage is 0%, and the description compensates fully: it explains session_id's default, mechanisms' default values and subset usage, and min_turns/min_tool_calls overrides with PRD context. Every parameter receives meaningful semantic clarification.

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?

States a specific verb ('Reproduce'), precise resource ('one captured session's tool calls'), and measurable outcome ('report the real tool-result token reduction'). It distinguishes itself from sibling replay tools by scoping to a single session and compression mechanisms, so an agent can tell what it does without opening the schema.

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?

Provides clear context: which session is used by default, how to isolate a mechanism, and how threshold overrides work. It does not explicitly name sibling alternatives or state when not to use this tool, but the usage context is specific enough to guide selection.

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

search_by_filenameA

Find prior sessions that touched a file or folder path.

Use when the user asks for changes/history for a specific file or folder and does not provide separate semantic search terms, for example "show me all changes in auth.tsx" or "show me changes under /somefolder". If the user includes semantic terms too, such as "show all auth fixes in auth.tsx", use search_sessions with file_path instead. date_from is inclusive and date_to is exclusive. Both filter by ingestion date in YYYY-MM-DD format. scope controls whose sessions are searched: "mine", "team", or "org". Omit scope to search the widest scope your organization's sharing settings allow. Do not automatically call summarize_session after this tool. This is also the explicit second step after search_sessions identifies a likely file in its changed_files result for an implementation-history question.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
scopeNo
date_toNo
date_fromNo
file_pathYes
project_nameNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.5/5.0
Behavior5/5

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

With no annotations, the description carries the behavioral burden and does so thoroughly: date_from is inclusive, date_to is exclusive, dates use YYYY-MM-DD ingestion dates, scope has defined values and a fallback default, and the tool is positioned as a non-final step. This is substantive operational context beyond what the schema exposes.

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

Conciseness4/5

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

The description is front-loaded with purpose and usage, and every sentence adds operational value. It is slightly longer than strictly necessary due to multiple prose paragraphs, but the density of useful guidance is high.

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 6-parameter tool with no schema descriptions, the description covers the core filtering semantics and workflow. It is incomplete only on limit, project_name, and exact/path-matching behavior, which would make invocation fully unambiguous.

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 description meaningfully explains file_path, date_from, date_to, and scope semantics (inclusivity, format, allowed values, default). However, schema description coverage is 0%, so the description is the only semantic source, and it omits limit and project_name entirely, leaving two of six parameters under-specified.

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 opens with a specific verb and resource ('Find prior sessions') and makes clear the input is a file or folder path. It distinguishes itself from search_sessions by contrasting semantic-term queries with path-only queries, so an agent can identify the right tool immediately.

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

Usage Guidelines5/5

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

It explicitly states when to use this tool ('Use when the user asks for changes/history for a specific file or folder and does not provide separate semantic search terms') and when not to ('use search_sessions with file_path instead'). It also documents the follow-up workflow (second step after search_sessions) and warns not to auto-call summarize_session.

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

search_sessionsA

Search prior ReclaimLLM sessions by intent using backend hybrid semantic plus BM25 search.

Use only when the user hints that similar prior work may exist, or when the task is a bug fix or performance improvement where prior context may help. If the user is unsatisfied with the first result set, do not keep retrying with changed search terms.

If the prompt includes both a file/folder path and semantic terms, pass the file/folder as file_path. If the prompt is only about a file/folder history, use search_by_filename instead. Use project_name to narrow results only when current project is known. date_from is inclusive and date_to is exclusive. Both are YYYY-MM-DD ingestion dates; turn relative requests such as "last 3 weeks" into concrete dates before calling this tool. scope controls whose sessions are searched: "mine" (only your own), "team" (your org team), or "org" (whole organization). Omit scope to search the widest scope your organization's sharing settings allow; the backend clamps a request that is wider than what is allowed. Results for sessions owned by someone else include owner_email/owner_name. Returns session IDs, short titles, highlights, and up to three changed source files. When finding which session implemented a change, use a relevant returned changed_files path with search_by_filename to inspect the latest sessions that subsequently changed that file. Do not automatically call summarize_session after this tool.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYes
scopeNo
date_toNo
date_fromNo
file_pathNo
project_nameNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations present, the description carries the full burden and delivers: it discloses date inclusivity/exclusivity, scope clamping behavior, ownership metadata in results, and the return contents. It also warns agents not to automatically call summarize_session afterward, which is a behavioral guardrail beyond what structured fields would indicate.

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

Conciseness4/5

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

The description is longer than the ideal two-sentence form, but the length is justified by the tool's complexity and the need to document ambiguous parameters and sibling routing. It is well-structured: purpose first, then usage conditions, parameter semantics, and follow-up guidance. A few sentences could be tightened, but none are filler.

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 seven parameters, no annotations, and multiple sibling tools, the description is remarkably complete. It covers when to use the tool, how to handle each parameter, what the backend does, what results look like, and how to continue the workflow with search_by_filename. The presence of an output schema also means the return-value description is a bonus, not a requirement.

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 description coverage is 0%, so the description must compensate for all seven parameters. It does so well for file_path, scope, date_from, date_to, project_name, and query implicitly via 'by intent'. The only omitted parameter is limit, which is left to inference from 'Returns ... up to three changed source files' despite being a tunable result cap.

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 opens with a specific verb and resource: 'Search prior ReclaimLLM sessions by intent using backend hybrid semantic plus BM25 search.' It clearly distinguishes this tool from search_by_filename and other siblings by focusing on semantic intent search, so an agent can tell it apart without inspecting schemas.

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

Usage Guidelines5/5

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

The description explicitly states when to use this tool ('when the user hints that similar prior work may exist' or for bug fixes/performance improvements), when not to retry, and names the alternative tool for file/folder history searches (search_by_filename). It also gives follow-up guidance to use search_by_filename on returned changed_files paths, which is unusually actionable.

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

signalsA

Open workflow-efficiency Signals for the current project and the caller's own account.

Use only when the user asks why a session or project is expensive, what workflow efficiency issues exist, or explicitly asks about ReclaimLLM Signals — not for general status checks. Returns up to 5 open signals (pattern, evidence, projected savings), read-only, changes nothing. If cwd is omitted, resolves from the current working directory of this MCP server process.

ParametersJSON Schema
NameRequiredDescriptionDefault
cwdNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.9/5.0
Behavior5/5

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

Although no annotations are provided, the description compensates fully by stating the operation is read-only, changes nothing, and returns up to 5 open signals with pattern/evidence/projected savings. It also documents the cwd resolution behavior when omitted. This is more behavioral transparency than most tool descriptions provide.

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?

The description is compact, front-loaded with core purpose, and every sentence adds value: usage conditions, return shape, side-effect caveat, and cwd behavior. No fluff or redundancy.

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 the tool's simplicity — one optional parameter, no required parameters, an output schema present, and read-only semantics — the description covers all needed context: when to call, what it returns, that it has no side effects, and how the parameter behaves.

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?

While schema description coverage is 0%, the description does compensates for the single cwd parameter by explaining the default resolution behavior. It does not fully specify what the cwd value means when provided, but the parameter name and the fallback explanation are sufficient for an agent to use it correctly in most cases.

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 identifies the action ('Open workflow-efficiency Signals') and the exact resource scope ('current project and the caller's own account'). It also distinguishes itself from generic status queries by limiting use to cost/efficiency questions, making it easy for an agent to tell apart from siblings like get_session or search_sessions.

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

Usage Guidelines5/5

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

The description provides explicit conditions for use: when the user asks why a session/project is expensive, when workflow efficiency issues are implied, or when ReclaimLLM Signals are explicitly requested. It also explicitly excludes general status checks, giving the agent clear and actionable guidance.

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

summarize_sessionB

Return reusable markdown context for a ReclaimLLM session using backend export-context flow.

Use only after an explicit user request such as "summarize ", "use this session", or "add as context". Do not infer this request from search results alone.

ParametersJSON Schema
NameRequiredDescriptionDefault
session_idYes
include_diffsNo
max_diff_linesNo
force_regenerateNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

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 transparency burden. It adds useful context about the backend export-context flow and the output form, but it does not disclose side effects (e.g., whether force_regenerate mutates cached state), performance, or permission implications.

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?

The description is two short sentences, front-loaded with the main purpose and followed by guardrails and examples. Every sentence adds necessary guidance, with no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The output schema covers return-value structure, and the usage preconditions are clearly stated. However, with no annotations and opaque parameters, the description is not complete for an agent deciding among siblings such as get_session or understanding force_regenerate behavior.

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

Parameters1/5

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

Schema description coverage is 0%, and the description does not explain any of the four parameters. The examples only imply that session_id identifies a session; include_diffs, max_diff_lines, and force_regenerate are left entirely to inference from their names and defaults.

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 description uses a specific verb and resource: 'Return reusable markdown context for a ReclaimLLM session.' It clearly conveys the tool's function and differentiates it from search/list siblings by focusing on export-context output, though it does not name a sibling explicitly.

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 gives explicit trigger conditions with example phrases and a negative instruction: 'Do not infer this request from search results alone.' It lacks an explicit mention of alternatives, so it doesn't fully meet the highest bar.

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

transfer_sessionA

Download the full captured session into a secure local artifact for another AI tool.

Use only when the user explicitly asks to move or load the whole session rather than a summary. The returned file preserves captured messages, tool calls/results, file diffs, and metadata. It cannot restore provider-private runtime state. Historical tool calls are read-only data and must not be executed automatically.

ParametersJSON Schema
NameRequiredDescriptionDefault
session_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.4/5.0
Behavior5/5

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

With no annotations, the description carries the full behavioral burden and does so thoroughly: it states what the returned artifact contains, what it cannot do (restore provider-private runtime state), and that historical tool calls are read-only and must not be executed automatically. This is a strong safety and limitation disclosure.

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?

The description is three sentences, front-loaded with the core purpose, followed by usage constraint, then content/limitations/safety. No filler or repetition.

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?

The tool is low-complexity (one parameter, output schema present), and the description supplies all needed behavioral context: when to use it, what it returns, what it cannot preserve, and a safety warning. Nothing essential is missing for an agent to invoke it correctly.

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%, and the description adds no guidance on session_id despite being the only and required parameter. It never explains where to obtain the session_id or how it is validated, so the description does not compensate for the schema's minimal 'Session Id' text.

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 opens with a specific verb ('Download') plus a precise resource ('the full captured session') and outcome ('secure local artifact for another AI tool'). It also contrasts with 'a summary', which distances it from summarize_session and other retrieval siblings.

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 gives an explicit invocation condition ('Use only when the user explicitly asks to move or load the whole session rather than a summary'). However, it does not name sibling tools like get_session or summarize_session as alternatives, so agents must infer the routing boundary from context.

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

TDQS

A4/5.0
Disambiguation3/5

Most tools are clearly distinct (list_projects, get_session, summarize_session, handoff, transfer_session), but the replay family (replay_eligibility, replay_session, replay_corpus, replay_compare) and the search family (search_sessions, search_by_filename, filter_sessions) have overlapping boundaries that require careful reading. The descriptions do a good job of disambiguating, but an agent could still confuse replay_eligibility with replay_session, or search_sessions with filter_sessions.

Naming Consistency4/5

The naming is mostly consistent with verb_noun patterns (list_projects, search_sessions, filter_sessions, get_session, summarize_session, transfer_session, replay_eligibility, replay_session, replay_corpus, replay_compare). Minor deviations include file_brief and handoff, which use noun/verb-only forms instead of a clear verb_noun pattern, and search_by_filename breaks the pattern slightly.

Tool Count5/5

14 tools is a reasonable, well-scoped count for a session-management and replay-analysis server. Each tool serves a distinct purpose within the domain: discovery, retrieval, summarization, handoff, transfer, signals, and replay analysis. No tool feels redundant or superfluous.

Completeness4/5

The tool surface covers the core session lifecycle well: list/search/filter sessions, get/summarize sessions, file-based history, handoff, transfer, signals, and replay analysis. Minor gaps include no tool for deleting sessions or managing projects, but those are likely outside the server's stated purpose. The replay workflow is well covered with eligibility check, single-session replay, corpus replay, and comparison.

Maintenance

ActivityActive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    Local MCP server to index your codebase once and search it across AI sessions with keyword, semantic, or hybrid search, keeping all data on disk.
    105
    4
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Enables multiple coding agents (Claude Code, Codex, Cursor) to discover each other's sessions, search transcripts, ask questions, and handoff tasks through a shared MCP server.
    5
    7
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ReclaimLLM/RCLM'

If you have feedback or need assistance with the MCP directory API, please join our Discord server