cursor10x-mcp vs time
并排对比,帮你在这两个 MCP server 之间做选择。
cursor10x-mcp by aiurda | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 79 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 40 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具知识库 / RAG | 效率工具开发者工具沟通协作 |
| 实现语言 | JavaScript | TypeScript |
| 最近提交 | 13 个月前 | 本月 |
cursor10x-mcp · 概述
DevContext(前身为 Cursor10x)是一个为 AI 助手提供持久多维内存的 MCP 服务器。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
cursor10x-mcp · 使用场景
- 在多个开发会话中保持项目上下文
- 增强 AI 助手对代码关系的理解
- 长期保留技术决策和架构决策
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
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"
}
}
}
}time · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}