Hive DePIN
Server Details
MCP server: DePIN reward routing, capacity verification, settlement reports · Hive Civilization
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- srotzin/hive-mcp-depin
- GitHub Stars
- 0
- Server Listing
- hive-mcp-depin
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.5/5 across 3 of 3 tools scored. Lowest: 2.6/5.
Each tool has a distinct purpose: creating a listing, fetching the match fee, and listing providers. There is no overlap or ambiguity between them.
All tools follow the depin_verb_noun pattern (create_listing, get_match_fee, list_providers), which is consistent and predictable.
Three tools is within the ideal 3-15 range, and each earns its place by covering a core marketplace function without redundancy.
The set covers create and list operations but lacks update/delete and get-single-listing, leaving obvious gaps in the listing lifecycle. Fee lookup is included but no management of listings is possible.
Available Tools
3 toolsdepin_create_listingCInspect
List physical infrastructure capacity (storage TB, compute cores, GPU VRAM, bandwidth Mbps, sensor sample rate, etc.). 22 metadata fields supported. Match fee 0.15%.
| Name | Required | Description | Default |
|---|---|---|---|
| kind | No | Listing kind (default: depin_provider) | |
| region | No | Geographic region | |
| vram_gb | No | VRAM for GPU providers (GB) | |
| agent_id | Yes | Operator agent ID | |
| gpu_model | No | GPU model for GPU providers | |
| unit_label | Yes | Pricing unit, e.g. 'per TB-month', 'per GPU-hour' | |
| capacity_gb | No | Capacity for storage providers (GB) | |
| operator_did | Yes | Operator DID for trust scoring | |
| payout_address | Yes | Settlement address | |
| unit_rate_usdc | Yes | Price per unit in USDC | |
| throughput_mbps | No | Throughput for bandwidth providers (Mbps) | |
| provider_category | Yes | storage | compute | gpu | bandwidth | energy | sensor | wireless |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries the full burden. It discloses the match fee (0.15%) and supports 22 metadata fields, which is useful context, but it does not disclose that this is a write operation (despite the name), what side effects occur, whether it requires specific authorization, or what the response looks like. The behavior is under-specified for a creation tool.
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 two short sentences with no fluff. It front-loads the main purpose and adds fee/count details efficiently. The only structural issue is the ambiguous 'List' verb, which slightly reduces clarity, but the description is still concise and well-organized.
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 the tool has 12 parameters, 6 required, and no output schema or annotations, the description is insufficiently complete. It does not state what 'create listing' means operationally, does not mention whether the listing is immediately active or pending approval, does not describe the return value, and does not reference the required fields. The fee and field count are nice, but the high complexity demands more context than provided.
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%, so the baseline is 3. The description adds some semantic value by listing example capacity types (storage TB, compute cores, GPU VRAM, bandwidth Mbps) that map to schema fields like capacity_gb, vram_gb, and throughput_mbps. However, it does not explain parameters like unit_label, payout_address, or operator_did beyond the schema. Overall, it adds marginal value but not enough to exceed 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 states the tool lists physical infrastructure capacity, which is a specific verb+resource, but the verb 'list' is ambiguous—it could mean 'create a listing' or 'display listings.' Given the tool name includes 'create' and siblings include 'depin_list_providers,' the description does not clearly distinguish this as a creation tool. The mention of metadata fields and match fee hints at creation but doesn't explicitly say so.
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?
No guidance is provided on when to use this tool versus the siblings (depin_get_match_fee, depin_list_providers). The description does not mention alternatives, exclusions, or prerequisites. Without explicit when-to-use guidance, the agent must infer the purpose from the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
depin_get_match_feeAInspect
Get the current DePIN marketplace match fee (currently 0.15%). Returned alongside settlement currencies and chains.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the transparency burden. It discloses that the tool returns the fee alongside settlement currencies and chains, and the word 'currently' signals the fee may change. It does not discuss authentication or rate limits, but these are less critical for a parameterless 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 two concise sentences, front-loading the key action and fee value. No filler or redundant information is present.
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 zero-parameter getter with no output schema, the description adequately explains what the tool returns and the current fee. It is complete for the tool's simplicity.
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?
The tool has zero parameters, so the schema provides no semantic load. The description appropriately focuses on the return value instead, meeting the baseline for parameterless tools.
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 states the tool gets the current DePIN marketplace match fee, providing a specific verb and resource. It also distinguishes itself from siblings like depin_create_listing and depin_list_providers by focusing on a read-only fee query.
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 implies the use case: when an agent needs the current match fee and associated settlement currencies/chains. It does not explicitly mention alternatives or exclusions, but the context is clear for a simple getter.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
depin_list_providersBInspect
List DePIN provider listings. Filter by category (storage, compute, gpu, bandwidth, energy, sensor, wireless), region, or capacity. No auth required.
| Name | Required | Description | Default |
|---|---|---|---|
| region | No | Filter by region (e.g. us-east, eu-west) | |
| provider_category | No | storage | compute | gpu | bandwidth | energy | sensor | wireless |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It notes 'No auth required' but fails to mention pagination, return format, or read-only nature. More critically, it mentions 'capacity' as a filter option that does not exist in the input schema, which is misleading to the agent.
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, readable sentence that front-loads the purpose and lists filters compactly. The 'capacity' mention is extraneous and not schema-backed, so it is slightly less concise than it could be.
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 list tool with full schema coverage, the description is adequate. However, with no output schema, it might be expected to mention return values or pagination. The capacity discrepancy also creates a completeness gap. Overall, it's serviceable but not thorough.
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 coverage is 100% (both parameters documented), so the baseline is 3. The description repeats the category list and region example, adding little beyond the schema. It also introduces a non-existent 'capacity' parameter, which reduces its 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 clearly states 'List DePIN provider listings' with a specific verb and resource, distinguishing it from sibling tools like depin_create_listing (write) and depin_get_match_fee (fee lookup). The filter options are enumerated, making 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.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for browsing providers with optional filters and notes 'No auth required', but it does not explicitly state when to use this tool vs alternatives or provide exclusions. The sibling tools are clearly different, but the guidance is only implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
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
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 Servers
- Alicense-qualityCmaintenanceMCP server that lets AI agents dispatch physical tasks to robot executors and track the task -> proof -> verify -> settle workflow, enabling task creation, executor discovery, proof submission, and verification status checks.MIT
- Alicense-qualityBmaintenanceAn 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
- Alicense-qualityCmaintenancePublic MCP server for HiveWallet, enabling agent-native wallets with USDC transfers and HiveDNA 3-proof receipts on Base.MIT

Proofof AI MCPofficial
AlicenseAqualityBmaintenanceProofof AI - MCP server providing AI-powered tools and automation by MEOK AI Labs6121MIT
Your Connectors
Sign in to create a connector for this server.