time vs penpot-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | penpot-mcp by montevive | |
|---|---|---|
| Stars | ★ 85,748 | ★ 228 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 7 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
penpot-mcp · Summary
Penpot MCP server integrates AI assistants like Claude with Penpot designs for automated design workflows and analysis.
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
penpot-mcp · Use cases
- Automate design reviews and feedback collection with AI
- Generate design system documentation and consistency checks
- Streamline design-to-code workflows with AI assistance
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"]
}
}
}penpot-mcp · Install
Installation
Prerequisites
- Python 3.12+
- Penpot account credentials
Install from PyPI
pip install penpot-mcpConfiguration
Create a .env file with your Penpot credentials:
PENPOT_API_URL=https://design.penpot.app/api
PENPOT_USERNAME=your_penpot_username
PENPOT_PASSWORD=your_penpot_password
PORT=5000
DEBUG=trueClaude Desktop Integration
Add to your Claude Desktop config file:
{
"mcpServers": {
"penpot": {
"command": "uvx",
"args": ["penpot-mcp"],
"env": {
"PENPOT_API_URL": "https://design.penpot.app/api",
"PENPOT_USERNAME": "your_penpot_username",
"PENPOT_PASSWORD": "your_penpot_password"
}
}
}
}