time vs user-feedback-mcp
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | user-feedback-mcp by mrexodia | |
|---|---|---|
| Stars | ★ 85,748 | ★ 53 |
| 30d uses | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 14 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
user-feedback-mcp · Summary
A simple MCP server enabling human-in-the-loop workflows for AI development tools like Cline and Cursor.
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
user-feedback-mcp · Use cases
- Testing desktop applications with complex UI interactions
- Gathering human validation for automated code generation
- Creating human-in-the-loop workflows for AI-assisted development
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"]
}
}
}user-feedback-mcp · Install
Installation
Cline
- Install [uv](https://github.com/astral-sh/uv) globally
- Clone this repository
- Navigate to Cline's MCP Servers configuration
- Add the following to your
cline_mcp_settings.json:
{
"mcpServers": {
"github.com/mrexodia/user-feedback-mcp": {
"command": "uv",
"args": [
"--directory",
"<path_to_repo>",
"run",
"server.py"
],
"timeout": 600,
"autoApprove": [
"user_feedback"
]
}
}
}Development
uv run fastmcp dev server.pyThis opens a web interface at http://localhost:5173 for testing.