ashfields-mcp-server
Server Quality Checklist
Latest release: v1.0.0
- Disambiguation5/5
Each tool targets a distinct action: reading mint status, checking wallet state, approving spending, minting, and triggering distribution. The only slight overlap is approve_ash versus mint_ashfield's auto-approve, but both are clearly differentiated by purpose.
Naming Consistency4/5All tool names follow a verb_noun pattern and use snake_case consistently. Minor inconsistency exists between get_mint_info and check_wallet, both of which are informational but use different verbs; overall the pattern is predictable.
Tool Count5/5Five tools is well-scoped for a focused NFT minting and royalty distribution server. Each tool maps to an essential step in the workflow without unnecessary bloat.
Completeness4/5The core minting flow is fully covered: check status, inspect wallet, approve, mint, and distribute royalties. A minor gap is the lack of a dedicated way to query the RoyaltyDistributor's balance or distribution status, which would require external verification.
Average 4.5/5 across 5 of 5 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 0 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
This repository is licensed under MIT License.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
This repository includes a glama.json configuration file.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses that the tool submits a transaction and waits for on-chain confirmation, which reveals side-effecting and blocking behavior. It does not mention gas costs, failure modes, or reversibility, but the core transactional nature is transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, with the key action and resource in the first sentence and usage context plus block behavior in the second. Every sentence earns its place; no redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers what the tool does, when it is needed, and that it waits for confirmation. There is no output schema, but the description's mention of confirmation partially addresses the outcome. It could note what is returned (e.g., transaction hash) but this is a minor gap for such a simple tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description already fully explains the quantity parameter: 'Number of tokens to approve spend for (1–5). Approves quantity × 100,000 ASH.' Since the tool description adds no extra meaning beyond the schema and coverage is 100%, the baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The first sentence states a specific verb ('approves') and resource ('the Ashfields contract to spend $ASH tokens from the configured wallet'). It also contextualizes the action as a prerequisite for minting, clearly distinguishing it from sibling tools like mint_ashfield.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use it: 'Required before minting if the current allowance is insufficient.' This gives a clear condition. However, it does not explicitly name alternative tools or the when-not case (e.g., 'if allowance is sufficient, skip approval'), so it stops short of a perfect 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- 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 clearly signals a non-mutative query by using 'Returns' and 'reports' and lists exactly what data is exposed. It doesn't explicitly say 'does not modify state,' but the wording and the 'check' name make the read-only behavior clear.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, with the primary return values stated first and the additional minting capacity note second. Every word adds meaning; no filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter read tool with no output schema, the description fully specifies the return payload (address, balances, allowance, mintable count). An agent has everything it needs to invoke it correctly and interpret the result.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and an empty input schema, so the baseline is 4. There is no parameter information to add, and the description correctly omits it.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description begins with 'Returns the configured wallet address' and then enumerates four specific outputs: $ASH balance, $ASH allowance for Ashfields, ETH balance, and max mintable tokens. This gives a precise verb and resource and clearly distinguishes it from the mutation-oriented siblings (mint_ashfield, approve_ash, trigger_distribute).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description conveys a clear usage context: call this whenever you need the configured wallet's balances or allowance/minting capacity. It does not explicitly name alternatives or exclusions, but the read-only nature and specific outputs make the appropriate usage obvious.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description transparently frames the tool as a read-only status query by saying it 'returns' current state. It adds useful behavioral context by advising the agent to verify minting is active before attempting a mint, and no annotations are present to contradict or supplement this. It does not explicitly state that no state changes occur, but the name and language make that clear enough for this simple read 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/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no wasted words. The first sentence front-loads the core purpose and return fields; the second adds a clear, actionable usage instruction. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is complete for a simple, zero-parameter, read-only status tool. It enumerates the expected return contents (price, minted total, remaining supply, active flag, contract addresses) and tells the agent what to do with the result. No output schema exists, but the description covers the essential information an agent needs.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the input schema is trivially complete. Per the baseline for 0-parameter tools, the description does not need to compensate for undocumented parameters, and it appropriately adds no irrelevant parameter guidance.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
Starts with a specific verb and resource: 'Returns current Ashfields mint status' and enumerates the exact data fields returned. This clearly distinguishes get_mint_info from siblings like mint_ashfield and trigger_distribute, which perform actions rather than report status.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit usage guidance: 'Call this first to confirm minting is open before attempting a mint.' This clearly tells the agent when to invoke the tool, though it does not discuss when not to use it or directly compare it with sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- 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 of behavioral disclosure. It transparently reveals the permissionless nature, the exact distribution mechanics (1% to creator, 1% to team, 8% buy-and-burn to 0xdead), and the minimum ETH threshold. It does not mention failure/revert behavior or gas requirements, but the primary side effects and constraints are well covered.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Four sentences, each with a distinct job: identify the contract call, state permissionlessness, explain the fund distribution, and specify the execution threshold. There is no filler or redundant restating of the tool's name.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, no-output-schema transaction trigger, the description covers the target contract, the permission model, the exact economic effects, and the precondition. An agent has everything necessary to decide whether and how to invoke this tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema contains zero parameters, so the description has nothing to add beyond the schema. The baseline score of 4 for a parameterless tool applies, and the description does not introduce any confusing parameter-related claims.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a precise verb-resource pair, 'Calls distribute() on the RoyaltyDistributor contract,' and then details the exact purpose via the ETH split. This clearly distinguishes it from siblings like get_mint_info and approve_ash, which operate in different domains.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
It states that the tool is permissionless and can be triggered by any wallet at any time, which gives clear context for when to use it. It also provides a concrete precondition ('Requires at least 0.005 ETH'). It does not explicitly name alternatives or exclusions, but the sibling tools are functionally unrelated, so this is acceptable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior5/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations present, the description carries the full behavioral disclosure burden and does so thoroughly. It disposes the auto-approve, transaction submission, confirmation handling, permanent burn to 0xdead, and returned OpenSea links. No contradictions with annotations exist.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences with no wasted words. The primary action is front-loaded, followed by the execution sequence and return value in logical order. Every piece of information earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter tool with no output schema, this description is complete. It explains the pre-approve behavior, the transaction flow, the destruction of tokens, and the return format. An agent can correctly invoke it and interpret its results without needing more context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already document the quantity parameter at 100% coverage, so the baseline is 3. The description adds meaningful parameter context by stating the cost consequence — burning 100,000 $ASH per token — which helps an agent reason about quantity choices. This is incremental value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb+resource pairing: 'Mints one or more Ashfields NFTs.' It clearly differentiates the tool from siblings like get_mint_info (read-only info) and approve_ash (approval only) by showing the full mint flow. Nothing about the purpose is ambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description states that approval is handled automatically when allowance is insufficient, which effectively tells the agent that a separate approve_ash call is unnecessary before minting. However, it does not explicitly name alternatives or state when not to use this tool, so it falls just short of full marks.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/smoke711711/ashfields-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server