Skip to main content
Glama

The 402 Wall

Repaint an owned block

set_pixels

Repaint pixels or update message/link on a block you own. Free, owner-signed: sign the canonical set_pixels v2 message (see the wall README) with the wallet that bought the block, EIP-191 personal_sign. ts is unix ms within 5 minutes of server time.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tsYesunix ms used in the signed message
linkNo
coordYesBlock coordinate "col,row", col 0-159, row 0-89
pixelsNo
messageNo
signatureYesEIP-191 signature by the owning wallet

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.4/5.0
Behavior4/5

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

With zero annotations, the description carries the full behavioral burden and does it well: it discloses that the operation is free, that it mutates state, that it requires owner-signed EIP-191 personal_sign auth, and that ts is time-limited to 5 minutes — which reveals replay protection behavior. It stops short of describing failure modes on bad signatures, but covers the critical non-obvious behaviors.

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?

Three sentences, zero filler. The main purpose is front-loaded, followed by cost/auth context, then the time constraint. Every sentence earns its place and the ordering matches the likely decision sequence for an agent.

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?

For a mutation tool with 6 parameters, no annotations, and no output schema, the description covers the essential non-obvious ground: ownership, signature flow, cost, and time sensitivity. The only notable gap is that the canonical signed-message format is deferred to the wall README, and there is no response/return guidance — minor for a mutation whose behavior is otherwise well-scoped.

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 only 50%, so the description must compensate. It adds real meaning: ts gains a freshness window, signature gains the canonical-message and owning-wallet context, and the otherwise-undocumented link/message/pixels parameters gain semantic grouping via 'repaint pixels or update message/link.' This meaningfully bridges the coverage gap, though coord-specific format details remain schema-only.

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 action pair — 'Repaint pixels or update message/link on a block you own' — naming the verb, resource, and ownership constraint in one sentence. This cleanly distinguishes set_pixels from read-only siblings (get_block, get_wall) and from buy_block, which is the acquisition tool.

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?

The ownership precondition is explicit ('on a block you own', 'wallet that bought the block'), which tells the agent when this tool is applicable. It does not name sibling alternatives or state when not to use it, but the context is clear enough that an agent can infer the workflow: own a block first, then repaint it.

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

A4/5.0
Disambiguation5/5

Each tool targets a distinct resource or action: buy_block claims, get_block reads a single deed, get_wall returns global state, list_unclaimed lists open coordinates, set_pixels updates owned blocks, and get_founding_machines is a separate registry. No two tools appear to do the same thing, and the descriptions clarify any potential overlap between get_block and list_unclaimed.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern: buy_block, get_block, get_founding_machines, get_wall, list_unclaimed, set_pixels. The verbs are clear and uniform for the operation type (get for reads, buy/set for writes, list for enumeration).

Tool Count5/5

Six tools is well-scoped for a wall interaction domain: claim, read per-block, read global state, list availability, update owned assets, and view the founding agent registry. Each tool earns its place without bloat or noticeable thinning.

Completeness4/5

Core lifecycle coverage is present: claim (buy_block), read (get_block/get_wall), update (set_pixels), and enumerate (list_unclaimed). Minor gaps exist such as no explicit tools for transferring ownership or bulk querying by owner, but agents can work around those using existing free read operations.

Resources