Skip to main content
Glama

LedgerProof LAIN — Verified Evidence for Agents

Server Details

Cryptographically anchored evidence for agents: verified run receipts, proof-gated settlement.

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

Server CoherenceA
Disambiguation5/5

Each tool has a distinct purpose: discover_capabilities lists available capabilities, request_capability initiates a purchase, and get_job polls job status. No overlap or ambiguity.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern (discover_capabilities, get_job, request_capability), making it easy to infer their function.

Tool Count4/5

Three tools is reasonable for a focused server that provides discovery, purchase, and polling functionality. It feels slightly minimal but not inappropriate.

Completeness3/5

The core workflow (discover, buy, poll) is covered, but there are gaps like cancelling purchases, listing previous jobs, or managing agent identities.

Available Tools

3 tools
discover_capabilitiesAInspect

List everything the LedgerProof Autonomous Network (LAIN) sells: capability ids, input schemas, pricing, environments (test/live), and the settlement rule (payment captures only against a cryptographically anchored proof).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior5/5

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

With no annotations, the description fully discloses the behavior: it is a read-only listing with no side effects. It specifies the exact fields returned (capability ids, input schemas, pricing, environments, settlement rule), providing complete transparency.

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, well-structured sentence that front-loads the main action ('List everything') and concisely enumerates the returned fields. No unnecessary 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?

Despite lacking annotations and output schema, the description is entirely self-contained. It fully explains what the tool returns and the context (LAIN capabilities), making it complete for an agent to understand.

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

Parameters5/5

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

The tool has zero parameters with 100% schema coverage, so the description naturally adds no parameter details. This is optimal for a parameterless tool.

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 the verb 'List' with the resource 'everything the LAIN sells', clearly defining the tool's action and scope. It differentiates from sibling tools 'get_job' and 'request_capability', which serve different purposes.

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 clearly states what the tool does, and the context signals (sibling tools) imply that this is the appropriate tool for listing capabilities. No explicit when-not or alternative guidance is needed because the purpose is distinct and well-defined.

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

get_jobAInspect

Poll a job by id. For paid checkout jobs this is also the settlement trigger: once the buyer has paid, polling captures the charge strictly against the anchored proof and returns the deliverable.

ParametersJSON Schema
NameRequiredDescriptionDefault
job_idYes
Behavior4/5

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

Despite no annotations, the description discloses that for paid checkout jobs, polling triggers settlement and captures the charge, which is a critical side effect beyond simple polling. This adds significant value beyond the default behavior inference.

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, each adding essential information. First sentence states the basic action, second provides critical nuance. No redundant words.

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?

For a simple one-param tool with no output schema, the description covers the main behavior, special case for paid checkout, and implied output. It lacks details on error handling or timeout behavior, but is mostly complete for its complexity.

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?

The single parameter 'job_id' has no schema description, and the description only mentions 'by id' without specifying format, source, or constraints. Schema coverage is 0%, so the description fails to compensate with meaningful param details.

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 verb 'poll' and the resource 'job by id', distinguishing the tool's primary function. It also specifies a special behavior for paid checkout jobs, making the purpose unambiguous. Sibling tools are unrelated, so no confusion.

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 for when to use this tool: polling jobs, especially as a settlement trigger for paid checkout jobs. It does not explicitly state when not to use it, but given the sibling tools have different purposes, the guidance is adequate.

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

request_capabilityAInspect

Buy a capability. Provide capability id (e.g. receipt.agent-run: pass action plus at least one of inputs_hash/outputs_hash/state_hash, 64-hex sha256) and optional objective/budget. Default environment is 'test' (simulated money; supports m2m/identity settlement). Pass environment:'live' for a REAL purchase: the response returns an anchored proof immediately plus a Stripe checkout URL; pay it and the deliverable releases on proof-gated capture. An Authorization: Bearer header (registered agent identity) passes through for identity settlement in the test environment.

ParametersJSON Schema
NameRequiredDescriptionDefault
modelNo
actionNo
budgetNo
run_idNo
contentNo
agent_idNo
frameworkNo
objectiveNo
capabilityYes
settlementNo
started_atNo
state_hashNo
environmentNotest
finished_atNo
inputs_hashNo
content_hashNo
outputs_hashNo
parent_receiptNo
payment_methodNotest env only: your own Stripe payment_method token
idempotency_keyNo
Behavior4/5

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

With no annotations, the description carries full burden. It discloses that test uses simulated money, live is a real purchase with immediate proof and a Stripe URL, and that the Authorization header passes through. It does not mention reversibility or side effects, but the key behaviors (payment required for live) are clear.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is moderately concise, covering essential points in a few sentences. It front-loads the core action ('Buy a capability.') and then provides details in a logical flow. Some density is acceptable given the number of parameters, but it could be slightly more structured.

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?

The description explains the test/live distinction and mentions return behavior for live (anchored proof + Stripe URL). However, for test environment the response is not described, and many optional parameters have no guidance. With 20 parameters and no output schema, more completeness is needed.

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 only 5% (one parameter described). The description adds meaning for capability (pattern and hash format), environment (default 'test'), and mentions relevant parameters (inputs_hash, outputs_hash, state_hash, objective, budget). However, many parameters (model, action, settlement, idempotency_key, etc.) are left unexplained, so compensation is partial.

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 'Buy a capability.' and clearly explains the tool's purpose: to purchase a capability by providing capability ID, action, and hashes. It distinguishes between test and live environments, making the purpose specific and unambiguous. Sibling tools are different (discover_capabilities, get_job), so no confusion.

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 guidelines on when to use test (simulated money) vs live (real purchase with Stripe checkout). It mentions the default environment and how to pass the Authorization header for identity settlement. However, it does not explicitly state when to use this tool over siblings, though the context is sufficient.

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