time vs dx-toolkit
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | dx-toolkit by youdotcom-oss | |
|---|---|---|
| Stars | ★ 85,748 | ★ 20 |
| 30d uses | — | — |
| Score | 77 | 42 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
dx-toolkit · Summary
You.com DX Toolkit provides MCP server integration and SDK plugins for developers to leverage You.com AI capabilities.
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
dx-toolkit · Use cases
- Build AI-powered applications using You.com's capabilities through MCP
- Integrate You.com search and AI tools into existing workflows
- Develop custom AI assistants leveraging You.com's models
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"]
}
}
}dx-toolkit · Install
# Install dependencies
bun install
# Copy and set environment variables
cp .env.example .env
source .env
# Build the project
bun run buildFor Claude Desktop integration, add to your config.json:
{
"mcpServers": {
"youcom": {
"command": "bun",
"args": ["--cwd", "/path/to/dx-toolkit/packages/mcp", "run", "start"]
}
}
}