MCP Catalogs
首页

filesystem vs tauri-plugin-mcp

并排对比,帮你在这两个 MCP server 之间做选择。

filesystem
by modelcontextprotocol
tauri-plugin-mcp
by P3GLEG
Stars★ 85,748★ 96
30天用量
综合分7748
官方
分类
本地文件系统开发者工具效率工具
开发者工具浏览器自动化效率工具
实现语言TypeScriptRust
最近提交本月本月

filesystem · 概述

功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。

tauri-plugin-mcp · 概述

Tauri插件使AI代理能够通过截图、DOM访问和输入模拟来调试应用程序。

filesystem · 使用场景

  • 使 AI 模型能够读取和写入项目文件进行开发
  • 允许 Claude 或其他 MCP 客户端浏览和分析代码库
  • 为内容生成提供对特定目录的安全沙盒访问

tauri-plugin-mcp · 使用场景

  • AI 代理对 Tauri 应用程序进行自动化 UI 测试和调试
  • 桌面应用程序中的视觉回归测试和自动化错误报告
  • 跨平台桌面应用程序的 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 中安装。

tauri-plugin-mcp · 安装

安装

  1. **安装 Tauri 插件**:
npm install tauri-plugin-mcp
  1. **在您的 Tauri 应用程序中注册插件**:
#[cfg(debug_assertions)]
{
    builder = builder.plugin(tauri_plugin_mcp::init_with_config(
        tauri_plugin_mcp::PluginConfig::new("APPLICATION_NAME".to_string())
            .start_socket_server(true)
            .socket_path("/tmp/tauri-mcp.sock")
    ));
}
  1. **配置您的 AI 代理**(例如,Claude Desktop):
{
  "mcpServers": {
    "tauri-mcp": {
      "command": "npx",
      "args": ["tauri-plugin-mcp-server"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。