Skip to main content
Glama

get_note

Access the shared note for a working directory to get coordination context needed for session handoffs between coding agents.

Instructions

Read the magents-owned shared note for a working directory. Not first-party agent memory.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cwdNoWorking directory this note belongs to
contentNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.11.0

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the burden, and 'Read' does convey non-mutating behavior. It does not disclose what happens when no note exists or whether the tool can fail, but the read-only behavior is reasonably clear.

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 short sentences with no filler; the core purpose is front-loaded and the clarifying exclusion earns its place.

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

Completeness2/5

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

For a simple read tool with no output schema and no annotations, the description is mostly adequate, but the unexplained 'content' parameter is a meaningful gap. The agent cannot fully determine how to invoke the tool correctly without guessing at that parameter's role.

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?

The schema documents 'cwd' but leaves 'content' completely undescribed, and the description only reinforces the cwd concept. Since schema coverage is only 50%, the description needed to clarify 'content' but never mentions it, leaving an agent unsure whether it is a filter, output, or payload.

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 uses a specific verb ('Read') and identifies the exact resource ('magents-owned shared note for a working directory'). The closing sentence ('Not first-party agent memory') differentiates it from sibling memory tools like read_memory.

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 establishes clear context for when the tool applies (reading the shared note tied to a cwd) and explicitly excludes first-party agent memory. It does not name the alternative tool, but the sibling list makes read_memory the obvious counterpart.

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