Skip to content

Commit 994e7ea

Browse files
author
chengpan002
committed
项目升级:全新 Data Verify MCP Server
中国数据核验领域最全面的 MCP Server,集成5大类10项核验能力: - 身份核验:实名认证、手机三要素、银行卡要素、人脸比对 - 企业核验:工商信息查询、企业风险查询 - 交通物流:车辆信息查询、车辆风控评分 - OCR识别:身份证/银行卡/驾驶证/行驶证 - 风险评估:个人综合风险评估 支持 OpenClaw / QClaw / Claude / Cursor / VSCode 等主流AI工具
1 parent 733c66b commit 994e7ea

39 files changed

Lines changed: 4499 additions & 1573 deletions

.env.example

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# API base URL (required)
2+
DATA_VERIFY_API_BASE=https://api.example.com
3+
4+
# Access token for unlimited usage (optional)
5+
# Free tier: 20-50 requests/day per tool without token
6+
DATA_VERIFY_ACCESS_TOKEN=your_token_here

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules/
2+
dist/
3+
*.js.map
4+
.env
5+
.DS_Store

.ipynb_checkpoints/CNAME-checkpoint

Whitespace-only changes.

.ipynb_checkpoints/LICENSE-checkpoint

Lines changed: 0 additions & 674 deletions
This file was deleted.

.ipynb_checkpoints/README-checkpoint.md

Lines changed: 0 additions & 131 deletions
This file was deleted.

.ipynb_checkpoints/package-checkpoint.json

Whitespace-only changes.

.ipynb_checkpoints/package-lock-checkpoint.json

Whitespace-only changes.

CNAME

Whitespace-only changes.

CODE_OF_CONDUCT.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Code of Conduct
2+
3+
## Our Pledge
4+
5+
We are committed to providing a friendly, safe, and welcoming environment for all contributors.
6+
7+
## Our Standards
8+
9+
- Be respectful and inclusive
10+
- Accept constructive criticism gracefully
11+
- Focus on what is best for the community
12+
13+
## Enforcement
14+
15+
Instances of abusive behavior may be reported to the project maintainers. All complaints will be reviewed and investigated.
16+
17+
## Attribution
18+
19+
This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org/), version 2.1.

CONTRIBUTING.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Contributing
2+
3+
Thank you for your interest in contributing to Data Verify MCP Server!
4+
5+
## How to Contribute
6+
7+
1. Fork the repository
8+
2. Create a feature branch (`git checkout -b feature/my-feature`)
9+
3. Commit your changes (`git commit -m 'Add my feature'`)
10+
4. Push to the branch (`git push origin feature/my-feature`)
11+
5. Open a Pull Request
12+
13+
## Development Setup
14+
15+
```bash
16+
git clone https://github.com/pancheng/data-verify-mcp.git
17+
cd data-verify-mcp
18+
npm install
19+
npm run dev
20+
```
21+
22+
## Building
23+
24+
```bash
25+
npm run build
26+
```
27+
28+
## Testing
29+
30+
```bash
31+
npm test
32+
```
33+
34+
## Code Style
35+
36+
- Use TypeScript strict mode
37+
- Follow existing code patterns
38+
- Add JSDoc comments for public APIs
39+
- Keep tool descriptions clear and bilingual (English + Chinese)
40+
41+
## Reporting Issues
42+
43+
Please use [GitHub Issues](https://github.com/pancheng/data-verify-mcp/issues) to report bugs or request features.
44+
45+
## Security
46+
47+
- **Never** commit API tokens or credentials
48+
- Use environment variables for sensitive configuration
49+
- See [SECURITY.md](SECURITY.md) for vulnerability reporting

0 commit comments

Comments
 (0)