Skip to main content
Glama

notes-get

Read-onlyIdempotent

Get a single note by ID, including its full Markdown body, tags, container path, linked notes (outgoing), backlinks (incoming links from other notes), file attachments, and inherited_instructions — every user-written LLM instruction layer that applies to the note, outermost first (an inbox note still carries brain plus its space root), so no separate instructions lookup is needed before editing. A missing brain entry means the user has no custom brain instructions; the defaults come from instructions-get with level 'brain'. A note in Trash returns a status: 'trashed' summary (id, title, purge deadline, how to restore) instead of its content — restore it with notes-restore to read or edit it. Required: id (integer).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesNote ID (required)

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / description
      Previous value: -"Get a single note by ID, including its full body content, tags, container, linked notes, and file attachments."New value: +"Get a single note by ID, including its full body content, tags, container, linked notes, backlinks, and file attachments."
  2. Changed1 schema field changed
    • changedInput schema / properties / id / description
      Previous value: -"Note ID"New value: +"Note ID (required)"
  3. First observed

TDQS

A4.4/5.0
Behavior5/5

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

Annotations (readOnlyHint, idempotentHint, destructiveHint false) already cover the safety profile. The description goes much further by disclosing the Trash edge case (returns a status summary instead of content), the inherited_instructions semantics (outermost-first, inbox carries brain plus space root), and the missing-brain fallback behavior. This is far beyond what annotations provide.

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 long (several dense sentences) but every sentence delivers a specific fact: return field list, instruction-layer semantics, brain-fallback, Trash behavior, and required parameter. It is front-loaded with the core purpose, so the verbosity is earned rather than padded.

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?

With no output schema and only one simple parameter, the description must carry the full explanation of what is returned and how edge cases behave. It covers the complete return field list, the Trash summary shape, and the missing-brain fallback to instructions-get. Nothing an agent needs to call it correctly is omitted.

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%, so the parameter id is fully documented in the schema as 'Note ID (required)'. The description only repeats this as 'Required: id (integer)' and weaves id into the purpose, adding no new meaning such as format constraints, valid ranges, or id-related behavior. Baseline 3 is correct.

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?

Opens with 'Get a single note by ID' and names the full content bundle (Markdown body, tags, container path, linked notes, backlinks, attachments, inherited_instructions), making it clearly distinct from notes-list, notes-restore, and instructions-get. The phrase 'so no separate instructions lookup is needed' explicitly differentiates it from the instructions-get sibling.

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 concrete routing: trashed notes are summarized and should be restored via notes-restore before reading/editing, and missing brain entries fall back to instructions-get with level 'brain'. It does not explicitly state 'use this instead of notes-list when you need one note by ID', but the ID-focused purpose implies this clearly, so it earns a 4 rather than a 5.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.