Skip to main content
Glama

decision_list

Read-only

List recorded decisions, most recent first, to check settled questions before starting work. Filter by project or task for relevant context.

Instructions

List recorded decisions, most recent first.

Read before starting work on something already decided, this is where settled questions live. Complements memory_search() for factual context.

Args: project: Filter by project. Defaults to MCP_PROJECT if set. task_id: Filter to decisions tied to a specific task. limit: Max results (default 20, max 200).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (default 20, max 200).
projectNoFilter by project. Defaults to MCP_PROJECT if set.
task_idNoFilter to decisions tied to a specific task.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.47.0

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already cover readOnlyHint and destructiveHint, so the safety profile is fully handled. The description adds ordering behavior (most recent first) and a practical usage note ('read before starting work'), which goes beyond annotations. No contradictions.

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?

Front-loads purpose and usage in two short sentences, then documents arguments. The Args block is redundant with the schema but standard practice; the overall length is appropriate and each 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?

An output schema exists, so return values need not be described. The description covers ordering, use case, and available filters; all parameters are optional, so an agent can invoke it correctly with zero arguments. Adequate for the tool's complexity.

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 coverage is 100% and the description's Args block repeats the schema's parameter text verbatim. It adds no extra meaning beyond the schema, so the baseline 3 is appropriate.

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 (list), resource (decisions), and key behavior (most recent first). Clear distinction from siblings decision_get and decision_write is evident from the name and description, so an agent can tell them apart.

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?

Explicitly advises reading before starting work on something already decided, and points to memory_search as a complement for factual context. This gives strong when-to-use guidance, though it doesn't name exclusions such as decision_get for single-record lookups.

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