data-verify-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
data-verify-mcp by CCCpan | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 164 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | SecurityFinanceDeveloper Tools | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this month |
data-verify-mcp · Summary
A comprehensive Chinese data verification MCP server offering 10 tools across 5 categories including identity verification, enterprise checks, vehicle info, OCR recognition, and risk assessment.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
data-verify-mcp · Use cases
- KYC compliance verification in financial services
- Enterprise due diligence and risk assessment
- Vehicle management in logistics industry
- Automated document information extraction via OCR
- Personal credit evaluation for lending decisions
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
data-verify-mcp · Install
Installation
Quick Start (Recommended)
npx -y data-verify-mcpGlobal Installation
npm install -g data-verify-mcp
data-verify-mcpClaude Desktop Configuration
{
"mcpServers": {
"data-verify": {
"command": "npx",
"args": ["-y", "data-verify-mcp"],
"env": {
"DATA_VERIFY_ACCESS_TOKEN": "your_token_here"
}
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.