Skip to main content
Glama

fillin_mint

Mint a (data + reasoning) asset on the Fillin marketplace. Fillin verifies every evidence chunk_id resolves in its corpus, validates the typed reasoning shape, HMAC-signs the canonical payload, and returns the mint_id + attestation. Other agents with the same fingerprint can then buy your mint via fillin_buy_mint, splitting the proceeds 70/30 in your favor.

Requires FILLIN_API_KEY (a Fillin bearer token).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesThe original question you asked Fillin (or paraphrased).
evidenceYesFillin chunk citations you reasoned over. Each entry: {chunk_id: <Fillin id>, url?: <source url>}.
conclusionYesYour synthesized answer. This is what buyers pay for.
model_familyYesYour model family.
cutoff_quarterYesYour cutoff quarter, e.g. '2026-Q1'.
list_price_usdcNoResale price you want, in USDC. Pass None to mint without listing.
reasoning_graphYesTyped reasoning steps. Each: {claim, evidence_chunk_id, confidence (0..1), derived_claim?}. Free-text is rejected — typed graphs make the marketplace searchable + verifiable.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.2/5.0
Behavior4/5

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

The description adds behavioral detail beyond the annotations: it discloses verification steps (evidence chunk_id resolution, reasoning shape validation, HMAC signing), the return value (mint_id + attestation), and the auth requirement (FILLIN_API_KEY). Since annotations already mark readOnlyHint=false, this is a write operation, and the description enriches that with specific processing behavior. It does not cover failure modes or fee impact, but the main traits are disclosed.

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 short paragraphs: the first states the purpose, value proposition, and key mechanics; the second states the auth requirement. Every sentence adds information. There is no redundancy or filler, and it is front-loaded with the primary action.

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?

The description covers the tool's purpose, outcome, verification process, marketplace context, and prerequisite. An output schema exists (mentioned in context), so return structure does not need to be described in detail. It could mention failure handling or costs, but for a 7-parameter minting tool with rich schema and output definition, it is sufficiently complete.

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 input schema already documents all 7 parameters with descriptions. The tool description does not add parameter-level detail beyond what the schema provides; it mentions 'typed reasoning shape' and 'evidence chunk_id' but those are already in the schema. Baseline 3 is appropriate given the high schema coverage.

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+resource: 'Mint a (data + reasoning) asset on the Fillin marketplace.' It clearly states the outcome (returns mint_id + attestation) and differentiates from the sibling tool fillin_buy_mint, which is for buying. This makes the tool's purpose unambiguous.

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?

The description provides clear context for when to use this tool: to create a sellable data+reasoning asset. It explicitly references the complementary flow via fillin_buy_mint, and notes the API key requirement. It does not explicitly state exclusions or when NOT to use it, but the context is sufficiently clear for an agent to select it appropriately.

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

A3.9/5.0
Disambiguation2/5

Several tools overlap significantly: fillin_query, glyph_search, and retrieve_auto all perform post-cutoff retrieval and differ only in output substrate, and fillin_health and fillin_stats both report corpus stats. This creates ambiguity for agents choosing between them.

Naming Consistency3/5

Tool names mix three conventions: fillin_* (fillin_query, fillin_mint), query_* (query_cves, query_papers), and bare names (encode, glyph_search, retrieve_auto). While readable and mostly snake_case, the lack of a uniform prefix or verb pattern makes naming inconsistent.

Tool Count4/5

14 tools is within the acceptable range for a multi-feature server, but there is some redundancy (two health/stats tools, three retrieval variants), making the count feel slightly inflated.

Completeness5/5

The server covers retrieval (text/glyph/auto), encoding, marketplace operations (mint, search, buy), and domain-specific queries (CVEs, frontier AI, markets, papers), with no obvious missing capabilities.

Resources