Skip to main content
Glama
Radiant-Core

Radiant MCP Server

Official
by Radiant-Core

radiant_get_dmint_by_algorithm

Retrieve dMint contracts matching a mining algorithm by passing its ID: 0=SHA256D, 1=BLAKE3, 2=K12, 3=ARGON2ID, 4=RANDOMX.

Instructions

Get dMint contracts filtered by mining algorithm

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
algorithmYesAlgorithm ID: 0=SHA256D, 1=BLAKE3, 2=K12, 3=ARGON2ID, 4=RANDOMX

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.6.0

TDQS

A3.5/5.0
Behavior2/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 only says 'Get', which implies a read-only operation, but it does not state return format, pagination, authorization needs, error behavior, or any side effects. For a filter tool without annotations, this leaves too much unspoken.

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 a single sentence that states the action, object, and filter in six words. It is completely free of filler and front-loads the core purpose, making it easy for an agent to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple one-parameter tool with no output schema, the description states the core purpose and the schema covers the parameter. However, it lacks usage guidance and behavioral details (e.g., whether results are limited, order, or what a returned contract contains), so it is adequate but not fully complete for an agent with no prior context.

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 input schema already fully documents the algorithm parameter with an explicit mapping (0=SHA256D, 1=BLAKE3, etc.), and schema description coverage is 100%. The description's 'mining algorithm' phrase adds no new information beyond the schema, so the baseline of 3 is appropriate.

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 uses a specific verb ('Get'), a clear resource ('dMint contracts'), and a distinct filtering criterion ('by mining algorithm'). This cleanly separates it from sibling tools like radiant_get_dmint_contracts (likely unfiltered) and radiant_get_dmint_contract (singular), so an agent can tell them apart without opening schemas.

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 when to use the tool—when dMint contracts need to be filtered by mining algorithm—but it never explicitly states when to prefer this over alternatives like radiant_get_dmint_contracts or radiant_get_most_profitable_dmint. There is no when-not guidance or direct comparison, leaving selection partially to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.