Qualisend MCP server
The Qualisend MCP (Model Context Protocol) server lets an AI agent verify email addresses, clean lists, and run sending-domain deliverability checks through Qualisend — in Claude, ChatGPT, or any MCP-compatible client, with no code and no CSV exports. This page covers how to connect it, how it authenticates, all twelve tools it exposes, and how it handles your data.
- Endpoint
- https://app.qualisend.com/api/mcp
- Transport
- Streamable HTTP (JSON-RPC 2.0), stateless
- Authentication
- OAuth 2.1 (recommended) or a Qualisend API key
- Registry name
- com.qualisend/email-verification
Requirements
- A Qualisend account. The free plan includes 100 verification credits that never expire.
- An MCP-compatible client — Claude (Team/Enterprise, or a Pro custom connector), ChatGPT (developer mode / connectors), Cursor, VS Code, or similar.
Connecting the server
Add the endpoint below as a custom connector in your client, then authenticate with one-click sign-in or an API key.
https://app.qualisend.com/api/mcpOption A — Sign in (OAuth 2.1)
Recommended. No keys to copy — your client opens a “Connect Qualisend” page where you log in and approve access to a workspace.
- Claude: Settings → Connectors → Add custom connector → paste the endpoint → Connect and approve.
- ChatGPT: Settings → Connectors → Add → paste the endpoint → Connect and approve.
Option B — API key
Prefer a static credential? Create a key in your dashboard under Settings → API keys and supply it as the bearer token when you add the connector:
Authorization: Bearer qs_live_…Once connected, just ask: “verify sales@acme.com”, “are these 10 addresses deliverable?”, or “how many verification credits do I have left?”
Authentication
OAuth uses standard OAuth 2.1 with PKCE and dynamic client registration, so the connection is scoped to the workspace you approve. Access tokens are short-lived (1 hour) and refresh tokens rotate; tokens and authorization codes are stored only as hashes, and redirect URIs are matched exactly. API-key auth uses a bearer token (qs_live_…) in the Authorization header. Either way, auth is an explicit header value — never a cookie or session.
Tools
The server exposes twelve tools, mapped to the same engine as the Qualisend REST API, in three groups. The core verify tools work on any plan (including the free plan); the deliverability tools require the Qualisend Pro plan, and the blacklist check requires the Blacklist Monitoring add-on. Only the three verify_ tools consume credits — everything else is free.
Verify & clean
The core verification tools — available on every plan, including the free plan. The three verify_ tools consume 1 credit per address; the reads are free.
verify_emailverify_emailsverify_listget_credit_balanceget_verificationDeliverability & authentication
Sending-domain and message diagnostics. No credits used; available on the Qualisend Pro plan.
check_domaingenerate_dns_recordanalyze_email_headercheck_disposablecheck_typolookup_smtp_codeReputation monitoring
No credits used; requires the Qualisend Blacklist Monitoring add-on.
check_blacklistA verify_email call returns the instant local verdict plus a job_id; the SMTP mailbox probe finishes a few seconds later, so use get_verification (or just ask again) for the final result on borderline addresses.
What the results look like
Every address returns one of four verdicts — deliverable, risky, undeliverable, or unknown — each with a machine-readable reason code, sub-flags (catch-all, disposable, role, full mailbox), the MX provider, and a 0–100 confidence score. These are the same public fields the REST API returns.
Credits & rate limits
Each verification costs one credit, whether the agent checks one address or a thousand; reads (get_credit_balance and get_verification) are free. The connector uses the same credit balance and rate limits as your REST API access, so you can ask “how many credits are left?” before a large job. The free plan includes 100 credits that never expire.
Security & privacy
The MCP grants exactly what you approve — nothing more.
Scoped to one workspace
Every tool call is authenticated (OAuth token or API key) and scoped to the single workspace you connect. There is no path to another customer's data, to admin functions, or to any internal system beyond the verification flow. The server reuses the same authentication, scope, rate-limit, and credit checks as the public REST API.
Public verdict only
Responses contain only the public verification fields the REST API returns — never internal engine details, probe infrastructure, or SMTP transcripts beyond the deliverability result. The connector receives only the addresses you submit; it never accesses your AI conversations, chat history, assistant memory, or files, and the submitted addresses are never used to train any AI or machine-learning model, nor sold or shared.
No cookies, no CSRF
Authentication is an explicit token or key in the Authorization header — never a cookie or session — so the endpoint has no cross-site (CSRF) surface. OAuth uses PKCE and exact redirect-URI matching, and tokens and codes are stored only as hashes.
Short-lived and revocable
OAuth access tokens are short-lived (1 hour) and refreshes rotate. Revoke access any time by disconnecting the connector in your AI client (OAuth) or revoking the API key in your Qualisend dashboard.
Data handling
Qualisend is an EU-based company and the data you submit is stored and processed in the EU. Verification jobs and their results stay in your workspace until you delete them or close your account; you can delete jobs and results at any time. We do not sell, rent, or share the lists you submit, and we do not use them to train AI or machine-learning models. Full detail — collection, use, retention, third-party processors, and your rights — is in the Privacy Policy, and our security posture is on the Security page.
Revoking access
Disconnect the connector in your AI client to revoke an OAuth connection, or revoke the API key in your Qualisend dashboard under Settings → API keys. OAuth access tokens also expire on their own within an hour.
Support
Questions or issues? Email support@qualisend.com. See also the MCP overview, the Developer API, and the API reference.
Start free with 100 credits, then add the endpoint to your client.