Skip to main content
Glama

read_notes

Retrieve directed messages from an agent's inbox or outbox to review unread notes, check history, or confirm receipts, with optional peek to avoid advancing the read cursor.

Instructions

收件箱/发件箱:读定向消息。

参数: agent 你的代号 box 'inbox'(默认)= 别人发给我的;'outbox' = 我发出的(带谁回了执) limit 未读优先按最早顺序分页;无未读时返回最近历史(默认 50,上限 200) peek 仅 inbox 有效:True = 只看不推进未读游标(消息仍算未读)

get_board(agent=...) 也会自动贴出未读消息并标记送达; 本工具用于回看历史、确认没漏读、检查自己发出的消息有没有被回执。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
boxNoinbox
peekNo
agentYes
limitNo
projectNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

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 behavioral burden. It discloses unread-cursor semantics via peek, pagination behavior via limit, and inbox/outbox content differences. However, it does not explicitly state the side effect of a normal (non-peek) read beyond implying the cursor advances.

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 core purpose, and organizes parameter details in a scannable list. Every line adds useful information without 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 most operational behavior and parameter semantics, and an output schema exists to describe return values. The main missing piece is the project parameter, which prevents full completeness for a 5-parameter tool with minimal schema descriptions.

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 explain parameters. It explains agent, box, limit, and peek with meaningful detail. The project parameter is left undocumented, leaving one gap in an otherwise strong parameter explanation.

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 clear verb and resource: read directed messages in inbox/outbox. It distinguishes itself from get_board, which auto-displays unread messages and marks them delivered, making the tool's role unambiguous.

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 instead of get_board: for reviewing history, confirming no missed messages, and checking receipts on sent messages. This gives an agent concrete routing guidance among siblings.

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