Elucora Evidence API
Server Details
Capture a web source, or seal a hash you hold, into a signed receipt anyone can verify offline.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- Fuyuki0/elucora-mcp
- GitHub Stars
- 0
Available Tools
4 toolselucora_attestSeal a hash you already holdAInspect
Prove a piece of content existed at a point in time by sealing its SHA-256 hash. Use when you already hold the bytes — a model output, a tool result, a document. Elucora records that you submitted this hash and when; it does not prove where the content came from or that it is true, because Elucora never saw the source. To prove what a web source served, use elucora_capture instead. Consumes receipt quota.
| Name | Required | Description | Default |
|---|---|---|---|
| hash | Yes | SHA-256 digest of the content, written as sha256:<64 hex characters>. | |
| metadata | No | Optional signed scalar metadata. | |
| size_bytes | No | Optional size of the content, as described by the caller. | |
| content_type | No | Optional media type of the content, as described by the caller. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the sparse annotations, the description reveals that Elucora does not see or verify the source or truth, only that a hash was submitted at a time, and that it consumes receipt quota. This prevents false expectations.
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?
Very concise, with all sentences adding value: the usage condition, the limitation, the sibling alternative, and quota impact. Front-loaded with the core purpose.
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?
Covers purpose, usage, limitations, and quota, but does not explicitly state what the tool returns (e.g., a receipt ID, confirmation). Given no output schema, a brief return/confirmation statement would make it fully complete.
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 already describes all four parameters at 100% coverage, including the hash format and optional metadata fields. The description does not add new parameter-level details, so baseline 3 applies.
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 names a specific verb ('sealing its SHA-256 hash') and clear resource/action, and immediately distinguishes from sibling elucora_capture. This makes the tool's purpose unambiguous.
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?
Explicitly states when to use ('when you already hold the bytes') and directs users to elucora_capture for web source scenarios. It also notes quota consumption, which is relevant context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
elucora_captureCapture verifiable source evidenceAIdempotentInspect
Freeze proof of what a web source actually served, before quoting or acting on it. Returns a signed receipt that anyone can verify offline without trusting Elucora. Proves what was served and when, not that the content is true. Sends a network request to the supplied source and consumes receipt quota.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Public HTTP(S) source URL. | |
| metadata | No | Optional signed scalar metadata. | |
| selector | No | Optional text-quote or JSON Pointer selector. | |
| idempotency_key | No | Stable retry key for this capture. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations (readOnly=false, openWorld=true, idempotent=true, destructive=false), the description discloses that the tool sends a network request and consumes receipt quota, which are important side effects. It also clarifies the evidential scope (proves what was served and when, not truth), adding behavioral nuance not captured by 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?
Four sentences, each serving a distinct purpose: main action, receipt characteristics, scope clarification, and network/quota side effect. No filler or redundancy, and the most important information is front-loaded.
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 availability of sibling tools and the absence of an output schema, the description sufficiently covers what the tool does, its side effects, and its output nature (signed receipt). It could mention prerequisites like authentication or rate limits, but the quota mention partially covers this. Overall, it's complete enough for an agent to select and invoke the tool correctly.
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 schema covers all 4 parameters with descriptions, so the baseline is 3. The tool description does not add parameter-specific details beyond the schema, but it does set the context that the capture is for a 'web source served' which aligns with the 'url' parameter. No additional semantic value is provided.
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 tool's action ('Freeze proof of what a web source actually served') with a specific resource and context. It distinguishes itself from siblings by emphasizing the signed receipt and offline verification, making its role in the evidence-capture workflow unambiguous.
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 phrase 'before quoting or acting on it' provides clear context for when to use capture. However, it does not explicitly name alternatives or exclusion criteria compared to sibling tools like verify or get_receipt, so it stops short of full guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
elucora_get_receiptRetrieve an Elucora receiptARead-onlyIdempotentInspect
Fetch an evidence receipt by ID: the source it covers, the exact passage or field that was sealed, the current signature result, and its transparency log and Bitcoin anchor state. Needs no credentials.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint, idempotentHint, and destructiveHint annotations, the description adds that no credentials are needed and explicitly lists the data returned in the receipt (source, sealed passage, signature result, transparency log, Bitcoin anchor state). This provides useful behavioral context without contradicting the 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 compact—two sentences—and immediately states the action, the resource, and the key return details. No unnecessary words; every sentence adds useful 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?
For a simple one-parameter read tool with no output schema, the description adequately covers the purpose, the return fields, and the authentication context (no credentials). Combined with the annotations, the tool is fully comprehensible.
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 single 'id' parameter is fully defined by the schema with a required pattern, but the description only says 'by ID' and does not elaborate on the parameter's source or format. With schema description coverage at 0%, the description adds very little semantic value beyond what the schema already states.
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 identifies the tool as fetching an evidence receipt by ID and enumerates the specific contents returned (source, sealed passage, signature result, transparency log, Bitcoin anchor state). This distinguishes it from sibling tools like attest, capture, and verify, which have different purposes.
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 gives a clear context: use this to fetch a receipt by ID. The phrase 'Needs no credentials' hints at accessibility but there is no explicit when-not-to-use or reference to alternatives; however, the distinct sibling names make the usage apparent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
elucora_verifyVerify an Elucora receiptARead-onlyIdempotentInspect
Check whether an evidence receipt is genuine and unaltered, and what source bytes it covers. Use this before relying on a receipt produced by someone else. Needs no credentials.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds useful context beyond annotations: 'Needs no credentials' clarifies authorization requirements, and 'what source bytes it covers' hints at output semantics. No contradictions with annotations. Score 4 reflects the added value without over-describing.
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 sentences, front-loaded with purpose, and every sentence adds value. The description is concise without redundant information. Structure is clear and easy to parse.
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?
For a simple tool with one parameter and no output schema, the description provides sufficient understanding of what the tool does and when to use it. It lacks explicit return format details, but the core behavior is covered. Given the low complexity and strong annotations, a score of 4 is appropriate.
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%, yet the description does not explain the 'id' parameter's meaning or format beyond what the schema pattern implies. The description mentions 'receipt' but does not explicitly say that the id parameter is the receipt identifier. With low schema coverage, the description was expected to compensate but did not, earning a score of 1.
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 tool's purpose: 'Check whether an evidence receipt is genuine and unaltered, and what source bytes it covers.' It uses a specific verb ('check') and resource ('evidence receipt'), and distinguishes itself from siblings (attest, capture, get_receipt) by focusing on verification rather than creation or retrieval.
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 provides a clear usage context: 'Use this before relying on a receipt produced by someone else.' This tells the agent when to invoke the tool, though it does not explicitly name alternatives or state when not to use it. Sibling tools exist but are not referenced, so a score of 4 is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
- First observed
elucora_attest - First observed
elucora_capture - First observed
elucora_get_receipt - First observed
elucora_verify
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, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.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
Stamp content with permanent, verifiable provenance. Hash locally, verify free forever.
Issue signed receipts for AI agent actions; verify any receipt offline - free, no account.
Issue & verify signed (ed25519), hash-chained, timestamped provenance receipts for agent actions.
Protect and verify digital content with cryptographic signing and proof of ownership.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenance📇 ☁️ - Capture web pages as cryptographically signed, tamper-evident evidence. Ed25519 signatures, RFC 3161 timestamps, and WACZ archives. Four tools: capture_url, get_capture, list_captures, verify_capture.41MIT
- AlicenseNot gradedqualityCmaintenanceEnables evidence-grade capture of web pages as screenshots, PDFs, or HTML, returning a signed artifact URL, SHA-256 digest, timestamp, and optional public evidence page for attestation.MIT
- AlicenseAqualityCmaintenanceProvides cryptographic truth infrastructure for AI agents, enabling them to seal content with SHA-256 and Ed25519, verify receipts, anchor them to Bitcoin via OpenTimestamps, generate citations, and audit chains of receipts.5501MIT
- AlicenseNot gradedqualityBmaintenanceIssue and verify signed receipts for agent actions, enabling durable, independently checkable proof of policy decisions. Supports offline verification via get_keyset and verify_receipt tools without an account.0Inno Setup
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a clearly distinct purpose: attest for user-held bytes, capture for web sources, get_receipt for retrieval, and verify for validation. Descriptions explicitly cross-reference to avoid confusion.
All tool names follow the elucora_ verb pattern (attest, capture, get_receipt, verify). The naming is consistent snake_case and predictable.
Four tools is a well-scoped count for an evidence API: two creation variants, one retrieval, and one verification. No redundancy or bloat.
The tool set covers the full evidence lifecycle: creating proof (attest/capture), retrieving receipts, and verifying authenticity. Since evidence is immutable, update/delete are unnecessary.