中国数据核验 MCP Server | 身份核验/企业查询/车辆信息/OCR识别/风险评估 | 10个Tool覆盖5大类 | 微信: chenganp | 邮箱: 345048305@qq.com
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"data-verify": {
"env": {
"DATA_VERIFY_ACCESS_TOKEN": "your_token_here"
},
"args": [
"-y",
"data-verify-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
English | 中文
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked data-verify-mcp against OSV.dev.
Click any tool to inspect its schema.
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 data
Query and manage PostgreSQL databases directly from AI assistants
An official Qdrant Model Context Protocol (MCP) server implementation
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
Manage Supabase projects — databases, auth, storage, and edge functions
MCP Security Weekly
Get CVE alerts and security updates for Data Verify Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
English | 中文
中国数据核验领域最全面的 MCP Server,集成 5大类 10项核验能力,覆盖身份认证、企业征信、交通物流、智能OCR、风控评估全链路场景。
支持身份证实名认证、手机三要素验证、银行卡多要素核验、AI人脸比对、企业工商信息查询、企业风险穿透分析、车辆档案查询、车辆风控评分、多类型证件OCR智能识别、个人综合信用风险评估。适用于 KYC 合规审核、金融风控决策、企业尽职调查、物流车辆管理、证件信息自动化录入等业务场景。
开箱即用,一行命令接入 OpenClaw / QClaw / Claude / Cursor / VSCode 等主流 AI 工具,让你的 AI 助手具备专业级数据核验能力。
| 分类 | Tool | 功能 |
|---|---|---|
| 🪪 身份核验 | verify_identity | 身份证二要素核验(姓名+身份证号) |
verify_phone_three | 手机三要素验证(姓名+身份证+手机号) | |
verify_bank_card | 银行卡三/四要素验证 | |
face_compare | 人脸比对(两张照片比对) | |
| 🏢 企业核验 | verify_enterprise | 企业工商信息查询 |
query_enterprise_risk | 企业风险查询 | |
| 🚗 交通物流 | query_vehicle_info | 车辆信息查询 |
vehicle_risk_score | 车辆风控评分 | |
| 📄 OCR识别 | ocr_recognize | 证件OCR识别(身份证/银行卡/驾驶证/行驶证) |
| ⚠️ 风险评估 | risk_assessment | 个人综合风险评估 |
无需安装,直接运行:
npx -y data-verify-mcp
npm install -g data-verify-mcp
data-verify-mcp
在配置文件中添加:
{
"mcpServers": {
"data-verify": {
"command": "npx",
"args": ["-y", "data-verify-mcp"],
"env": {
"DATA_VERIFY_ACCESS_TOKEN": "your_token_here"
}
}
}
}
claude mcp add data-verify -- npx -y data-verify-mcp
如需配置 Token:
claude mcp add data-verify -e DATA_VERIFY_ACCESS_TOKEN=your_token_here -- npx -y data-verify-mcp
{
"mcpServers": {
"data-verify": {
"command": "npx",
"args": ["-y", "data-verify-mcp"],
"env": {
"DATA_VERIFY_API_BASE": "https://your-server.com/api",
"DATA_VERIFY_ACCESS_TOKEN": "your_token_here"
}
}
}
}
verify_identity — 身份证二要素核验通过姓名和身份证号码验证身份信息是否一致。
参数:
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
name | string | ✅ | 真实姓名 |
id_card | string | ✅ | 18位身份证号码 |
使用示例:
"帮我核验一下张三的身份证号 110101199001011234 是否真实"
返回示例:
{
"code": "0",
"msg": "核验成功",
"data": {
"match": true,
"name": "张三",
"id_card": "110101****1234",
"gender": "男",
"age": 36,
"province": "北京市"
}
}
verify_phone_three — 手机三要素验证验证姓名、身份证号和手机号三者是否一致。
参数:
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
name | string | ✅ | 真实姓名 |
id_card | string | ✅ | 18位身份证号码 |
phone | string | ✅ | 11位手机号码 |
使用示例:
"验证一下张三、身份证110101199001011234、手机号13800138000是否匹配"
返回示例:
{
"code": "0",
"msg": "核验成功",
"data": {
"match": true,
"name": "张三",
"id_card": "110101****1234",
"phone": "138****8000",
"carrier": "移动"
}
}
verify_bank_card — 银行卡三/四要素验证验证银行卡与身份信息是否一致,支持三要素(无手机号)和四要素(含手机号)两种模式。
参数:
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
name | string | ✅ | 真实姓名 |
id_card | string | ✅ | 18位身份证号码 |
bank_card | string | ✅ | 银行卡号 |
phone | string | ❌ | 预留手机号(传入则为四要素验证) |
使用示例:
"核验银行卡6222021234567890123是否属于张三"
返回示例:
{
"code": "0",
"msg": "核验成功",
"data": {
"match": true,
"bank_name": "工商银行",
"card_type": "借记卡",
"name": "张三",
"bank_card": "6222****0123"
}
}
face_compare — 人脸比对比对两张人脸照片的相似度,判断是否为同一人。
参数:
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
image_base64_1 | string | ✅ | 第一张人脸照片的 Base64 编码 |
image_base64_2 | string | ✅ | 第二张人脸照片的 Base64 编码 |
使用示例:
"帮我比对这两张照片是不是同一个人"
返回示例:
{
"code": "0",
"msg": "比对成功",
"data": {
"match": true,
"score": 95.6,
"threshold": 80,
"conclus
... [View full README on GitHub](https://github.com/CCCpan/data-verify-mcp#readme)