Corbelworks Agent Reliability
Server Details
Preflight agent claims, issue checkout links, and verify signed Corbelworks action receipts.
- 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 3.4/5 across 3 of 3 tools scored.
Each tool has a distinct purpose: purchasing a scan link, performing a preflight reliability check, and verifying action receipts. There is no overlap in functionality.
All names use snake_case and are descriptive, but the pattern is not uniform: one starts with a verb ('purchase'), one with a noun ('reliability'), and one with a verb ('verify'). Still, they are clear and follow a reasonable style.
Three tools is an appropriate number for this server's scope, covering the core actions without being too few or too many.
The tool set covers purchasing a scan, preflight checking, and receipt verification—no obvious gaps for the stated purpose of agent reliability with action receipts.
Available Tools
3 toolspurchase_agent_reliability_scanBuy a Fixed-Scope Agent Reliability ScanBRead-onlyInspect
Get the fixed $149 Stripe checkout link for an Agent Reliability + Action-Receipt Scan; the signed link receipt explicitly records payment_status=not_paid.
| Name | Required | Description | Default |
|---|---|---|---|
| workflow_summary | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| receipt | Yes | |
| instruction | No | |
| checkout_url | Yes | |
| payment_status | Yes | |
| service_reserved | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true, so no mutation. Description adds that the link receipt records payment_status=not_paid, which is useful context but does not contradict annotations. The bar is lower due to annotations, and description adds some beyond but not extensive.
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?
Single sentence, front-loaded with the key action and cost. No fluff, though could add parameter guidance without much length.
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 an output schema (not shown) and one optional parameter. Description covers the main output (checkout link, receipt status) but lacks explanation of the parameter and any prerequisites or post-actions. Adequate but not thorough.
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 (workflow_summary) has 0% schema description coverage, and the description does not explain its purpose or usage. This leaves the agent without guidance on what to provide or how it affects the result.
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 it returns a fixed $149 Stripe checkout link for a specific scan, with a receipt recording payment_status=not_paid. It distinguishes from sibling tools (reliability_preflight, verify_action_receipt) by indicating this is the purchase step.
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?
No guidance on when to use this tool versus siblings like reliability_preflight or verify_action_receipt. No prerequisites or excluded scenarios mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
reliability_preflightAgent Reliability Evidence PreflightBRead-onlyInspect
Find false-green risk by linting agent claims against evidence, freshness, and external-receipt requirements; returns a signed Corbelworks action receipt.
| Name | Required | Description | Default |
|---|---|---|---|
| manifest | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| receipt | Yes | |
| preflight | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations provide readOnlyHint=true, and the description adds that it 'returns a signed Corbelworks action receipt', giving output context. 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, front-loaded with action and result. No wasted 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?
Output schema covers return values, but parameter is not explained despite 0% schema coverage and nested object complexity. Lacks error conditions or required claims structure.
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%, yet the description adds no meaning about the manifest parameter or its claims structure. The description only mentions 'agent claims' without specifying format or expectations, leaving a significant gap.
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: 'Find false-green risk by linting agent claims against evidence, freshness, and external-receipt requirements'. It implies a preflight check, distinguishing it from siblings like 'purchase_agent_reliability_scan' and 'verify_action_receipt', but does not explicitly differentiate.
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?
No guidance on when to use this tool versus alternatives. Siblings exist but no context for when to choose this over purchase_agent_reliability_scan or verify_action_receipt.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
verify_action_receiptVerify a Signed Action ReceiptARead-onlyIdempotentInspect
Verify a Corbelworks Ed25519 action receipt, payload digest, and signature against the published public key.
| Name | Required | Description | Default |
|---|---|---|---|
| receipt | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| valid | Yes | |
| reason | Yes | |
| signed_payload_sha256 | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint, idempotentHint, and non-destructive, which match the verify action. Description adds that it verifies against a published public key and specifies Ed25519, providing useful context 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence with 13 words, directly states the action with no superfluous information. Front-loaded and efficient.
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 low parameter count and existing output schema, the description is acceptable but lacks usage guidelines and detailed parameter semantics. It is adequate but not comprehensive.
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 sole parameter 'receipt' is an object with no schema description (0% coverage). The description implies the receipt contains payload digest and signature, adding some meaning, but does not fully specify the expected structure or any subfields.
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 'verify', the resource 'action receipt', and specifics (Ed25519, payload digest, signature, published public key). It distinguishes from siblings which are about reliability scans.
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?
No guidance on when to use this tool vs alternatives, no prerequisites, and no mention of when not to use. The description lacks contextual usage hints.
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!
Related MCP Servers
- Flicense-qualityBmaintenanceIssue 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.
- MIT
- Alicense-qualityBmaintenanceEnables verification of AI agent identity, authority, and integrity at transaction time, returning signed verdicts for allow, step-up, review, or block.MIT
- AlicenseAqualityCmaintenanceCryptographic accountability for AI agents. Ed25519-signed receipts for every MCP tool call. Constraints, chains, AI judgment, invoicing, and local dashboard included.24111MIT