Cross-Rail Settlement Binder
Server Details
Multi-rail settlement binder MCP. binder_verify proves integrity only — not settlement.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
4 toolsbinder_appendAInspect
Append one settlement leaf (x402 | stripe_mpp | agentcore) under your task_id. Free.
| Name | Required | Description | Default |
|---|---|---|---|
| leaf | Yes | ||
| task_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It discloses that exactly one leaf is appended, restricts leaf types, and includes 'Free' as a behavioral/cost note. However, it does not mention idempotency, failure modes, permissions, or whether appending has any side effects beyond adding the leaf.
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 short sentences with no filler. The action is front-loaded, followed by the leaf-type constraint and the cost note. Every word contributes meaningful 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?
The output schema presumably covers return values, so that is not needed in the description. Still, the leaf object structure and the relationship to binder_seal/binder_verify are only implicit, and the 'Free' note is ambiguous. The description gives enough to attempt a call but not enough for confident, correct construction of the nested leaf object.
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 0%, so the description must compensate. It gives task_id meaning as the owning context and constrains leaf to a settlement leaf of type x402, stripe_mpp, or agentcore. However, it does not explain how to represent those types inside the leaf object or what other fields the leaf should contain, leaving a notable gap for a nested arbitrary object.
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 action (append), a concrete resource (settlement leaf), enumerates the allowed leaf types, and ties the operation to task_id. This clearly differentiates it from the sibling tools binder_seal and binder_verify, whose verbs indicate different lifecycle stages.
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 'under your task_id' provides clear context and a prerequisite for using the tool. While the description does not explicitly name alternatives or exclusion conditions, the append action implies the right lifecycle phase relative to sealing and verifying.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
binder_sealAInspect
Seal ≥2 distinct rails under task_id into a portable Ed25519 binder (~$0.05 USDC on Base when paid).
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | ||
| x402_proof | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations available, the description carries the full burden. It usefully discloses the cost (~$0.05 USDC on Base when paid), the minimum rail count, and the cryptographic output format. However, it does not mention side effects on existing rails, idempotency, or whether the operation is reversible.
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 entire description is a single front-loaded sentence with no filler. It packs the action, the precondition, the output type, and the cost into compact space, and every clause earns its place.
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 provides enough for basic selection and invocation: required task_id, the ≥2 rails precondition, the output type, and the cost. But it leaves gaps around x402_proof mechanics, the payment flow, and how sealing relates to the sibling operations. These gaps are moderate because an output schema exists, which may carry return-value details.
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. It gives meaning to task_id as the grouping key for rails, but x402_proof is only hinted at through 'when paid' and is never explicitly connected to the payment/proof parameter. The agent still lacks clear semantics for the proof field.
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 action ('Seal'), the resource ('≥2 distinct rails under task_id'), and the output ('portable Ed25519 binder'). It clearly distinguishes this from its siblings by implying finalization rather than appending or verifying.
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 implies the main precondition: at least two distinct rails must exist under the task_id before sealing. However, it does not explicitly mention when to use binder_seal versus binder_append or binder_verify, or when sealing should be avoided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
binder_verifyAInspect
Verify binder integrity (sig + ordered leaf hashes). Does not prove underlying settlement.
| Name | Required | Description | Default |
|---|---|---|---|
| binder | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the behavioral disclosure burden. It discloses what is checked (signature and ordered leaf hashes) and, importantly, what is not checked (underlying settlement), which is a non-obvious and valuable boundary. It does not explicitly state read-only behavior or side effects, but 'verify' strongly implies a non-mutating check.
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 extremely compact: a front-loaded action, a parenthetical technical detail, and a caveat. There is no filler or repetition, and every clause adds distinct 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?
The tool has a clear purpose and an important limitation, and an output schema exists to describe return values. However, with no annotations and a schema that provides no structure for 'binder', the description does not fully explain how to populate or pass the input. It also does not mention when to prefer it over, or avoid it in favor of, other tools beyond the settlement caveat.
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 only parameter, 'binder', is an opaque object with additionalProperties true and zero schema descriptions. The description partially compensates by naming the components that matter ('sig + ordered leaf hashes'), but it does not define the expected shape, field names, or how the binder should be obtained or constructed. The compensation is therefore only 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 uses a specific verb 'Verify' with a clear resource, 'binder integrity', and expands on what that means: 'sig + ordered leaf hashes'. The negative clause 'Does not prove underlying settlement' further sharpens the boundary. This clearly distinguishes the tool from mutating siblings like binder_append and binder_seal.
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 clear context for when to use the tool: when binder integrity needs to be checked. It also provides an explicit limitation, 'Does not prove underlying settlement', warning the agent not to treat this as a settlement proof. It stops short of naming specific alternative tools or conditions, so it does not fully earn a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
healthCInspect
Liveness, rails, pubkey, paid/listing flags.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It hints at a read-only status report via 'Liveness' but never confirms absence of side effects, cost, or auth requirements. The description discloses only return content, not behavior.
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 seven-word fragment with zero wasted words, which is efficient. However, the brevity crosses into under-specification, sacrificing a complete sentence for a compressed label.
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?
Complexity is low (0 parameters) and an output schema exists, which lowers the bar for what the description must cover. Still, with no annotations, the description alone must establish the tool's role, and a seven-word fragment is only minimally adequate for that.
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, so the rubric baseline of 4 applies. With no input schema properties, there is nothing the description needs to clarify about argument semantics, and nothing is missing on that front.
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 is a telegraphic noun-phrase list ('Liveness, rails, pubkey, paid/listing flags') rather than a statement of what the tool does. The word 'Liveness' plus the tool name 'health' make a status/health check inferable, but no verb is present and the intended operation is never explicitly claimed. It avoids tautology by adding content beyond the name, but the purpose remains vague.
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 offers no guidance on when to call this tool or when to prefer a sibling. Differentiation from binder_append/binder_seal/binder_verify rests entirely on name semantics; the description never states 'use this to check service status' or names any alternatives or exclusions.
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
binder_append - First observed
binder_seal - First observed
binder_verify - First observed
health
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
Remote MCP for A2A failure replay MCP, structured receipts, audit logs, and reviewer-ready evidence.
Remote-first MCP adapter for emitting Settlement Attestation Receipts; not a verifier.
Hosted MCP for Conductor Relay: a verifier-backed agent work exchange and cold marketplace.
Tenzro Ledger MCP: wallet, identity, payments, inference, staking, bridges, verification, agents.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceDual-rail MCP server for initiating and verifying MPP and x402 payments, plus MPP-attested identity claims, enabling agent-native financial settlement.MIT
- AlicenseAqualityBmaintenanceRetired snapshot of the former 15-tool Apache-2.0 beta. Use Living Stack Community for the free seven-tool proof edition; Complete Local is the paid runtime with memory, recovery, signed traces, release verification, and multi-agent workflows.14Apache 2.0
- AlicenseNot gradedqualityBmaintenanceMCP server exposing four task-shaped tools (resolve, pay, verify, disclose) for General Liquidity, enabling agents to normalize counterparties, submit intents, verify disclosures, and produce signed disclosures.MIT
- AlicenseNot gradedqualityDmaintenanceMCP server for multi-party USDC settlement with validator consensus, enabling submission and tracking of settlements through a network of validators that vote to approve or reject transactions.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool targets a distinct stage or concern: append adds leaves, seal finalizes the binder, verify checks integrity, and health reports service status. There is no meaningful overlap in purpose or output.
binder_append, binder_seal, and binder_verify follow a clear, consistent binder_<verb> pattern. health breaks that pattern by omitting the binder_ prefix, making it a minor deviation.
Four tools is well-scoped for this server's purpose. Each tool earns its place in the append-seal-verify workflow, with health as a useful operational supplement and no redundancy.
The core lifecycle is covered: append leaves, seal a binder, and verify its integrity. A minor gap is the lack of an explicit inspect/list tool to review appended leaves before sealing, but this is workable around.