Blue Cap Evidence Verify
Server Details
Verify structured evidence and return machine-verifiable provenance, assurance, and receipts.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Tool Definition Quality
Average 3.7/5 across 3 of 3 tools scored.
Each tool targets a distinct operation: verifying an assurance record, computing a hash, and validating data against a schema. Even though 'verify' and 'validate' are semantically close, their objects and outputs are clearly separated.
All tool names follow the same noun_verb pattern: evidence_verify, hash_compute, schema_validate. The naming is consistent, predictable, and easy to scan.
Three tools is a tight, well-scoped set for a narrow verification workflow. Each tool has a clear supporting role and none feel redundant or extraneous.
The surface covers the apparent domain: prepare inputs via schema validation and hashing, then execute the core evidence verification. No critical operation for this focused verification purpose is missing.
Available Tools
3 toolsevidence_verifyBlue Cap evidence.verifyAIdempotentInspect
Verify a structured assurance record and its referenced evidence against the frozen Blue Cap verification contract. Returns a deterministic machine-readable verification result with provenance and assurance information for automated governance and audit workflows.
| Name | Required | Description | Default |
|---|---|---|---|
| consumer_id | Yes | ||
| assurance_record | Yes | ||
| evidence_artifacts | Yes | ||
| invocation_context | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| x402_settlement | Yes | |
| capability_result | Yes | |
| commercial_receipt | Yes | |
| storefront_authority | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish idempotency and non-destructiveness, and the description adds meaningful behavioral context by stating the result is deterministic, machine-readable, and includes provenance and assurance information. This goes beyond what the annotations alone convey and does not contradict them.
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 tightly worded sentences with no filler. The core action and target are front-loaded, and the second sentence adds value by describing the output's nature and purpose 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?
The output schema covers return values, so the description need not detail them, but the tool has four required object parameters with 0% schema coverage. Key parameters such as consumer_id and invocation_context remain semantically unexplained, and the 'frozen Blue Cap verification contract' itself is not elaborated, leaving the agent with partial context.
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 0%, so the description must compensate, but it only references 'assurance record' and 'referenced evidence' (likely assurance_record and evidence_artifacts). The required consumer_id and invocation_context parameters are not explained at all, leaving the agent without enough meaning to populate them correctly.
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 uses a specific verb ('Verify'), names the resource ('structured assurance record and its referenced evidence'), and specifies the standard ('frozen Blue Cap verification contract'). This clearly differentiates the tool from sibling tools like hash_compute and schema_validate, which do not perform contract-based verification.
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 indicates the tool is for governance and audit workflows, implying when it might be used, but it does not explicitly state when to choose this tool over hash_compute or schema_validate. No exclusions or alternative selection criteria are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hash_computeBlue Cap hash.computeBIdempotentInspect
Compute a SHA-256 digest for customer-supplied UTF-8 or base64-decoded bytes through a stable machine endpoint. Returns the reproducible digest through a receipted external execution.
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | ||
| encoding | Yes | ||
| consumer_id | Yes | ||
| invocation_context | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| x402_settlement | Yes | |
| capability_result | Yes | |
| commercial_receipt | Yes | |
| storefront_authority | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover idempotency and non-destructiveness. The description adds meaningful behavioral context by mentioning that computation happens through a 'receipted external execution' and that the digest is reproducible, giving insight beyond the structured annotations.
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 short and front-loaded with the core action. However, phrases like 'receipted external execution' and 'stable machine endpoint' are jargon-heavy and add limited clarity for the space they occupy.
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 four required parameters, a nested object, zero schema descriptions, and no usage guidance, the description is not complete enough for an agent to invoke this tool correctly. The output schema helps with return values, but the meaning of required inputs remains underspecified.
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 0%, so the description must compensate for all four required parameters. It addresses only 'data' and 'encoding' indirectly by mentioning UTF-8 or base64 bytes, while 'consumer_id' and especially the nested 'invocation_context' object are left completely unexplained.
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 uses a specific verb and resource: 'Compute a SHA-256 digest' for customer-supplied bytes, and clarifies the supported encodings. This clearly distinguishes it from sibling tools like evidence_verify and schema_validate, which serve different functions.
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 given on when to use this tool versus alternatives, nor are any exclusions or preconditions mentioned. The phrase 'stable machine endpoint' hints at a use context, but it does not help an agent decide between hash_compute and its siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
schema_validateBlue Cap schema.validateAIdempotentInspect
Validate supplied structured data against a customer-supplied JSON Schema Draft 2020-12 supported subset. Returns a deterministic machine-readable validity result and bounded errors through a receipted external execution.
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes | ||
| schema | Yes | JSON Schema using the published Draft 2020-12 supported subset. | |
| consumer_id | Yes | ||
| invocation_context | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| x402_settlement | Yes | |
| capability_result | Yes | |
| commercial_receipt | Yes | |
| storefront_authority | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare idempotentHint=true and destructiveHint=false, and the description adds valuable behavioral detail: the result is deterministic, machine-readable, has bounded errors, and involves a 'receipted external execution.' This goes beyond the annotations without contradicting them.
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 compact sentences front-load the primary purpose and then summarize key output behavior. There is no filler, though the phrase 'receipted external execution' is jargon-heavy and slightly obscures meaning.
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?
An output schema exists, so return values do not need detailed explanation, and annotations cover safety characteristics. However, the description fails to illuminate the purpose of consumer_id and invocation_context, and the 'supported subset' of JSON Schema is left undefined. For a tool with four required parameters, this gap makes the description incomplete for an agent that must produce valid inputs.
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 only 25%, and the description compensates poorly. It indirectly maps 'supplied structured data' to the value parameter and 'customer-supplied JSON Schema' to the schema parameter, but consumer_id and invocation_context are completely unexplained in both the description and the schema, leaving critical required parameters ambiguous.
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 a specific verb ('Validate'), the resource ('supplied structured data'), and the standard ('JSON Schema Draft 2020-12 supported subset'). This clearly differentiates it from siblings like evidence_verify and hash_compute, making the tool's core function unmistakable.
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 context is clear: use this tool when data must be validated against a customer-supplied JSON Schema. However, it does not explicitly name alternatives or state when not to use it, so it stops short of full usage guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Verify VerixID proof-of-existence records and optionally prove ownership.
Verify Seal AI decision receipts: signed evidence anyone can check, no account needed.
Verify AI outputs against real sources. Returns a trust signal and permanent doc number.
Verified extraction: source-backed JSON from PDFs/URLs; honest null + signed receipt.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceEnables defining and verifying evidence contracts for claims in READMEs, releases, or product pages using constrained verifiers and generating hash-chained receipts and reports.10MIT
- AlicenseAqualityAmaintenanceVerifies C2PA Content Credentials for local files or URLs and returns an LLM-ready verdict on trust, AI generation, and provenance.4261Apache 2.0
- AlicenseNot gradedqualityBmaintenanceEnables agents to verify claims with evidence-based truth scores and confidence levels by running a deterministic pipeline of evidence lanes and adversarial checks.22MIT
- FlicenseNot gradedqualityDmaintenanceEnables spec-driven development acceptance gate with structured receipts, audit logs, and reviewer-ready evidence.