cursor-feedback-extension vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
cursor-feedback-extension by jianger666 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 28 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 43 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具效率工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | JavaScript | TypeScript |
| 最近提交 | 4 个月前 | 本月 |
cursor-feedback-extension · 概述
MCP server 通过在 IDE 侧边栏实现反馈循环,允许在 Cursor 中进行无限 AI 交互。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
cursor-feedback-extension · 使用场景
- 启用长时间运行的 AI 对话而不会触及 Cursor 的月度请求限制
- 实现人工在环工作流,AI 在继续前寻求验证
- 通过允许 AI 在 IDE 中共享工作摘要和收集反馈来增强协作
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
cursor-feedback-extension · 安装
安装选项
**1. Cursor 扩展市场** 在 Cursor 扩展市场中搜索 "Cursor Feedback"。
**2. 命令行安装**
cursor --install-extension jianger666.cursor-feedback**3. MCP 配置** 添加到您的 Cursor MCP 配置文件 (~/.cursor/mcp.json):
{
"mcpServers": {
"cursor-feedback": {
"command": "npx",
"args": ["-y", "cursor-feedback@latest"]
}
}
}**4. 全局安装**
npm install -g cursor-feedback然后配置:
{
"mcpServers": {
"cursor-feedback": {
"command": "cursor-feedback-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 中安装。