time vs kicad-mcp-pro
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | kicad-mcp-pro by oaslananka | |
|---|---|---|
| Stars | ★ 85,748 | ★ 126 |
| 30d uses | — | — |
| Score | 77 | 50 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsOther |
| 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.
kicad-mcp-pro · Summary
MCP server for KiCad PCB and schematic automation with project setup, validation gates, and manufacturing exports.
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
kicad-mcp-pro · Use cases
- Automating PCB design workflows with AI assistance
- Validating PCB designs for DFM and manufacturing readiness
- Exporting manufacturing packages for production
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"]
}
}
}kicad-mcp-pro · Install
Installation
Install with uvx:
uvx kicad-mcp-pro --help
uvx kicad-mcp-pro health --json
uvx kicad-mcp-pro serveOr install with pip:
pip install kicad-mcp-pro
kicad-mcp-pro --help
kicad-mcp-pro health --json
kicad-mcp-pro serveClaude Desktop Configuration
Add to Claude Desktop config:
{
"servers": {
"kicad": {
"type": "stdio",
"command": "uvx",
"args": ["kicad-mcp-pro"],
"env": {
"KICAD_MCP_PROJECT_DIR": "/absolute/path/to/your/kicad-project",
"KICAD_MCP_WORKSPACE_ROOT": "/absolute/path/to/your/workspace",
"KICAD_MCP_PROFILE": "pcb_only"
}
}
}
}