Skip to main content
Glama

OpenZeppelin Stylus Contracts

Stylus ERC721

stylus-erc721

Make a non-fungible token per the ERC-721 standard.

Returns the source code of the generated contract, formatted in a Markdown code block. Does not write to disk.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
infoNoMetadata about the contract and author
nameYesThe name of the contract
burnableNoWhether token holders will be able to destroy their tokens
enumerableNoWhether to allow on-chain enumeration of all tokens or those owned by an account. Increases gas cost of transfers.

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 carries the full burden. It explicitly states that the output is source code formatted in a Markdown code block and that the tool does not write to disk, which is a key side-effect disclosure. However, it does not mention authentication requirements or any potential failures, though those are less critical for a code generation tool.

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?

The description is two efficient sentences. The first sentence states the core function, and the second covers the output format and the explicit lack of disk writes. There is no wasted wording or repetition of schema details.

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 code generation tool with a simple purpose, the description is complete: it explains what is produced, how it is returned, and what is not done. The parameters are fully documented in the schema, and the description covers return format since no output schema exists. The only minor gap is not mentioning the nested info object, but the schema handles that.

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?

The schema has 100% description coverage for all 4 parameters, so the baseline is 3. The description adds no parameter-specific guidance, but none is needed because the schema already thoroughly explains each parameter, including the nested info object and its properties.

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 'Make' and clearly specifies the resource: a non-fungible token per the ERC-721 standard. This immediately distinguishes it from sibling tools stylus-erc20 (fungible) and stylus-erc1155 (multi-token standard).

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?

The description implies usage for generating ERC-721 token source code but does not explicitly state when to choose this over the sibling tools or mention any exclusions. No reference to alternatives is made, leaving the selection decision to inference from the tool name and standard.

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.4/5.0
Disambiguation5/5

Each tool generates a distinct token standard (ERC-20, ERC-721, ERC-1155), with no overlap in purpose. Agents can easily select the correct tool based on the desired token type.

Naming Consistency5/5

All tool names follow the identical pattern 'stylus-<standard>', making the naming predictable and consistent. There are no mixed conventions or stylistic deviations.

Tool Count5/5

Three tools is an appropriate, focused scope for a server dedicated to generating Stylus token contracts. Each tool earns its place with no redundancy.

Completeness5/5

The tool set covers the three most common token standards (ERC-20, ERC-721, ERC-1155), which fully satisfies the purpose of generating token contracts. No obvious gaps exist for the given domain.

Resources