everything vs masquerade
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | masquerade by postralai | |
|---|---|---|
| Stars | ★ 85,748 | ★ 76 |
| 30天用量 | — | — |
| 综合分 | 77 | 43 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 安全AI / LLM 工具本地文件系统 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 9 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
masquerade · 概述
Masquerade MCP 是 LLM 的隐私防火墙,在处理前从 PDF 中删除敏感数据。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
masquerade · 使用场景
- 在 AI 分析前处理包含敏感客户信息的法律合同
- 在 LLM 审查前从医疗记录中删除个人健康信息
- 在使用 AI 助手时保护内部文档中的机密商业数据
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingmasquerade · 安装
安装选项
**选项 1: 自动安装**
curl -O https://raw.githubusercontent.com/postralai/masquerade/main/setup.sh && bash setup.sh**选项 2: 手动安装**
- 使用 Python 3.10-3.12 创建虚拟环境
python3.12 -m venv pdfmcp
source pdfmcp/bin/activate- 安装仓库:
pip install git+https://github.com/postralai/masquerade@main- 配置 Claude:
python -m masquerade.configure_claude- 将以下内容添加到您的
claude_desktop_config.json中:
{
"mcpServers": {
"pdf-redaction": {
"command": "/path/to/python",
"args": ["/path/to/mcp_pdf_redaction.py"],
"env": {
"TINFOIL_API_KEY": "your_api_key"
}
}
}
}