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.
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.
Tool Definition Quality
Average 4.3/5 across 3 of 3 tools scored.
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.
All tools follow a consistent verb_noun pattern (discover_capabilities, get_job, request_capability), making it easy to infer their function.
Three tools is reasonable for a focused server that provides discovery, purchase, and polling functionality. It feels slightly minimal but not inappropriate.
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 toolsdiscover_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).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | ||
| action | No | ||
| budget | No | ||
| run_id | No | ||
| content | No | ||
| agent_id | No | ||
| framework | No | ||
| objective | No | ||
| capability | Yes | ||
| settlement | No | ||
| started_at | No | ||
| state_hash | No | ||
| environment | No | test | |
| finished_at | No | ||
| inputs_hash | No | ||
| content_hash | No | ||
| outputs_hash | No | ||
| parent_receipt | No | ||
| payment_method | No | test env only: your own Stripe payment_method token | |
| idempotency_key | No |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
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
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!