cursor10x-mcp vs time
Side-by-side comparison to help you pick between these two MCP servers.
cursor10x-mcp by aiurda | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 79 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsKnowledge Graph | ProductivityDeveloper ToolsCommunication |
| Language | JavaScript | TypeScript |
| Last commit | 13 mo ago | this month |
cursor10x-mcp · Summary
DevContext (formerly Cursor10x) is an MCP server providing persistent multi-dimensional memory for AI assistants.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
cursor10x-mcp · Use cases
- Maintaining project context across multiple development sessions
- Enhancing AI assistant understanding of code relationships
- Retaining technical decisions and architectural decisions over time
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
cursor10x-mcp · Install
Prerequisites
- Node.js 18 or higher
- npm or yarn package manager
- Turso database account
Setup Steps
- **Configure Turso Database:**
# Install Turso CLI
curl -sSfL https://get.turso.tech/install.sh | bash
# Login to Turso
turso auth login
# Create a database
turso db create cursor10x-mcp
# Get database URL and token
turso db show cursor10x-mcp --url
turso db tokens create cursor10x-mcp- **Configure Cursor MCP:**
Update .cursor/mcp.json in your project directory with the database URL and Turso auth token:
{
"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 · 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"]
}
}
}