Skip to main content
Glama

Server Details

Stamp any data to the Markovian chain for a verifiable provenance receipt. Proves timing, not truth.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

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

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: stamp creates a provenance record, trace walks the lineage, and verify independently checks a stamp. No overlap.

Naming Consistency5/5

All tool names follow a consistent 'markovian_verb' pattern (stamp, trace, verify), making them predictable and easy to understand.

Tool Count4/5

Three tools cover the core operations for a provenance system. While minimal, it's appropriate for the scope; a few more tools (e.g., listing stamps) could be added but aren't necessary.

Completeness4/5

The tools cover the main lifecycle: create (stamp), read/analyze (trace), and verify. Minor gaps exist, such as no tool to list or search stamps, but the core use cases are addressed.

Available Tools

3 tools
markovian_stampMarkovian Provenance StampAInspect

Commit any data (an AI output, a decision, a record) to the Markovian chain and get back a verifiable, tamper-evident provenance stamp (canonical markovian-provenance/v1). It proves the data existed and was committed at this time; it does NOT assert the data is correct (provenance, not truth). No wallet, account, or funding is required, the first stamp just works, and only the SHA-256 hash of your data is sent to the public API, the raw data is never stored. The returned merkle_root is the handle: save it, then call markovian_verify(merkle_root) to prove integrity later, or pass prior stamps in derived_from to build a lineage you can walk with markovian_trace. Typical use: stamp an agent output the moment it is produced, so anyone can later confirm it was not altered.

ParametersJSON Schema
NameRequiredDescriptionDefault
dataYesExact bytes/string to stamp. Hashed server-side; raw data is not stored.
labelNoOptional human label for the stamp.
walletNoOptional. Omit and the protocol mints an ephemeral committer for you. Provide one to attribute the stamp or to burn from your own MKV balance.
derived_fromNoOptional lineage. A list of prior stamps this output was derived from, each {merkle_root, data_hash}. Bound inside the committed bytes so the link is tamper-evident; the payload is published so markovian_trace can walk it.

Output Schema

ParametersJSON Schema
NameRequiredDescription
schemaYes
verifyYes
walletYes
data_hashYes
stamped_atYes
attestationYes
merkle_rootYes
block_heightNoMarkovian chain height where the commitment was recorded (the Markovian chain block, not a Bitcoin block).
zk_commitmentNo
Behavior5/5

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

Beyond annotations, the description reveals critical behaviors: data is hashed server-side, raw data is not stored, first stamp is always free, and MKV burn only occurs when a wallet is provided and holds MKV. No contradictions with annotations.

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 three well-structured sentences, front-loading the primary purpose and then adding important limitations and cost details. Every sentence adds essential information without redundancy.

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 the output schema exists, the description covers all necessary aspects: purpose, cost, privacy, and lineage. It is complete for a stamp creation tool with well-documented parameters.

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?

Schema coverage is 100%, so baseline is 3. Description adds extra semantics for 'data' (hashing and storage disclaimer) and 'derived_from' (tamper-evident linkage and mention of markovian_trace). Wallet parameter also benefits from additional context about ephemeral committers.

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 action ('Commit a piece of data to the Markovian chain and return a verifiable provenance stamp') and identifies the resource and version. It effectively distinguishes from sibling tools (markovian_trace, markovian_verify) by focusing on creation and commitment.

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 explicit context on when to use ('proves data existed and was committed at this time') and what it does not do ('Does NOT assert the data is correct'). Includes cost behavior and wallet requirements but does not explicitly state when not to use the tool or mention alternatives.

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

markovian_traceMarkovian TraceA
Read-only
Inspect

Walk and verify a stamp's full provenance lineage by merkle_root. Use this when a stamp was created with derived_from links, to map what an output was built from. Returns a MAP of the graph (not a yes/no verdict): each node carries hash_binds and anchored, each edge carries edge_verified, and valid is true only if every node and edge checks out. A node whose payload was never published is an unresolved frontier (resolved:false). Read-only. Provenance, not truth.

ParametersJSON Schema
NameRequiredDescriptionDefault
merkle_rootYesroot of the stamp to trace.
Behavior5/5

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

The description discloses beyond annotations: it explains the return structure (MAP of the graph), node and edge fields, and the concept of unresolved frontiers. It also clarifies that the tool provides provenance, not truth, which is critical behavioral context. No contradiction with readOnlyHint or openWorldHint annotations.

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 extremely concise—two sentences that are front-loaded with the core purpose, followed by essential output 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.

Completeness5/5

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

Given the tool's simplicity (one parameter, no output schema), the description provides a complete understanding of the tool's functionality, return format, and key semantics (e.g., valid, resolved). It fully meets the needs 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.

Parameters3/5

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

Schema coverage is 100% with a clear description for the only parameter. The description adds minimal extra meaning by phrasing 'by merkle_root' but does not introduce new details beyond the schema. Baseline 3 is appropriate.

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 tool walks a stamp's provenance lineage by merkle_root and verifies it. It specifies the verb ('walk', 'verify'), resource ('stamp's provenance lineage'), and input. The name and title align, and it is distinguishable from siblings (markovian_stamp, markovian_verify).

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 usage for tracing and verifying provenance lineage. Although it does not explicitly state when not to use or list alternatives, the context from sibling tool names provides differentiation. The description lacks explicit exclusion but is clear enough.

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

markovian_verifyMarkovian VerifyA
Read-only
Inspect

Independently verify a Markovian stamp by its merkle_root against the public verifier, with no key or account. Use this to confirm a stamped record existed at its claimed time and has not been altered since. Returns the verifier payload (type:external_stamp, verified:true when the commitment matches; an unknown or edited merkle_root returns verified:false). Read-only: it calls the public verify endpoint, so anyone can run it, including a party who does not trust the stamper.

ParametersJSON Schema
NameRequiredDescriptionDefault
merkle_rootYesmerkle_root to verify.
Behavior4/5

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

Annotations already mark readOnlyHint and openWorldHint. The description adds specific return structure (type:external_stamp, verified:bool) and explains that unknown/edited roots return false, covering behavior beyond annotations.

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 very concise with two sentences, front-loading the action and result. No wasted words.

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 the simple parameter set, full schema coverage, and annotations, the description sufficiently explains purpose and behavior. The return payload is described, making it complete for a verification 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?

Schema coverage is 100% with a clear description of the parameter. The description restates the parameter usage without adding significant new semantic detail, so baseline 3 is appropriate.

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 tool verifies a Markovian stamp using a merkle_root and returns a verifier payload with a verified boolean. It distinguishes from the sibling markovian_stamp, which presumably creates stamps.

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 usage for independent verification but lacks explicit statements about when to use versus alternatives. The sibling tool name provides some context, but no direct exclusions or when-not scenarios are given.

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.

Resources