On-premise face recognition MCP server for 3DiVi Face SDK. No cloud required.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"3divi-face-sdk": {
"env": {
"FACESDK_PATH": "/path/to/facesdk",
"FACESDK_CONFIG": "/path/to/facesdk/conf/facerec.conf"
},
"args": [
"/path/to/face-recognition-mcp-server/server/python/main.py"
],
"command": "python"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
The face recognition MCP server for AI-native development. On-premise · GDPR-compliant · ISO 30107-3 liveness · No cloud dependency.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / security
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
A markdown editor — and the bridge to your LLM. Local-first, MIT, ~15 MB. Bundled MCP server lets Claude Code / Codex / Cursor drive your vault directly. 14 AI providers BYOK.
MCP Security Weekly
Get CVE alerts and security updates for io.github.student920/face-recognition-mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
The face recognition MCP server for AI-native development.
On-premise · GDPR-compliant · ISO 30107-3 liveness · No cloud dependency.
A local Model Context Protocol server that wraps the 3DiVi Face SDK Processing Block API as callable tools. AI coding agents (Claude Code, Cursor, Windsurf, VS Code Copilot) can detect faces, verify identity, run liveness checks, and search a face gallery — without writing a single line of SDK integration code.
All processing runs on the developer's machine. No data leaves the host.
| Tool | Processing Block | Output |
|---|---|---|
detect_faces | FACE_DETECTOR | Bounding boxes, landmarks, pitch/yaw/roll |
check_liveness | LIVENESS_ESTIMATOR | Liveness verdict + confidence |
assess_quality | QUALITY_ASSESSMENT_ESTIMATOR | Quality score, eyes-open flag |
extract_template | FACE_TEMPLATE_EXTRACTOR | ContextTemplate (binary, no PII) |
verify_face | VERIFICATION_MODULE | 1:1 similarity score + match verdict |
search_face | MATCHER_MODULE + DynamicTemplateIndex | 1:N ranked match list |
estimate_attributes | AGE_ESTIMATOR + GENDER_ESTIMATOR | Age, gender, confidence |
estimate_emotion | EMOTION_ESTIMATOR | 7-class emotion probabilities |
detect_mask | MASK_ESTIMATOR | Masked/unmasked verdict |
git clone https://github.com/3divi/face-recognition-mcp-server.git
cd face-recognition-mcp-server
pip install -r server/python/requirements.txt
Add to your claude_desktop_config.json (or equivalent for your agent):
{
"mcpServers": {
"3divi-face-sdk": {
"command": "python",
"args": ["/path/to/face-recognition-mcp-server/server/python/main.py"],
"env": {
"FACESDK_PATH": "/path/to/facesdk",
"FACESDK_CONFIG": "/path/to/facesdk/conf/facerec.conf"
}
}
}
}
Open Claude Code in any project and type:
Integrate 3DiVi Face SDK for KYC verification — detect the face, run liveness,
extract a template, and compare against an enrolled template.
Claude Code will call the MCP tools directly. No SDK integration code required.
face-recognition-mcp-server/
├── CLAUDE.md # Machine-readable API reference (read by AI agents)
├── README.md
├── LICENSE
├── server/
│ ├── python/ # Phase 1 — stdio MCP server
│ │ ├── main.py # Entry point (JSON-RPC 2.0 over stdio)
│ │ ├── tools/
│ │ │ ├── detection.py # detect_faces, check_liveness, assess_quality, detect_mask
│ │ │ ├── recognition.py # extract_template, verify_face, search_face
│ │ │ └── attributes.py # estimate_attributes, estimate_emotion
│ │ └── requirements.txt
│ └── nodejs/ # Phase 2 — coming soon
├── reference-apps/
│ ├── kyc-onboarding/ # Phase 2
│ ├── access-control/ # Phase 2
│ └── emotion-analytics/ # Phase 3
└── docs/
└── threshold-guide.md
Privacy regulations (GDPR, BIPA, India DPDP) prohibit sending biometric data to third-party cloud APIs in many regulated industries. This MCP server runs entirely local — the SDK shared libraries process images in-process, and no biometric data is transmitted anywhere.
The only competing b