Hive Backup
Server Details
Snapshot and restore service for agent state and DID-bound configuration
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- srotzin/hive-mcp-backup
- GitHub Stars
- 0
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.8/5 across 3 of 3 tools scored.
Each tool has a clearly distinct purpose: create snapshots, list snapshots, and restore snapshots. There is no overlap or ambiguity.
All tool names follow the consistent pattern 'backup_<action>', with verbs (create, list, restore) clearly indicating the operation.
With 3 tools, the server is well-scoped for a basic backup service, covering creation, listing, and restoration without unnecessary bloat.
The tool surface covers the core operations (create, list, restore), but is missing a delete/remove snapshot tool, which is a common expectation for backup management.
Available Tools
3 toolsbackup_createAInspect
Create a snapshot. Body may be a string, JSON value, or { base64: string } for binary up to 10 MB. Returns the snapshot id, SHA-256 digest, and size. Tier 0; storage is metered nightly at $0.01 per GB-month via x402.
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | Snapshot content. String, JSON object, or { base64: string } for binary. | |
| name | Yes | Human-readable label for the snapshot. | |
| metadata | No | Optional caller metadata, stored verbatim. | |
| agent_did | Yes | Stable agent identifier; storage is grouped and billed by this value. | |
| content_type | No | MIME type. Default application/octet-stream. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It clearly lays out the input format (string, JSON, or base64 binary), size limit (10 MB), and output fields (id, SHA-256 digest, size). It also mentions billing (Tier 0, $0.01/GB-month). This provides solid behavioral insight beyond the schema.
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 compact three-sentence paragraph, front-loaded with the action 'Create a snapshot,' followed by essential details. Every sentence adds value without redundancy.
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 absence of annotations and output schema, the description covers creation purpose, input constraints, return values, and billing. It does not address error handling or uniqueness constraints, but is largely complete for a create tool.
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 input schema already describes each parameter (100% coverage). The description adds value by specifying the 10 MB size limit for body and explaining that agent_did groups storage and billing. This enriches understanding beyond the schema descriptions.
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 specifies the verb 'Create' and the resource 'snapshot', and includes details on body format and return values, clearly differentiating it from list and restore tools.
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 creating snapshots but does not explicitly state when to use this tool versus backup_list or backup_restore. It provides constraints (size limit, billing) but lacks explicit when-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
backup_listAInspect
List snapshots, optionally filtered by agent_did and a created_at window. Returns a point-in-time view with id, name, sha256, size_bytes, and created_at. Free.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Page size, 1..500. Default 50. | |
| since | No | Lower bound on created_at, in epoch seconds. | |
| until | No | Upper bound on created_at, in epoch seconds. | |
| offset | No | Page offset. Default 0. | |
| agent_did | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries the full burden. It discloses that the operation is free and provides a point-in-time view, but lacks details on side effects, auth requirements, or rate limits. Adequate but not comprehensive.
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?
Two concise sentences: first covers purpose and filters, second covers return fields and cost. No redundant or extraneous information.
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 no annotations and no output schema, the description covers core functionality but omits pagination mechanics (limit/offset) and snapshot lifecycle context. Sufficient for basic usage but leaves gaps for a new user.
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 80% (4 of 5 parameters have descriptions). The description adds context by grouping filters as a 'window' and mentioning return fields, but does not expand beyond schema explanations for limit/offset or agent_did.
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 verb 'list' and resource 'snapshots', and specifies optional filters (agent_did, created_at window) and return fields. It is distinct from siblings backup_create and backup_restore.
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 explicit guidance on when to use this tool versus alternatives. The description mentions 'Free' but does not indicate prerequisites, when not to use, or contrast with sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
backup_restoreAInspect
Restore a snapshot by id. Verifies the SHA-256 digest before returning the body. Tier 2; $0.05 per restore via x402. Inbound only.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Snapshot id returned by backup_create. | |
| verify_only | No | If true, only verify integrity and return the digest. Default false. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description bears full burden. It discloses SHA-256 verification and inbound-only access, but does not explicitly state that the restore is a write operation or what happens on verification failure.
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?
Extremely concise: three sentences, each adding distinct value (function, verification, cost/direction). No redundant or missing information for its length.
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?
Lacks details on return format (only says 'returns the body'), error scenarios, or prerequisites (e.g., snapshot must exist). For a mutation tool with no annotations, more context is needed.
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%, so the description adds minimal extra meaning beyond confirming the id comes from backup_create. The description's mention of verification aligns with the verify_only parameter but doesn't deepens understanding.
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?
Clearly states 'Restore a snapshot by id' with a specific verb and resource. Differentiates from sibling tools (backup_create, backup_list) by focusing on restoration.
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?
Provides clear context: 'Tier 2; $0.05 per restore via x402. Inbound only.' This tells the agent when to use the tool and under what constraints, though explicit when-not-to-use is missing.
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!