Skip to main content
Glama

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.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 3.8/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: create snapshots, list snapshots, and restore snapshots. There is no overlap or ambiguity.

Naming Consistency5/5

All tool names follow the consistent pattern 'backup_<action>', with verbs (create, list, restore) clearly indicating the operation.

Tool Count5/5

With 3 tools, the server is well-scoped for a basic backup service, covering creation, listing, and restoration without unnecessary bloat.

Completeness4/5

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 tools
backup_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.

ParametersJSON Schema
NameRequiredDescriptionDefault
bodyYesSnapshot content. String, JSON object, or { base64: string } for binary.
nameYesHuman-readable label for the snapshot.
metadataNoOptional caller metadata, stored verbatim.
agent_didYesStable agent identifier; storage is grouped and billed by this value.
content_typeNoMIME type. Default application/octet-stream.
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1..500. Default 50.
sinceNoLower bound on created_at, in epoch seconds.
untilNoUpper bound on created_at, in epoch seconds.
offsetNoPage offset. Default 0.
agent_didNo
Behavior3/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesSnapshot id returned by backup_create.
verify_onlyNoIf true, only verify integrity and return the digest. Default false.
Behavior3/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.