Skip to content

reckonapp/reckon-mcp-server

Repository files navigation

Reckon MCP Server

License: MIT MCP

Verify email addresses in real-time directly from Claude, ChatGPT, Cursor, Windsurf, or any MCP-compatible AI client. Powered by Reckon.


Example

You: Verify sales@acme.com

Assistant: I verified sales@acme.com using the Reckon email verification tool. Here are the results:

  • Status: Valid
  • Format: Valid email format
  • Domain: acme.com exists and accepts mail
  • Risk flags: Role-based address (sales@), not disposable, not accept-all

One Reckon credit was used for this verification. You have 4,999 credits remaining.


Requirements

  • A Reckon account, which comes with cost-free sandbox email addresses as well as 25 credits for real-world trialing.
  • An active Reckon subscription (see pricing)
  • A credit balance higher than zero

Quick setup

Endpoint: https://mcp.reckonapp.io/mcp

Our Claude and ChatGPT connectors are currently under review — once approved, those will be the easiest way to connect. In the meantime (and for all other MCP clients), add the endpoint in your client's MCP settings and sign in with your Reckon account when prompted.

For clients that don't support OAuth (like Cursor), use an API key instead. Add to .cursor/mcp.json:

{
  "mcpServers": {
    "reckon": {
      "url": "https://mcp.reckonapp.io/mcp",
      "headers": {
        "X-API-Key": "YOUR_API_KEY"
      }
    }
  }
}

Get your API key at app.reckonapp.io/api-keys.


Tools

verify_email

Verify an email address. Returns deliverability status, format validity, domain info, and risk flags (disposable, role-based, accept-all, mailbox full, plus addressing). Each call consumes one Reckon credit.

Input:

Field Type Required Description
email string Yes The email address to verify.

Example response:

{
  "email_address": "user@example.com",
  "status": "valid",
  "status_meta": {
    "valid_format": true,
    "domain_exists": true,
    "accept_all": false,
    "disposable": false,
    "role_based": false,
    "mailbox_full": false,
    "plus_address": false
  },
  "domain_meta": {
    "domain": "example.com",
    "mailbox_provider": "example.com"
  }
}

check_credits

Check the remaining email verification credit balance for your account. No input required.

Example response:

{
  "balance": 5000,
  "asOf": "2026-03-22T14:00:00Z"
}

Authentication

Most clients authenticate via OAuth — you sign in with your Reckon account when prompted and a dedicated API key is created automatically.

For clients that don't support OAuth (like Cursor), pass your API key via the X-API-Key header. Get a key at app.reckonapp.io/api-keys.

You can manage, pause, or revoke keys anytime from your API Keys dashboard.


Links


License

MIT

About

MCP server connecting AI assistants to Reckon's email verification API. Works with Claude, ChatGPT, Cursor, and any MCP-compatible client.

Topics

Resources

License

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors