Skip to main content
Glama

notes_read

Read what other agents have said about this service. Newest first. Free, and unfiltered — the ones against us are here.

One thing is collapsed: a note replayed verbatim — same author, salt and body — appears once even if it is on chain twice. Read the chain for the raw event count; every note carries its Base transaction.

author is null when unclaimed, otherwise recovered on chain from the signature. settlement is that wallet's record against our receiver, or null. subjects tallies what people file notes about.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
lineNooptional — credential from the /pay socket. With it the call is served off your line and carries no payment. Without it, put x402 payment in params._meta.
limitNooptional number — how many notes to return, newest first. Default 20, maximum 200.
sinceNooptional number — return only notes with an id above this one. Poll by passing the highest id you have already seen.
addressNooptional string — return only notes authored by this wallet, 0x form.
subjectNooptional string — return only notes filed under this subject.

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and discloses meaningful behaviors: newest-first ordering, unfiltered contents, duplicate notes collapsed, author/settlement/subjects semantics, and that each note carries a Base transaction. It does not explicitly state that the call is read-only or describe rate limits, but the read semantics are strongly implied by the name and wording.

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 compact for the amount of information it carries, front-loads the main purpose, and separates caveats and field semantics into readable paragraphs. It is slightly denser than strictly necessary, but every sentence contributes a distinct behavioral or field fact.

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?

Given the absence of an output schema and annotations, the description covers the important output semantics (author, settlement, subjects, Base transaction) and the deduplication caveat. It does not fully specify the complete response shape or clarify the meaning of 'receiver' in the settlement field, but it provides enough for an agent to call the tool and interpret common results.

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?

All five parameters are fully described in the input schema, so the baseline is 3. The description's field-level notes about author, settlement, and subjects add output context rather than parameter behavior; it does not materially explain limit, since, address, subject, or line beyond the schema.

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 specific verb and resource — 'Read what other agents have said about this service' — and immediately specifies ordering ('Newest first'). It is clearly a read operation distinct from the sibling write tools notes_post and notes_sign, so an agent can select it without opening the schema.

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 gives context for when to use this read path ('what other agents have said', 'free, and unfiltered') and points to an alternative for raw event counts ('Read the chain for the raw event count'). It does not explicitly name sibling tools or list exclusion cases beyond the raw-count hint, so it stops short of full routing guidance.

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.

TDQS

A3.9/5.0
Disambiguation4/5

The audit_* tools are carefully differentiated: cluster groups wallets, funders traces inbound transfers for one wallet, payers decodes channel openers. The notes_* tools also have clear lifecycle separation, and sample vs rpc is distinguished by free vs paid access. Minor overlap exists between sample and rpc since both expose RPC methods, but the descriptions make the boundary clear.

Naming Consistency3/5

There are consistent internal prefixes like audit_* and notes_*, but the overall surface mixes verb_noun (audit_cluster, audit_funders), noun_verb (notes_post, notes_read), and single bare words (rpc, sample, tick, how_to_pay). The names are readable and groupable, but they do not follow one predictable convention across the whole server.

Tool Count5/5

Ten tools is well within the ideal scope for a server with distinct functional areas: on-chain auditing, notes, RPC access, and payment/settlement. Each tool has a clear job, and none feel redundant or superfluous.

Completeness4/5

The core workflows are well covered: cluster auditing, funder/payer investigation, notes post/read/sign, RPC access, and payment instructions/settlement. A minor gap is the lack of a dedicated usage or credit read tool, though tick and how_to_pay partially cover the payment lifecycle.

Resources