contextplus vs time
Side-by-side comparison to help you pick between these two MCP servers.
contextplus by forloopcodes | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,896 | ★ 85,748 |
| 30d uses | — | — |
| Score | 56 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
contextplus · Summary
Context+ is an MCP server that transforms codebases into searchable feature graphs using RAG, AST parsing, and semantic linking.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
contextplus · Use cases
- Large-scale code navigation and understanding in complex codebases
- Semantic code search and identifier-level retrieval across projects
- Code analysis including blast radius tracing and static analysis
- Knowledge management for code with Obsidian-style feature hubs
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
contextplus · Install
Installation
Quick Start (npx / bunx)
No installation needed. Add Context+ to your IDE MCP config.
For Claude Code, Cursor, and Windsurf, use 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"
}
}
}
}For VS Code (.vscode/mcp.json), use servers and 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 · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}