Verifa MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Verifa MCP ServerCreate a verification session for a new user and send me the capture link."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Verifa MCP Server
Run identity verification from any MCP client — Claude Desktop, Cursor, Claude Code, or your own agent. Create verification sessions, hand the person a capture link, screen against sanctions and PEP lists, read results, and work the review queue, all as tools an agent can call.
{
"mcpServers": {
"verifa": {
"command": "npx",
"args": ["-y", "@verifasolutionsinc/mcp-server"],
"env": { "VERIFA_API_KEY": "vk_sandbox_...", "VERIFA_ENV": "sandbox" }
}
}
}That is the whole install. Get a sandbox key at app.withverifa.com → Developers → API keys
(free, no card, no sales call). Sandbox keys never touch real data and can simulate every verification outcome,
so you can see the full lifecycle in a few minutes — examples/id-check does exactly that.
How it works
This package is deliberately small. It opens one authenticated connection to Verifa's hosted MCP endpoint
(https://api.withverifa.com/mcp, streamable HTTP) and forwards tools/list, tools/call, prompts/list
and prompts/get over stdio. Nothing is reimplemented here: tool schemas, PII scrubbing, rate limits and
the audit trail all live server-side, so this wrapper never drifts from the product.
If your client already speaks streamable HTTP with OAuth 2.1, you can skip this package and connect to the hosted endpoint directly — same tools, sign-in instead of an API key.
Related MCP server: agentmail
Tools
The server exposes 45 tools, grouped into toolsets. By default you get everything except destructive.
Toolset | What an agent can do |
|
|
|
|
|
|
|
|
|
|
| blocklist and custom list reads and writes |
|
|
|
|
|
|
|
|
Every tool is scoped: the API key's scopes cap what the connection can do, whatever toolsets are enabled. Every call — read or write — writes an audit row that records it was made by an agent and by which key or OAuth client, so an agent's decision is never mistaken for a human's.
Narrowing the surface
Fewer tools means less context spent per request and better tool selection. Pick what the job needs:
"env": {
"VERIFA_API_KEY": "vk_sandbox_...",
"VERIFA_MCP_TOOLSETS": "sessions,checks",
"VERIFA_MCP_READ_ONLY": "1"
}Variable | Effect |
| Required. |
|
|
| Comma-separated toolsets to expose. Default: all except |
|
|
|
|
| Override the API host (e.g. a staging environment). |
Check what a given configuration exposes without opening a client:
VERIFA_API_KEY=vk_sandbox_... npx -y @verifasolutionsinc/mcp-server --checkTry it in five minutes
git clone https://github.com/Verifa-Solutions/verifa-mcp-server
cd verifa-mcp-server/examples/id-check
npm install
cp .env.example .env # paste your sandbox key
npm start # approve
npm run review # the outcome that matters: a human has to decideThe demo creates a session, generates the one-time capture link and QR code an integrator would show,
simulates an outcome (no passport needed — sandbox only), and reads the result. It prints the REST calls
in one column and the identical flow driven through this MCP server in the other. Add --webhooks with a
public URL (cloudflared tunnel --url http://localhost:8787 works) to receive the signed webhook deliveries
and see signature verification — the part most integrations get wrong.
Development
npm install
npm run build
npm test # unit tests
VERIFA_API_KEY=vk_sandbox_... node dist/index.js --check # live smoke testNode 20+. Logs go to stderr; stdout is the MCP transport.
Security
Use sandbox keys while evaluating. Live keys should be scoped to the toolsets the agent needs.
The server never stores or logs the API key; it is sent only as a Bearer token to
VERIFA_API_URL.Responses are PII-free by default — the hosted server strips applicant identifiers from tool results unless the key holds the relevant scope and the session's sensitive-data window is open.
Report vulnerabilities via withverifa.com/security/disclosure.
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
A paid remote MCP for ZeroID, built to return verdicts, receipts, usage logs, and audit-ready JSON.
Deterministic Mexican/LatAm verification + sanctions & PEP screening for AI agents. Pay via x402.
Run KYB and AML case reviews and configure Zyphe verification flows, forms and API keys.
Email, phone, domain, URL & OFAC verification; phishing and IBAN checks via x402.
Related MCP Servers
AlicenseBqualityBmaintenanceProvides 110+ tools for identity verification, compliance, and workspace operations through the Model Context Protocol.10049MIT- AlicenseAqualityAmaintenanceProvides AI agents with compliance screening (OFAC sanctions, risk scoring, Know-Your-Agent) plus disposable email and SMS verification for OTPs, accessible via MCP tools, HTTP API, and CLI.101MIT

deepidvofficial
AlicenseNot gradedqualityCmaintenancedeepidv MCP is an MCP server that exposes the deepidv AI-powered verification engine’s operations as structured tools for MCP-compatible clients. It enables AI agents to perform identity verification, face liveness, deepfake detection, AML screening, and more via remote OAuth-based access.3Apache 2.0- AlicenseNot gradedqualityCmaintenanceEnables AI agents to perform identity verification, KYC/KYB, PEP & sanctions screening, bank statement analysis, and workflow automation via the Model Context Protocol.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Verifa-Solutions/verifa-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server