@deepidv/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., "@@deepidv/mcp-serverVerify identity for applicant A-12345"
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.
@deepidv/mcp-server
npm wrapper for deepidv's hosted MCP server — identity verification, KYC/KYB, PEP & sanctions screening, bank statement analysis, and workflow automation, exposed to AI agents via the Model Context Protocol.
deepidv's MCP server is a remote, hosted service at
https://mcp.deepidv.com/v1/mcp. This package does not run a local server — it bridges stdio-based MCP clients to that hosted endpoint (viamcp-remote) and handles the OAuth 2.0 Authorization Code + PKCE flow. Use this package only if your MCP client requires a local/package-installed server rather than a direct remote HTTP connection.
If your client supports remote MCP servers natively (Claude Desktop, Claude Code, Cursor, etc.), skip this package and connect directly to https://mcp.deepidv.com/v1/mcp instead — see Direct connection below.
Installation
npx -y @deepidv/mcp-serverOr install globally:
npm install -g @deepidv/mcp-server
deepidv-mcpRelated MCP server: MidPay MCP Server
Usage in an MCP client config
{
"mcpServers": {
"deepidv": {
"command": "npx",
"args": ["-y", "@deepidv/mcp-server"]
}
}
}On first run, a browser window will open for you to sign in with your deepidv email and password (plus MFA if enabled on your account). No client_id or client_secret configuration is required — this package uses deepidv's shared public OAuth client (deepidv) with PKCE.
The wrapper checks callback port 3335 before starting. If it is busy, it automatically selects another available localhost port and updates the OAuth callback metadata for that run. To request a different preferred port, set DEEPIDV_MCP_CALLBACK_PORT to a value between 1 and 65535.
If a previous interrupted login left stale OAuth state, remove the local .mcp-auth directory and start again:
rm -rf ~/.mcp-authOn Windows PowerShell:
Remove-Item -Recurse -Force "$HOME\.mcp-auth"Direct connection (recommended)
Most modern MCP clients support remote HTTP servers natively and don't need this package at all. Add the server directly:
{
"mcpServers": {
"deepidv": {
"url": "https://mcp.deepidv.com/v1/mcp",
"transport": "http"
}
}
}See the full setup guide: https://github.com/Deep-Identity-Inc/agent-skills/tree/main/mcp-server
Requirements
Node.js >= 18
An active deepidv account
An MCP client that can either run local packages (
npx) or connect to remote HTTP servers with OAuth 2.0 Authorization Code + PKCE
What you can do once connected
Search applicants and check invitation status
List, inspect, create, and manage verification sessions
Create and reuse workflows built from deepidv verification steps
List bank statement records and send bank statement requests
Run PEP/sanctions, title-check, and adverse-media screening
Full tool reference: https://github.com/Deep-Identity-Inc/agent-skills/tree/main/mcp-server#available-tools
Security
All requests are authenticated via OAuth 2.0 Authorization Code + PKCE (S256) — there is no unauthenticated access
No client secret is stored or transmitted by this package
Access is scoped to the authenticated deepidv user and organization
Support
https://www.deepidv.com/support
License
MIT
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.
Latest Blog Posts
- 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/Deep-Identity-Inc/deepidv-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server