Skip to main content
Glama

Server Details

Prepaid email-verify credits for MCP agents via Stripe Link.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
timdoes/proof-inbox-mcp
GitHub Stars
0
Server Listing
Proof Inbox MCP
Tool DescriptionsA

Average 3.9/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

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.

Naming Consistency3/5

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.

Tool Count4/5

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.

Completeness4/5

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 tools
balanceBalanceAInspect

Read-only verify credit balance for a workspace. Call this before a batch. Does not burn credits.

ParametersJSON Schema
NameRequiredDescriptionDefault
workspace_tokenNoWorkspace token from checkout. Or send Authorization: Bearer.
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
receipt_idNo
workspace_tokenNoWorkspace token from checkout. Or send Authorization: Bearer.
Behavior3/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters2/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
emailYesEmail address to verify
workspace_tokenNoWorkspace token from checkout. Or send Authorization: Bearer.
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    Provides 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.
    13
    123
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    Enables email address verification through a single MCP tool, returning whether an address is valid, invalid, or risky.
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.