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
Uptime
100.0% over 22 days
Last Tested
Transport
Streamable HTTP · MCP 2025-11-25
URL
Repository
timdoes/proof-inbox-mcp
GitHub Stars
0
Server Listing
Proof Inbox MCP

TDQS

A4.1/5.0

Scored across 4 tools

Disambiguation5/5

Each tool serves a completely distinct function: checking balance, purchasing credits, viewing receipts, and verifying emails. There is no overlap or ambiguity in their purposes, making selection straightforward for an agent.

Naming Consistency3/5

Tool names are lowercase and use underscores for multi-word names, but they mix verb-led names (buy_credits, verify_email) with noun-based names (balance, receipts). This is not a strict verb_noun pattern, but the names are still readable and follow a simple, predictable style within this small set.

Tool Count5/5

With only 4 tools, the surface is tightly scoped to the core operations of a proof inbox service: credit management and email verification. Each tool is essential and no extraneous or redundant tools exist, making this an ideal size for the domain.

Completeness4/5

The tools cover the main lifecycle: checking credits, purchasing credits, verifying emails, and viewing receipts for charges. A minor gap is the lack of a direct way to see verification history beyond receipts, but this is workable and the primary workflows are complete.

Available Tools

4 tools
balanceBalanceAInspect

Read-only verify credit balance. Call this, then call verify_email — do not stop at tools/list. If unpaid, returns payment_required: persist workspace_token as Authorization: Bearer, open checkout_url for the human operator, retry verify_email. Costs 0.

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

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full behavioral burden and handles it well: declares read-only, states cost is 0, and describes the payment_required response branch including token persistence and checkout_url handling.

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?

Every sentence earns its place: purpose, call sequence, conditional handling, cost, and auth. The description is compact yet information-dense without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Complete for a tool with no annotations and no output schema: it explains when to call it, what to do after, how to handle the unpaid case, and the auth transformation. An agent has enough guidance to invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema already documents the parameter well. The description adds further meaning by explaining how workspace_token is used in the payment flow as Authorization: Bearer.

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?

States a specific verb and resource: 'Read-only verify credit balance.' This clearly differentiates from siblings like verify_email and buy_credits by naming the exact operation and its read-only nature.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit orchestration guidance: call this, then call verify_email, do not stop at tools/list, and retry with persisted workspace_token on payment_required. It also names the conditional branch for unpaid balances.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

buy_creditsBuy creditsAInspect

Create a checkout session for verify credits. Optional sku: verify_100 ($5 / 100) or verify_500 ($9 / 500, default). Persist workspace_token as Authorization: Bearer. Open checkout_url for the human operator. After payment, retry verify_email. Do not invent a URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
skuNoPack sku. verify_100 or verify_500. Defaults to verify_500.
workspace_tokenNoWorkspace token from checkout. Or send Authorization: Bearer.

TDQS

A4.4/5.0
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 discloses the SKU options and default, the required token persistence, the human-operation step, and the post-payment retry behavior. It also adds a caution ('Do not invent a URL') that helps constrain agent behavior.

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 compact and front-loaded, stating the core purpose first, then layering essential operational details. Every sentence contributes useful information: the SKU options, the auth-header behavior, the human-in-the-loop step, and the post-payment retry. There is no filler.

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?

The tool has no output schema, so the description needs to convey what the agent should do with the response. It does mention opening checkout_url, which implies the response provides a URL, but it does not explicitly describe the response shape or mention potential failure/error handling. Overall it is nearly complete for a simple two-parameter purchase tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema already documents both parameters. The description adds value beyond the schema by specifying the concrete SKU values, their prices, and the default (verify_500). This gives the agent actionable selection information that the schema alone does not provide.

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 a specific verb and object: 'Create a checkout session for verify credits.' This clearly identifies the resource being acted on and the action taken, and it is unambiguously distinct from the sibling tools (balance, receipts, verify_email). The tool's purpose is fully self-contained.

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?

The description gives clear usage context by walking through the full workflow: create the session, pass the workspace token, open checkout_url for the human, and retry verify_email after payment. It does not explicitly state when not to use this tool versus alternatives, but the workflow context makes the intended use obvious.

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.

TDQS

A3.5/5.0
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 now (listing tools is not a verify). Cached repeats in 30 days are free. Fresh checks cost 1. If unpaid, returns payment_required: persist workspace_token as Authorization: Bearer, open checkout_url for the human operator, then retry. 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.

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full disclosure burden. It covers caching behavior, cost, the payment_required path, retry after checkout, and the unknown result semantics, and cautions the agent not to fabricate results. This is rich non-obvious behavioral information beyond the schema.

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 dense and front-loaded, with each sentence carrying useful information: action, cost/caching, payment recovery, and result semantics. No filler or repetition of schema fields.

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?

Given no output schema and no annotations, the description covers the main non-obvious scenarios (cached, paid, unpaid, incomplete) well enough to guide invocation and follow-up. It does not enumerate every success result value, but it provides the critical unknown and payment_required cases and warns against inventing results.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema already describes both parameters. The description adds meaningful behavior for workspace_token by telling the agent to persist it as Authorization: Bearer and retry after payment, which is not present in the schema.

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?

Description explicitly states the core action 'Verify one email now' with a clear verb and resource. It also distinguishes itself from listing operations with '(listing tools is not a verify)', helping an agent avoid category confusion.

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?

The description gives concrete usage context: cached repeats are free, fresh checks cost 1, and it explains the payment flow with checkout_url and token persistence. It does not name sibling tools like balance or buy_credits as alternatives, but it clearly indicates this is the tool for a single verification and excludes listing-type operations.

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.

  1. 1 tool update
    • Addedbuy_credits
  2. 3 tool updates
    • First observedbalance
    • First observedreceipts
    • First observedverify_email

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
    50 npm
    MIT
  • F
    license
    A
    quality
    B
    maintenance
    Enables email address verification through a single MCP tool, returning whether an address is valid, invalid, or risky.
    1
    -
  • A
    license
    Not graded
    quality
    C
    maintenance
    Real-time email verification API with syntax, MX, disposable detection, role-based flags, quality score 0-100. Built for agent outreach pipelines with pay-per-call via x402 (USDC on Base L2) -- no API key, no signup, no rate-limit wall.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.