Skip to main content
Glama

KeyHalve - verify sealed documents

Server Details

Free, no-account verification of KeyHalve-sealed documents. Read-only; never receives keys.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
keyhalve/keyhalve-mcp
GitHub Stars
0
Server Listing
KeyHalve verify-MCP

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 4.3/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: explain provides plain-language context, status gives a quick live check, and verify performs full cryptographic verification. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tools follow a consistent pattern with the 'keyhalve_' prefix and descriptive verbs (explain, status, verify). The use of 'status' as a noun is slightly atypical but doesn't break the convention.

Tool Count5/5

Three tools is perfectly scoped for a verification-focused server. Each tool earns its place, covering explanation, quick status, and full verification without redundancy.

Completeness5/5

The domain is document verification, and the three tools cover the entire user journey: understanding the verdict (explain), checking current status (status), and performing a full verified check (verify). No management operations are expected for this read-only verification service.

Available Tools

3 tools
keyhalve_explainA
Read-only
Inspect

Plain-language explanation of what a KeyHalve verification verdict means and why it can be trusted (blind rail, three-share custody, commitments, revocation). Optionally focused on one topic.

ParametersJSON Schema
NameRequiredDescriptionDefault
topicNoOptional single topic; omit for the overview.
Behavior4/5

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

With annotations providing readOnlyHint=true, the description adds value by detailing exactly what the explanation covers (blind rail, three-share custody, commitments, revocation) and the optional topic focus. It does not contradict the read-only hint, and while it omits return format details, that is acceptable for a read-only explanatory tool.

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 single, information-dense sentence that front-loads the core purpose and includes substantive details (the trust rationale). Every clause adds value, with no filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with one optional parameter, full schema coverage, and no output schema, the description is complete. It explains the tool's purpose, the scope of the explanation, and the optional topic behavior, which is sufficient for correct use. Sibling context is not strictly necessary for an explanation tool.

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?

The schema covers the single parameter (topic) with an enum and description, plus the parent description adds 'Optionally focused on one topic' - somewhat redundant. With 100% schema coverage, baseline 3 is appropriate; the description does not add new parameter semantics beyond what the schema already provides.

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 opens with 'Plain-language explanation of what a KeyHalve verification verdict means', which uses a specific verb (explain) and resource (verdict). It clearly distinguishes from sibling tools keyhalve_status and keyhalve_verify by focusing on understanding rather than checking or verifying.

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: it is meant for explaining a verification verdict and why it can be trusted. It does not explicitly state alternatives or when not to use it, but the purpose is unambiguous enough that an agent would know when to invoke it. A minor gap is the lack of explicit 'use verify for actual verification' note.

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

keyhalve_statusA
Read-only
Inspect

Live status of a KeyHalve-sealed document by id: active, revoked (with reason/time), or outside its validity window. Lighter than keyhalve_verify — status only, no integrity or rail checks. Use for "is this still good right now?"

ParametersJSON Schema
NameRequiredDescriptionDefault
document_idYesThe document id, e.g. vp_…, kh_…, cb_….
Behavior4/5

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

Annotations already declare readOnlyHint and openWorldHint, so the description's additional 'status only, no integrity or rail checks' provides useful context about what the tool does NOT do, going beyond the annotations. It also clarifies that it reports 'outside its validity window' as a status. Non contradicting and adds value, though it doesn't detail response format or error behavior.

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 two sentences, front-loaded with the core function, and every clause is informative. It includes the status outcomes, the sibling comparison, and usage guidance 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?

With no output schema, the description partially covers return values by listing possible statuses (active, revoked, outside validity window) and even includes reason/time for revoked. For a simple status tool with one param, this is reasonably complete, though it doesn't specify exact response structure or error handling.

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 description coverage is 100% for the single parameter, and the schema already explains the document_id format with examples. The description just says 'by id' without adding further semantic detail, so it doesn't elevate beyond the baseline.

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 starts with 'Live status of a KeyHalve-sealed document by id' which specifies the verb (status check), resource (document), and scope (live status with three outcome categories). It explicitly contrasts with keyhalve_verify, noting this tool is 'lighter' and does not perform integrity or rail checks, clearly distinguishing it from siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It directly states when to use this tool: 'Use for "is this still good right now?"' and differentiates from keyhalve_verify by saying it's status-only vs. full verification. This gives explicit usage context and an implicit alternative, which is strong guidance.

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

keyhalve_verifyA
Read-only
Inspect

Verify a KeyHalve-sealed document. Accepts a verify URL, the raw text of a KeyHalve QR code, or a document id (vp_…, kh_…, cb_…). Returns the cryptographic verdict: whether the seal exists, its live status (active/revoked/expired), ciphertext integrity against the issuance commitment, the KeyHalve rail's independent attestation, the validity window, and the issuer's trust context. This tool NEVER decrypts sealed contents — any decryption key in the URL fragment is discarded unread; contents are only readable by opening the verify URL in a browser.

ParametersJSON Schema
NameRequiredDescriptionDefault
inputYesA KeyHalve verify URL, QR-code text, or bare document id.
Behavior5/5

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

Beyond the readOnlyHint and openWorldHint annotations, the description discloses critical behavioral traits: 'This tool NEVER decrypts sealed contents — any decryption key in the URL fragment is discarded unread; contents are only readable by opening the verify URL in a browser.' This adds significant privacy context and clarifies the tool's non-decrypting nature, which is beyond what annotations provide.

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 concise and front-loaded, starting with the core purpose. It uses three sentences to cover inputs, outputs, and a critical behavioral constraint, with no wasted words. Every sentence provides actionable information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given a single-parameter tool with no output schema, the description is highly complete: it enumerates all accepted input types, lists the specific return fields (existence, live status, ciphertext integrity, attestation, validity window, issuer trust context), and explains the non-decryption behavior. This fully contextualizes the tool's operation and results.

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 describes the parameter as 'A KeyHalve verify URL, QR-code text, or bare document id.' The description adds specific id prefixes (vp_…, kh_…, cb_…) and clarifies that it accepts the raw text of a QR code, enhancing the schema's coverage. With 100% schema coverage, this extra detail justifies a score above the baseline of 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: 'Verify a KeyHalve-sealed document.' It specifies the exact verb (Verify) and resource (KeyHalve-sealed document), and lists accepted input forms. However, it does not explicitly distinguish itself from sibling tools like keyhalve_status or keyhalve_explain, so it lacks direct sibling differentiation.

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 context: it is for verifying sealed documents and returns a cryptographic verdict. It explains what inputs are accepted but does not explicitly state when to use this tool versus alternatives, nor does it mention exclusions or conditions. Thus, usage is implied rather than explicitly guided.

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!

Related MCP Servers

  • A
    license
    A
    quality
    A
    maintenance
    Read-only ProofRelay MCP verifier for non-confidential evidence bundles. Exposes 22 public-safe tools, 11 resources, and 11 prompts for bundle integrity checks, receipt-chain review, checkpoint recommendations, MCP risk metadata review, and real-estate closing proof-pack readiness.
    Last updated
    5
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    MCP server for sealing, verifying, and reading KNOBE Protocol v1 documents with human-confirmed authorship, ensuring document provenance and integrity.
    Last updated
    5
    Apache 2.0
  • F
    license
    -
    quality
    C
    maintenance
    Verifies signed SAR v0.1 settlement receipts offline using Ed25519 signatures and bundled key registry.
    Last updated

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.