devcontext vs time
Side-by-side comparison to help you pick between these two MCP servers.
devcontext by aiurda | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 45 | ★ 85,748 |
| 30d uses | — | — |
| Score | 42 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | ProductivityDeveloper ToolsCommunication |
| Language | HTML | TypeScript |
| Last commit | 12 mo ago | this month |
devcontext · Summary
Autonomous MCP server providing project-centric context awareness through pattern learning and relationship graphs.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
devcontext · Use cases
- Autonomous development environment with Cursor Rules integration
- Real-time code context retrieval during conversations
- Pattern recognition and development workflow optimization
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
devcontext · Install
Installation
Prerequisites
- Node.js 18.0.0 or higher
- Cursor IDE with MCP support
- TursoDB account
Step 1: Set up TursoDB Database
- Sign up for [Turso](https://turso.tech/) and create an account
- Install Turso CLI (optional but recommended):
``bash curl -sSfL https://get.turso.tech/install.sh | bash ``
- Authenticate with Turso:
``bash turso auth login ``
- Create a project database:
``bash turso db create devcontext ``
- Get database credentials and save both URL and token
Step 2: Configure MCP in Cursor
Create or edit .cursor/mcp.json in your project directory:
{
"mcpServers": {
"devcontext": {
"command": "npx",
"args": ["-y", "devcontext@latest"],
"enabled": true,
"env": {
"TURSO_DATABASE_URL": "your-turso-database-url",
"TURSO_AUTH_TOKEN": "your-turso-auth-token"
}
}
}
}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"]
}
}
}