cursor10x-mcp vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
cursor10x-mcp by aiurda | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 79 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 40 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具知识库 / RAG | 本地文件系统开发者工具效率工具 |
| 实现语言 | JavaScript | TypeScript |
| 最近提交 | 13 个月前 | 本月 |
cursor10x-mcp · 概述
DevContext(前身为 Cursor10x)是一个为 AI 助手提供持久多维内存的 MCP 服务器。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
cursor10x-mcp · 使用场景
- 在多个开发会话中保持项目上下文
- 增强 AI 助手对代码关系的理解
- 长期保留技术决策和架构决策
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
cursor10x-mcp · 安装
前置条件
- Node.js 18 或更高版本
- npm 或 yarn 包管理器
- Turso 数据库账户
设置步骤
- **配置 Turso 数据库:**
# 安装 Turso CLI
curl -sSfL https://get.turso.tech/install.sh | bash
# 登录 Turso
turso auth login
# 创建数据库
turso db create cursor10x-mcp
# 获取数据库 URL 和令牌
turso db show cursor10x-mcp --url
turso db tokens create cursor10x-mcp- **配置 Cursor MCP:**
在项目目录中更新 .cursor/mcp.json 文件,添加数据库 URL 和 Turso 认证令牌:
{
"mcpServers": {
"cursor10x-mcp": {
"command": "npx",
"args": ["cursor10x-mcp"],
"enabled": true,
"env": {
"TURSO_DATABASE_URL": "your-turso-database-url",
"TURSO_AUTH_TOKEN": "your-turso-auth-token"
}
}
}
}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 中安装。