contextplus vs time
并排对比,帮你在这两个 MCP server 之间做选择。
contextplus by forloopcodes | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,896 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 56 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具知识库 / RAG | 效率工具开发者工具沟通协作 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
contextplus · 概述
Context+ 是一个 MCP 服务器,使用 RAG、AST 解析和语义链接将代码库转换为可搜索的特性图。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
contextplus · 使用场景
- 在复杂代码库中进行大规模代码导航和理解
- 跨项目的语义代码搜索和标识符级检索
- 代码分析,包括影响范围追踪和静态分析
- 使用 Obsidian 风格特性图进行代码知识管理
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
contextplus · 安装
安装
快速开始(npx / bunx)
无需安装。将 Context+ 添加到您的 IDE MCP 配置中。
对于 Claude Code、Cursor 和 Windsurf,使用 mcpServers:
{
"mcpServers": {
"contextplus": {
"command": "bunx",
"args": ["contextplus"],
"env": {
"OLLAMA_EMBED_MODEL": "nomic-embed-text",
"OLLAMA_CHAT_MODEL": "gemma2:27b",
"OLLAMA_API_KEY": "YOUR_OLLAMA_API_KEY"
}
}
}
}对于 VS Code(.vscode/mcp.json),使用 servers 和 inputs:
{
"servers": {
"contextplus": {
"type": "stdio",
"command": "bunx",
"args": ["contextplus"],
"env": {
"OLLAMA_EMBED_MODEL": "nomic-embed-text",
"OLLAMA_CHAT_MODEL": "gemma2:27b",
"OLLAMA_API_KEY": "YOUR_OLLAMA_API_KEY"
}
}
},
"inputs": []
}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"]
}
}
}