Skip to main content
Glama

DAEMON — on-chain generative art (8004 NONCE + KOINE)

nonce_mint_packet

Builds a ready-to-broadcast mint transaction from a mined nonce — {to, data, value} plus copy-paste commands for MetaMask Agent Wallet (mm wallet send-transaction) and the Bankr wallet API. NEVER holds, asks for, or touches a private key. Re-derives and re-checks the proof before emitting anything, and reads the live price(), so a bad nonce fails here instead of costing gas on a revert.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nonceYesThe winning nonce, as a decimal string (uint256).
minterYesThe 0x address the nonce was mined for — must be the address that sends the tx.
slippageBpsNoExtra value above price() in basis points, as a buffer against the price rising between read and broadcast. Overpayment is auto-refunded by the contract. Default 200 = 2%.

TDQS

A4/5.0
Behavior4/5

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

No annotations are provided, so the description must carry the transparency burden. It does: it guarantees never touching private keys, re-derives and re-checks the proof before emitting, reads live price(), and fails locally on bad nonces rather than burning gas. It could be more explicit that broadcasting is left to the user, but 'ready-to-broadcast' and 'copy-paste commands' strongly imply it.

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 dense sentences with no filler. The first front-loads purpose and output, the second adds a key security guarantee, and the third explains validation and failure behavior. Every sentence 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?

With no output schema and no annotations, the description covers the return shape ({to, data, value} plus commands), the prerequisite input (mined nonce), and critical failure behavior. The only minor gap is that broadcast semantics are implied rather than explicitly stated, though 'copy-paste commands' makes the intended flow reasonably clear.

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?

Schema coverage is 100%, so the schema already documents nonce, minter, and slippageBps thoroughly. The description adds only mild contextual framing, such as the nonce coming from mining and slippage protecting against price movement, which mostly mirrors the schema. This is the baseline-3 case where the schema does the heavy lifting.

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 names a specific verb and resource: it 'builds a ready-to-broadcast mint transaction from a mined nonce' and enumerates the output ({to, data, value}) plus wallet commands. This clearly distinguishes it from siblings like nonce_mine and nonce_verify, which have different roles in the nonce lifecycle.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It conveys the pipeline position: use it after a nonce is mined and before broadcasting via MetaMask Agent Wallet or Bankr. However, it never explicitly names alternatives or states when not to use the tool, so the usage guidance is implied rather than stated.

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

The koine_ and nonce_ prefixes cleanly separate two distinct collection workflows, and within each prefix every tool addresses a unique action or resource. Even the two verify tools are easily distinguished by collection prefix and their exact verification behavior.

Naming Consistency4/5

Tool names share a clear collection-prefix snake_case scheme, making grouping and selection predictable. However, not every name follows the same verb_noun form—info, census, spec, listings, and provenance are noun-style while mine, get, list, and verify are verb-style—so the pattern is consistent but not perfectly uniform.

Tool Count5/5

13 tools is well-scoped for a server covering two distinct on-chain art collections with read, discovery, verification, and minting workflows. Each tool maps to a real operation, with no obvious filler or redundant entries.

Completeness4/5

The NONCE half covers the full lifecycle well: spec, mine, mint_packet, verify, info, census, and get_piece. The KOINE half covers discovery, provenance, listings, and verification, but the only acquisition route is external Seaport fulfillment, with no KOINE purchase or fulfillment packet equivalent to nonce_mint_packet—a minor but real gap.