perfetto-mcp vs time
Side-by-side comparison to help you pick between these two MCP servers.
perfetto-mcp by antarikshc | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 178 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsMonitoringOps & Infra | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
perfetto-mcp · Summary
An MCP server that transforms natural language prompts into Perfetto trace analyses for Android performance debugging.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
perfetto-mcp · Use cases
- Diagnose application performance issues in Android traces using natural language
- Automatically analyze ANR events and identify root causes
- Profile CPU usage and frame performance without writing SQL
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
perfetto-mcp · Install
Installation
**Using uvx (recommended)**:
For Cursor:
{
"mcpServers": {
"perfetto-mcp": {
"command": "uvx",
"args": ["perfetto-mcp"]
}
}
}For Claude Code:
claude mcp add perfetto-mcp --scope user -- uvx perfetto-mcpFor VS Code: Add to .vscode/mcp.json:
{
"mcpServers": {
"perfetto-mcp": {
"command": "uvx",
"args": ["perfetto-mcp"]
}
}
}**Using pip**:
pip3 install perfetto-mcp
python3 -m perfetto_mcp**Prerequisites**:
- Python 3.13+
- uv (recommended)
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"]
}
}
}