time vs mxcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | mxcp by raw-labs | |
|---|---|---|
| Stars | ★ 85,748 | ★ 67 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsOps & InfraAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mxcp · Summary
MXCP is an enterprise-grade framework for building production-ready MCP servers with data modeling, security policies, and comprehensive testing.
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
mxcp · Use cases
- Enterprise data access with fine-grained security policies and audit trails
- Hybrid data analysis combining SQL for queries and Python for complex ML models
- Production AI applications with drift detection, monitoring, and compliance logging
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"]
}
}
}mxcp · Install
Installation
# Install MXCP
pip install mxcp
# Initialize a new project
mkdir my-ai-tools && cd my-ai-tools
mxcp init --bootstrap
# Start serving your tools
mxcp serveClaude Desktop Configuration
Add this to your Claude Desktop config:
{
"mcpServers": {
"my-tools": {
"command": "mxcp",
"args": ["serve", "--transport", "stdio"],
"cwd": "/path/to/my-ai-tools"
}
}
}