MCP Catalogs
首页

cursor10x-mcp vs everything

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

cursor10x-mcp
by aiurda
everything
by modelcontextprotocol
Stars★ 79★ 85,748
30天用量
综合分4077
官方
分类
AI / LLM 工具开发者工具知识库 / RAG
开发者工具AI / LLM 工具其它
实现语言JavaScriptTypeScript
最近提交13 个月前本月

cursor10x-mcp · 概述

DevContext(前身为 Cursor10x)是一个为 AI 助手提供持久多维内存的 MCP 服务器。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

cursor10x-mcp · 使用场景

  • 在多个开发会话中保持项目上下文
  • 增强 AI 助手对代码关系的理解
  • 长期保留技术决策和架构决策

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

cursor10x-mcp · 安装

前置条件

  • Node.js 18 或更高版本
  • npm 或 yarn 包管理器
  • Turso 数据库账户

设置步骤

  1. **配置 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
  1. **配置 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"
      }
    }
  }
}

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
对比内容由 README + GitHub 公开数据自动生成,定期更新。