Skip to main content
Glama
DouglasGBailey

teaching-mcp-server

List all notes

list_notes

Retrieve every saved note with ID, title, and timestamps, newest first, to scan, locate, or review stored notes.

Instructions

List every stored note (id, title, and timestamps), most recently updated first. Use get_note to fetch a note's full body.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

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 behavioral burden and discloses scope ('every stored note'), sort order ('most recently updated first'), and returned fields. It does not explicitly state read-only status or mention pagination, permissions, or rate limits, which are minor but real gaps.

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?

Two sentences, front-loaded with the core purpose and return fields, followed by the alternative routing. Every sentence earns its place with no 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?

No output schema exists, so the description appropriately explains return values (id, title, timestamps) and ordering. For a zero-parameter list tool, the purpose, return content, and get_note routing make it complete enough 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?

The tool has zero parameters, so the rubric baseline is 4. The description adds nothing about parameters, but there is nothing for it to clarify.

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 the specific verb 'List' and resource 'every stored note', then enumerates the returned fields (id, title, timestamps) and ordering. It distinguishes itself from sibling get_note by explicitly directing full-body fetches there.

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 names the relevant alternative: 'Use get_note to fetch a note's full body.' This tells an agent exactly when to choose get_note over list_notes, with no misleading gaps.

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