Skip to main content
Glama

Server Details

Encrypted secret store and rotation for autonomous agent credentials

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
srotzin/hive-mcp-secrets
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.9/5 across 4 of 4 tools scored. Lowest: 3.3/5.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct operation: audit (log read), get (secret read), list (key enumeration), put (secret write). No overlap in functionality.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with snake_case and the common prefix 'secrets_': audit, get, list, put. This allows agents to predict tool names.

Tool Count5/5

With 4 tools covering core operations (read, write, list, audit), the count is well-scoped for a secrets management server, fitting the typical 3-15 range.

Completeness4/5

The set covers key operations but lacks a delete/remove tool. However, the put tool overwrites, so the missing delete is a minor gap that agents might work around.

Available Tools

4 tools
secrets_auditBInspect

Read the audit log for a namespace. Returns the most recent entries within an optional time window. Charges $0.002 USDC on Base.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoDefault 100, max 1000.
tx_hashNo
since_msNo
until_msNo
namespaceYes
caller_didYes
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Discloses read-only nature and time window filtering. Lacks details on pagination, rate limits, or idempotency, but cost is noted. Without annotations, more behavioral context would be beneficial.

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?

Three short, front-loaded sentences with no redundancy. Every sentence adds value: purpose, behavior, cost.

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 output format, pagination, error handling, and parameter format details (e.g., time units). Given moderate parameter count and no output schema, description is incomplete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Description hints at time window parameters (since_ms, until_ms) but doesn't explain tx_hash or caller_did. Schema coverage is low (17%) and description adds minimal meaning beyond schema.

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?

Explicitly states verb (read) and resource (audit log for a namespace), with specific detail ('most recent entries within an optional time window'). Clearly distinguishes from sibling tools like secrets_get.

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 guidance on when to use vs alternatives (e.g., secrets_list or secrets_get). Only mentions cost, not usage context or prerequisites.

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

secrets_getAInspect

Read and decrypt a secret by namespace and key. Caller must own the namespace (caller_did === namespace). Charges $0.002 USDC on Base.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYesSecret key within the namespace.
tx_hashNoBase USDC tx hash that paid the asking amount to W1.
namespaceYesOwner DID. Must equal caller_did.
caller_didYesDID of the caller. Used for namespace authorization.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations exist, so the description carries full burden. It discloses key behaviors: read and decrypt (idempotent-like but with cost), authorization requirement, and monetary charge. Lacks details on error conditions but covers the main behavioral traits.

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?

Three short, front-loaded sentences with no wasted words. Every sentence adds essential information: purpose, authorization, cost.

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?

With no output schema, the description should mention return values or expected output, which it omits. It covers purpose, auth, and cost but leaves the return format unaddressed, making it only minimally complete.

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 baseline is 3. The description reinforces the namespace-caller_did relationship and cost context but does not add new semantics beyond the schema's param 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 uses specific verb 'Read and decrypt' and names the resources 'secret by namespace and key'. It clearly distinguishes from siblings (secrets_audit, secrets_list, secrets_put) by describing a unique operation.

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?

The description states the prerequisite (caller must own namespace) and cost ($0.002 USDC), giving clear context for when to use. It does not explicitly compare to siblings, but the unique operation implies when to choose this tool.

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

secrets_listAInspect

List keys in a namespace. Read-only, no charge. Caller must own the namespace.

ParametersJSON Schema
NameRequiredDescriptionDefault
namespaceYes
caller_didYes
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden. It discloses read-only behavior and no charge, which is good. However, it omits what the tool returns (e.g., list of keys) or any side effects, leaving gaps.

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 short sentences with no extraneous words. Every sentence provides essential information efficiently.

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 output schema or annotations, the description is minimal. It covers read-only and ownership but lacks details on return format, error handling, or pagination. Adequate for a simple tool but could be more comprehensive.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0% with no parameter descriptions. The description implies 'namespace' but does not explain 'caller_did' or how it's used. It adds minimal value beyond the schema structure.

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 'List keys in a namespace' uses a specific verb and resource, clearly stating the tool's function. It also adds 'Read-only, no charge' which distinguishes it from sibling tools like secrets_put (write) and secrets_get (single key retrieval).

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?

The description provides clear context by stating 'Caller must own the namespace,' a key precondition. It does not explicitly exclude alternative tools, but the purpose is distinct enough from siblings to guide selection.

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

secrets_putAInspect

Encrypt and store a secret value at (namespace, key). Overwrites the previous value if present and bumps version. Charges $0.005 USDC on Base. Returns 503 if SECRETS_MASTER_KEY is not set on the server.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyYes
valueYesUTF-8 string up to 65536 bytes.
tx_hashNo
namespaceYesOwner DID. Must equal caller_did.
caller_didYes
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations exist, so the description carries full burden. It discloses encryption, overwrite, version bump, cost, and a specific error condition (503). It does not mention authorization constraints (namespace must equal caller_did) or what happens to previous values beyond overwrite.

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 sentences convey all essential information: action, overwrite, version, cost, error condition. No fluff, every clause adds value.

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 5 parameters and no output schema, the description covers the core behavior and a key error. However, it omits the return value on success and doesn't explain the tx_hash parameter, which is important for a paid operation.

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 40% (2 of 5 parameters have descriptions). The description adds overall context but does not explain key, tx_hash, or caller_did beyond their names. It partially compensates for low coverage by explaining the operation's purpose, but per-parameter detail is lacking.

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 specific verbs ('encrypt and store') and identifies the resource ('secret value at (namespace, key)'). It clearly distinguishes from sibling tools (secrets_audit, secrets_get, secrets_list) by describing overwrite behavior, version bump, and cost.

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?

The description implies the tool is for storing or updating secrets, and the cost hint advises against frequent or unnecessary use. However, it lacks explicit guidance on when to avoid this tool or when to use siblings instead.

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.