Skip to main content
Glama

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

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the safety/auth burden and does so well: it discloses cost (free), mutating auth model (owner-signed EIP-191 personal_sign), and the 5-minute ts freshness requirement. It does not describe error/return behavior, but core behavioral context is present.

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 sentences with no filler; the main action is front-loaded and the auth/time details are packed into the second sentence. Every clause earns its place.

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 6-parameter mutation tool with no annotations or output schema, the description covers the critical prerequisites: ownership, signer wallet, signature standard, and time tolerance. The remaining gaps (exact canonical message body, return/error semantics) are secondary and partially delegated to a README reference.

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?

The schema covers only half of the parameters, so the description compensates by naming the editable fields (pixels, message, link), explaining ts freshness, and specifying how the signature must be produced. It does not spell out the exact signed message payload, but points to the README.

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 states a specific action and resource: repaint pixels or update message/link on an owned block, and the ownership condition separates it from buy/get/list siblings. The title confirms the resource.

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 clearly indicates use only for blocks the caller owns and that the operation is free and owner-signed, which implies purchase must have happened elsewhere. It does not explicitly name buy_block as the alternative or list when-not conditions, but the ownership requirement gives enough selection context.

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 maps to a distinct action/resource: buying, reading a block, reading registry, wall overview, listing unclaimed blocks, and updating owned pixels. Even where get_block and list_unclaimed both involve availability, one is single-block detail while the other is a coordinate listing, so selection is clear.

Naming Consistency5/5

All tools use a consistent verb_noun snake_case convention (buy_block, get_block, get_wall, list_unclaimed, set_pixels). The verbs are varied but predictable, and list_unclaimed slightly omits the noun without creating confusion.

Tool Count5/5

Six tools cover the wall's core workflows without redundancy or bloat. Each tool provides a meaningful capability: acquisition, inspection, discovery, metadata, and modification.

Completeness4/5

The surface covers the main lifecycle: view wall, list unclaimed blocks, buy/claim, read deeds, and update pixels/message/link. Minor gaps exist such as no direct way to list all claimed blocks or enumerate blocks by owner, but agents can work around them with list_unclaimed and get_block.

Resources