filesystem vs spring-ai-playground
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | spring-ai-playground by spring-ai-community | |
|---|---|---|
| Stars | ★ 85,748 | ★ 113 |
| 30天用量 | — | — |
| 综合分 | 77 | 47 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 开发者工具AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | Java |
| 最近提交 | 本月 | 本月 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
spring-ai-playground · 概述
跨平台桌面应用,用于构建、测试和发布MCP工具,采用'不通过不运行'安全工作流。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
spring-ai-playground · 使用场景
- 开发者在部署前构建带有内置验证的MCP工具
- 团队将MCP工具连接到Python、Node.js或混合环境
- Claude Desktop、Claude Code、Cursor和其他MCP兼容环境用户
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 中安装。
spring-ai-playground · 安装
安装
桌面应用(推荐)
- 从[GitHub发布页面](https://github.com/spring-ai-community/spring-ai-playground/releases)下载适合您平台的安装程序
- 像普通桌面应用程序一样安装
- 从应用程序菜单启动Spring AI Playground
Docker
docker run -p 8282:8282 -v spring-ai-playground:/root ghcr.io/spring-ai-community/spring-ai-playgroundClaude Desktop配置
添加到您的Claude Desktop配置文件config.json:
{
"mcpServers": {
"spring-ai-playground": {
"command": "java",
"args": ["-jar", "path/to/spring-ai-playground.jar", "--spring.profiles.active=mcp-stdio"]
}
}
}