Hive Evaluator
Server Details
MCP server: NEED + YIELD + CLEAN-MONEY gates with EIP-3009 attestations · Hive Civilization
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- srotzin/hive-mcp-evaluator
- GitHub Stars
- 0
- Server Listing
- HiveEvaluator MCP Server
Available Tools
4 toolsevaluator_attest_jobAInspect
Trigger settlement and emit the on-chain attestation for a completed job. Settles to the Hive Safe Treasury on the chain selected at submission. Requires EIP-3009 signature for Base/Ethereum.
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes | Job ID returned from evaluator_submit_job | |
| signature | No | EIP-3009 signature (required for EVM chains) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses the primary on-chain effects (settlement and attestation), the destination treasury, and a required signature. It does not cover failure modes, reversibility, or return values, but provides substantial transparency beyond a minimal update call.
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?
Three short sentences, front-loaded with the core action and succinctly covering destination and requirements. Every sentence adds necessary information with no fluff.
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?
The description captures the essential behavior, destination, and prerequisite. It lacks details on return values or confirmation mechanics, but for a simple 2-parameter transactional tool without an output schema, it is reasonably complete.
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?
Both parameters have descriptions in the schema (100% coverage), so the baseline is 3. The description reiterates the signature requirement and adds chain context ('chain selected at submission'), but does not add new meaning about the parameters themselves.
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 uses a specific verb ('Trigger settlement and emit the on-chain attestation') and clearly identifies the resource ('a completed job'). This distinct action contrasts with sibling tools like evaluator_submit_job and evaluator_get_job, making its purpose unambiguous.
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?
It states the tool is for 'a completed job' and notes 'Requires EIP-3009 signature for Base/Ethereum', providing clear context on when it is appropriate. However, it does not explicitly mention alternatives or when not to use this tool, so it lacks full exclusion guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
evaluator_get_feesAInspect
Get the live evaluator fee schedule (3 tiers, settlement currencies, recipient addresses, ERC-8183 / Virtuals ACP v2.0 spec). No auth required.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It openly states that no authentication is needed, that the data is live, and what the response contains (tiers, currencies, addresses, spec). It implies a read-only operation via 'Get' and describes the return scope, which is sufficient for a zero-parameter fetch.
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 a single, front-loaded sentence that states the purpose and key details without redundancy. The parenthetical list of content elements is compact and relevant. Every word earns its place.
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?
Given there are no parameters, no output schema, and no annotations, the description adequately covers all necessary context for an agent to select and invoke the tool. It specifies what will be returned (fee schedule with tiers, currencies, addresses) and the operational requirement (no auth), making it fully self-contained.
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?
There are no parameters, so the schema is trivially complete. The baseline for 0 params is 4; the description adds value by explaining what the (absent) input context is—none needed. It doesn't need to describe parameters, so it earns the baseline.
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 opens with a specific verb and resource: 'Get the live evaluator fee schedule'. It clearly distinguishes from sibling tools (which deal with job lifecycle) by focusing on the fee schedule, and provides useful detail about the contents (3 tiers, currencies, addresses, spec).
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 description gives clear context for when to use this tool: when you need the live fee schedule. It explicitly notes 'No auth required', which is a helpful prerequisite. While it doesn't mention alternatives or exclusions, the tool's purpose is distinct from siblings, so the guidance is adequate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
evaluator_get_jobAInspect
Retrieve evaluation status, verdict, and attestation for a previously-submitted job.
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes | Job ID returned from evaluator_submit_job |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden of behavioral disclosure. It clearly indicates a read-only retrieval operation and lists the returned data (status, verdict, attestation), but it does not mention potential side effects, authentication requirements, rate limits, or behavior if the job is not yet complete. This is adequate but lacks depth beyond the basic read operation.
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 a single, front-loaded sentence that concisely states the verb and resource. Every word earns its place, with no redundancy or filler.
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 fetch tool, the description is functionally complete in listing what it returns and that it is for previously submitted jobs. However, it omits usage context such as sequencing with sibling tools, any preconditions like job completion, and does not describe the return format (since no output schema exists). There are clear gaps in operational guidance.
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%, and the schema already documents job_id as 'Job ID returned from evaluator_submit_job.' The description adds no additional parameter context beyond what the schema provides, so it meets the baseline for high schema coverage without adding extra semantic value.
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 uses the specific verb 'Retrieve' and clearly identifies the resource: 'evaluation status, verdict, and attestation for a previously-submitted job.' This directly distinguishes it from sibling tools like evaluator_submit_job (submission) and evaluator_attest_job (attestation), making its purpose unambiguous.
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 phrase 'for a previously-submitted job' implies that this tool is used after evaluator_submit_job, but it does not explicitly state when to use it as opposed to siblings like evaluator_get_fees or evaluator_attest_job. There is no direct mention of alternatives or exclusion criteria, so usage guidance remains implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
evaluator_submit_jobAInspect
Submit a job for evaluation. Choose tier (simple, evaluation, arbitration). Job value is quoted in USDC; fee = max($0.05, value * tier_bps / 10000). Returns job_id and quoted fee.
| Name | Required | Description | Default |
|---|---|---|---|
| tier | Yes | 'simple' (0.5%), 'evaluation' (1.0%), or 'arbitration' (2.0%) | |
| context | No | Free-form context for the evaluator (max 4 KB) | |
| subject_did | Yes | DID of the agent or output being evaluated | |
| submitter_did | Yes | DID of the submitting agent | |
| job_value_usdc | Yes | Notional job value in USDC |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. It does disclose the fee formula and the return values, which is helpful. However, it does not mention potential side effects (e.g., job persistence, triggering evaluation), permission requirements, or whether the submission is reversible, leaving some behavior undefined.
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 concise (two sentences) and front-loaded with the main verb and resource. Every sentence adds value: the first defines the action and tier choices, the second provides fee calculation and return expectations. No fluff or repetition.
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 submission tool with no output schema, the description covers the essential aspects: what it does, how to choose tiers, how fees are computed, and what it returns. It lacks explicit error-handling or next-step guidance, but given the surrounding sibling tools, the context is reasonably complete.
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?
While the schema already covers 100% of parameters, the description enhances the semantics by explaining the fee formula (max($0.05, value * tier_bps / 10000)) and explicitly tying tier to the fee percentages. This adds meaning beyond the schema's individual parameter descriptions, especially for tier and job_value_usdc.
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 action ('Submit a job for evaluation') and the resource, and distinguishes it from sibling tools (attest, get_fees, get_job) by focusing on the submission workflow. It also mentions the tier options and fee computation, which are specific to this tool.
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 description provides clear context on when to use the tool (to submit an evaluation job) and details the tier selection. However, it does not explicitly mention when not to use it or direct users to alternative tools (e.g., using evaluator_get_job to check status), so it stops short of fully explicit usage guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
- Removed
hive_earn_leaderboard - Removed
hive_earn_me - Removed
hive_earn_register
7 tool updates
- First observed
evaluator_attest_job - First observed
evaluator_get_fees - First observed
evaluator_get_job - First observed
evaluator_submit_job - First observed
hive_earn_leaderboard - First observed
hive_earn_me - First observed
hive_earn_register
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
MCP server: solver auction across io.net / Akash / Render with signed receipts · Hive Civilization
MCP server: DePIN reward routing, capacity verification, settlement reports · Hive Civilization
Unified gateway hosting 5 Hive Civilization MCP servers (evaluator, trade, depin, compute-grid…
HiveCapital MCP Server — autonomous investment layer for AI agents
Related MCP Servers
- AlicenseNot gradedqualityCmaintenancePublic MCP server for HiveWallet, enabling agent-native wallets with USDC transfers and HiveDNA 3-proof receipts on Base.MIT
- AlicenseNot gradedqualityDmaintenanceMCP server for autonomous agent minting, crossbreeding, and evolution. Mint new AI agents with genetic lineage tracking, cross-breed capabilities between agents, run evolution cycles, and discover complementary agents in the HiveBazaar marketplace.MIT
- AlicenseNot gradedqualityCmaintenanceAn MCP server for coordinating a permissionless swarm of AI agents to discover, investigate, and synthesize on-chain anomalies across EVM chains. Agents authenticate via off-chain ECDSA and earn reputation through useful contributions.MIT
- AlicenseAqualityAmaintenanceMCP server for on-chain attestation and wallet trust profiles across 31 EVM chains and Solana. Privacy-preserving boolean verification, ECDSA-signed responses, compliance templates.271931MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a clearly distinct purpose: submit, retrieve fees, retrieve job status, and attest. No two tools overlap in function, so there is no ambiguity for an agent selecting between them.
All tool names follow the same 'evaluator_<verb>_<object>' pattern, with verbs like submit, get, and attest. This consistent structure makes the toolset predictable and easy to navigate.
With only 4 tools, the server is tightly scoped to the core evaluator workflow. Each tool serves an essential function without unnecessary redundancy or bloat.
The toolset covers the complete job lifecycle: fee lookup, submission, status/verdict retrieval, and final attestation. There are no obvious missing operations for the stated purpose.