ext-apps vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
ext-apps by modelcontextprotocol | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2,263 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 58 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具效率工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
ext-apps · 概述
MCP Apps SDK 用于构建可在 AI 聊天客户端内渲染的交互式 UI 组件。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
ext-apps · 使用场景
- 为 AI 分析工具构建交互式数据可视化
- 在聊天界面内创建设计画布和协作式白板
- 为专业应用程序开发复杂表单和配置界面
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
ext-apps · 安装
安装
npm install -S @modelcontextprotocol/ext-apps对于 Claude Desktop,添加到您的 config.json:
{
"mcpServers": {
"mcp-apps": {
"command": "npx",
"args": ["@modelcontextprotocol/ext-apps"]
}
}
}[快速入门指南](https://apps.extensions.modelcontextprotocol.io/api/documents/Quickstart.html)
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 中安装。