time vs k6-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | k6-mcp-server by QAInsights | |
|---|---|---|
| Stars | ★ 85,748 | ★ 24 |
| 30d uses | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsMonitoringOps & Infra |
| 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.
k6-mcp-server · Summary
k6 MCP server for load testing integration with AI models through Model Context Protocol.
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
k6-mcp-server · Use cases
- AI-powered performance test analysis and interpretation
- Automated regression testing triggered by code changes
- Performance benchmarking as part of CI/CD pipelines
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"]
}
}
}k6-mcp-server · Install
Installation
- Clone the repository:
git clone https://github.com/qainsights/k6-mcp-server.git- Install dependencies:
uv pip install -r requirements.txt- Set up environment variables (optional):
Create a .env file with:
K6_BIN=/path/to/k6- Configure in your MCP client (e.g., Claude Desktop):
{
"mcpServers": {
"k6": {
"command": "/path/to/bin/uv",
"args": [
"--directory",
"/path/to/k6-mcp-server",
"run",
"k6_server.py"
]
}
}
}