emcee vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
emcee by mattt | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 321 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 47 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具其它 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Go | TypeScript |
| 最近提交 | 7 个月前 | 本月 |
emcee · 概述
emcee 将 OpenAPI 规范转换为 MCP 服务器,使 Claude Desktop 和其他应用能够连接到 Web API。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
emcee · 使用场景
- 通过 OpenAPI 规范将 Claude Desktop 连接到自定义 Web 服务
- 使 AI 助手能够与内部 API 交互,无需自定义 MCP 开发
- 快速将现有 API 文档转换为 AI 可访问的工具
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
emcee · 安装
使用 Homebrew 安装 emcee:
brew install mattt/tap/emcee配置 Claude Desktop:
{
"mcpServers": {
"my-api": {
"command": "emcee",
"args": ["https://api.example.com/openapi.json"]
}
}
}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 中安装。