koine_get_piece
Traits + current owner of one KOINE token: generation, morphemes (R/B/T/L), parent token ids, seed, owner.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | token id (0-23 for the genesis) |
Traits + current owner of one KOINE token: generation, morphemes (R/B/T/L), parent token ids, seed, owner.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | token id (0-23 for the genesis) |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It states what data is returned, including the useful distinction of 'current owner,' but does not mention whether the operation is read-only, how errors are handled, or any other behavioral caveats. This is adequate but not thorough.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one efficient sentence with the key point front-loaded: traits plus current owner. The colon-separated field list adds concrete detail without verbosity. No redundant or filler wording is present.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter lookup with no output schema, the description enumerates the return fields, which is the critical missing information. Minor gaps such as the exact representation of the owner or behavior for nonexistent ids remain, but they are not severe for this tool's complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%: the sole 'id' parameter is already documented as the token id with a range hint for the genesis. The description adds only that the token is a 'KOINE token,' which is marginal and does not meaningfully extend the schema's parameter documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the resource ('one KOINE token') and the data returned: traits and current owner, with specific fields listed. It does not use a verb like 'retrieve' and does not explicitly differentiate from siblings such as koine_provenance, so it falls short of a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The scope 'one KOINE token' and the phrase 'current owner' imply when the tool is appropriate: for a single token's current state rather than lists or provenance. However, it does not explicitly state when to use it over alternatives or when not to use it, so usage guidance is only implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
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.
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.
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.
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.