filesystem vs ai-compliance-monitor
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | ai-compliance-monitor by vdineshk | |
|---|---|---|
| Stars | ★ 85,748 | ★ 0 |
| 30天用量 | — | — |
| 综合分 | 77 | 36 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | AI / LLM 工具可观测性开发者工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 1 个月前 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
ai-compliance-monitor · 概述
MCP 服务器为 AI 代理提供结构化监管情报,确保跨司法管辖区合规性。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
ai-compliance-monitor · 使用场景
- AI 代理招聘/筛选工具
- 金融服务信用评分系统
- 医疗健康医疗分诊应用
filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 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 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。
ai-compliance-monitor · 安装
通过 MCP 安装
将以下内容添加到您的 Claude Desktop 配置中:
{
"mcpServers": {
"ai-compliance-monitor": {
"command": "npx",
"args": ["@modelcontextprotocol/server-ai-compliance-monitor"],
"env": {}
}
}
}自托管部署
- 克隆仓库:
``bash git clone https://github.com/vdineshk/ai-compliance-monitor.git cd ai-compliance-monitor ``
- 安装依赖:
``bash npm install ``
- 创建 D1 数据库:
``bash npx wrangler d1 create ai-compliance-monitor-db # 将 database_id 复制到 wrangler.toml ``
- 运行迁移和种子数据:
``bash npx wrangler d1 migrations apply ai-compliance-monitor-db --remote npx wrangler d1 execute ai-compliance-monitor-db --remote --file=./migrations/0002_seed_data.sql ``
- 部署:
``bash npx wrangler deploy ``