Proof Inbox
Server Details
Prepaid email-verify credits for MCP agents via Stripe Link.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- timdoes/proof-inbox-mcp
- GitHub Stars
- 0
- Server Listing
- Proof Inbox MCP
Tool Definition Quality
Average 3.9/5 across 3 of 3 tools scored.
Each tool has a clearly distinct purpose: balance checks credits, receipts lists past proofs, and verify_email performs email verification. No overlap exists, making tool selection unambiguous.
balance and receipts are noun-style names, while verify_email follows verb_noun convention. While each name is clear, the mixed style is slightly inconsistent, though not confusing.
Three tools are minimal but appropriate for a server focused on email verification and billing queries. The scope is narrow, so the low count is well-suited.
The tools cover the core lifecycle: checking balance, viewing receipts, and verifying emails. Minor gaps exist (e.g., purchasing credits) but these are likely handled externally, so the surface is adequate.
Available Tools
3 toolsbalanceBalanceAInspect
Read-only verify credit balance for a workspace. Call this before a batch. Does not burn credits.
| Name | Required | Description | Default |
|---|---|---|---|
| workspace_token | No | Workspace token from checkout. Or send Authorization: Bearer. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It explicitly states the operation is read-only and 'Does not burn credits,' which are the key behavioral traits for a balance-checking tool. It stops short of detailing response behavior or error cases, but those are less critical here.
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?
Three short sentences with no filler. Each sentence earns its place: what it does, when to use it, and the non-destructive side effect. The most important information is front-loaded.
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 tool with one optional, fully documented parameter, the description gives sufficient operational context: it is read-only, safe before a batch, and does not consume credits. The absence of an output schema means some return-value ambiguity exists, but the tool is simple enough that the purpose largely implies the response.
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 100%, so the schema already fully documents the single optional parameter. The description adds no parameter-level detail, but the baseline of 3 applies because the schema is doing the heavy lifting.
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 verb ('verify'), a clear resource ('credit balance'), and a scope ('for a workspace'). It explicitly labels the operation as read-only, which immediately distinguishes it from the sibling tools receipts and verify_email.
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?
Provides an explicit when-to-use instruction: 'Call this before a batch.' It does not mention alternatives or when not to use it, but the context is clear enough for a simple preflight balance check.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
receiptsReceiptsAInspect
List proof of spend and proof of checks for this workspace. Use this when the human asks what a charge paid for. Do not invent checkout session ids.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| receipt_id | No | ||
| workspace_token | No | Workspace token from checkout. Or send Authorization: Bearer. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral burden. It discloses that the tool lists workspace-scoped proof of spend/checks and warns against fabricating checkout session IDs, but it does not state auth requirements, side effects, or return-shape behavior beyond the implication of 'List'.
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?
Three sentences, front-loaded with the action and resource, followed by a clear trigger condition and a concise anti-hallucination warning. Every sentence earns its place with no filler.
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 definition gives a clear purpose and use case, and the schema covers limit bounds and token auth, but with no output schema and an undocumented receipt_id parameter, the agent must infer some invocation details. It is adequate but not complete.
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 33% because only workspace_token has a description. The description mentions checkout session IDs but does not explain limit, receipt_id, or how the workspace token vs. Bearer auth should be handled, so it does not compensate for the low schema coverage.
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 ('List') and names a distinct resource ('proof of spend and proof of checks for this workspace'), which helps an agent tell it apart from balance and verify_email. It could be stronger by explicitly contrasting with sibling tools, but the resource and action are clear.
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?
'Use this when the human asks what a charge paid for' gives an explicit trigger condition for when to select the tool. It lacks a when-not-to-use statement or alternatives, but the practical warning 'Do not invent checkout session ids' adds useful guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
verify_emailVerify emailAInspect
Verify one email. Cached repeats within 30 days are free. If credits are 0, returns payment_required with a checkout_url. Never invent results. unknown means the check did not finish.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | Email address to verify | ||
| workspace_token | No | Workspace token from checkout. Or send Authorization: Bearer. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and does well: it discloses 30-day cached free repeats, the payment_required/checkout_url behavior when credits are 0, the 'never invent results' reliability rule, and the meaning of 'unknown.' This goes well beyond a bare definition.
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 four short sentences with no filler. The core action is front-loaded, and each subsequent sentence provides a distinct and relevant behavioral detail.
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 two-parameter tool with no output schema, the description covers the main invocation and edge-case concerns: caching, credit exhaustion, unknown outcomes, and reliability expectations. It does not specify the success response format, but this is a minor gap given the tool's simplicity.
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 100% for both parameters, so the baseline applies. The description adds no parameter-specific meaning beyond what the schema already provides, although it does add broader billing and result context.
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 opens with 'Verify one email,' which states a specific verb and resource and distinguishes the tool from the sibling tools balance and receipts. The purpose is immediately clear without requiring schema inspection.
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 this is the tool for single-email verification, and it provides useful operational context such as caching and credit-exhaustion behavior. However, it does not explicitly discuss when to use this tool versus alternatives, though the siblings are unrelated in purpose.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
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 or an account that owns the GitHub organization, then choose Claim with GitHub.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
Stripe payments for AI agents. Create links, verify, manage customers.
Prepaid inference for agents over hosted MCP. Chat, image, and video.
Agent Commerce Protocol MCP — bridges Stripe ACP + Google AP2 + Coinbase x402 for agent payments
Email address, webhook, durable memory and zero-token waiting for agents. Paid in USDC via x402.
Related MCP Servers
AlicenseAqualityBmaintenanceProvides verification and utility APIs for AI agents to validate tax IDs, screen sanctions, verify companies, and inspect domains using prepaid USD credits, with no charge for failed checks.13123MIT
fabler-x402-toolsofficial
AlicenseNot gradedqualityBmaintenanceEnables MCP clients to use paid tools for secret scanning, agent-config auditing, and OG image rendering, with payments handled over the x402 protocol on Base.MIT- AlicenseNot gradedqualityBmaintenanceMCP server enabling AI agents to accept payments in France via Stripe hosted checkout. Provides tools for creating EUR payment links and checking payment status.MIT
- FlicenseNot gradedqualityCmaintenanceEnables email address verification through a single MCP tool, returning whether an address is valid, invalid, or risky.
Glama MCP Gateway
Add one secure layer between your agents and this server.