mcp-server vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server by browserstack | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 139 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 77 |
| 官方 | — | ✓ |
| 分类 | 浏览器自动化开发者工具AI / LLM 工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
mcp-server · 概述
BrowserStack 的 MCP 服务器,提供在真实设备和浏览器上进行全面测试以及 AI 驱动的测试管理功能。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
mcp-server · 使用场景
- 跨多个浏览器和设备进行 Web 应用自动化测试
- 在真实设备上调试移动应用崩溃问题
- 使用自然语言生成和管理测试用例
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
mcp-server · 安装
安装
前提条件
- Node.js 版本 >= 18.0 (推荐 v22.15.0 LTS)
- BrowserStack 账户及访问密钥
Claude Desktop 配置
添加到 ~/claude_desktop_config.json:
{
"mcpServers": {
"browserstack": {
"command": "npx",
"args": ["-y", "@browserstack/mcp-server@latest"],
"env": {
"BROWSERSTACK_USERNAME": "<用户名>",
"BROWSERSTACK_ACCESS_KEY": "<访问密钥>"
}
}
}
}VSCode 配置
创建 .vscode/mcp.json:
{
"servers": {
"browserstack": {
"command": "npx",
"args": ["-y", "@browserstack/mcp-server@latest"],
"env": {
"BROWSERSTACK_USERNAME": "<用户名>",
"BROWSERSTACK_ACCESS_KEY": "<访问密钥>"
}
}
}
}还支持通过 browserstack.com/one-click-setup 为 VSCode 和 Cursor 提供一键安装
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 中安装。