filesystem vs domscribe
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | domscribe by patchorbit | |
|---|---|---|
| Stars | ★ 85,748 | ★ 168 |
| 30天用量 | — | — |
| 综合分 | 77 | 48 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 开发者工具AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
domscribe · 概述
Domscribe 通过 MCP 桥接运行中的应用程序和源代码,使 AI 代理能够查看实时 UI 上下文并进行精准编辑。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
domscribe · 使用场景
- AI 代理通过查询源代码位置检查实时 UI 状态,理解渲染的组件
- 开发者指向 UI 元素并用普通英语描述更改,由 AI 实施
- 跨框架开发,在热重载过程中提供稳定的 DOM 到源映射
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 中安装。
domscribe · 安装
使用设置向导安装:
npx domscribe init这将引导您连接编码代理并添加到应用中。手动设置步骤:
- 添加到打包器/框架(以 React 与 Vite 为例):
npm install -D @domscribe/react// vite.config.ts
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import { domscribe } from '@domscribe/react/vite';
export default defineConfig({
plugins: [react(), domscribe()],
});- 连接您的编码代理(以 Claude Desktop 为例):
添加到 Claude 的 config.json:
{
"mcpServers": {
"domscribe": {
"command": "npx",
"args": ["domscribe", "mcp"]
}
}
}