mcp-server-circleci vs time
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-circleci by CircleCI-Public | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 83 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraProductivity | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
mcp-server-circleci · Summary
A TypeScript MCP server that integrates CircleCI's development workflow with AI assistants via natural language commands.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-server-circleci · Use cases
- Trigger and monitor CircleCI pipelines directly from AI assistants without leaving your IDE
- Analyze build failures and test results to identify and fix issues faster
- Optimize CircleCI configurations by finding underused resources and flaky tests
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
mcp-server-circleci · Install
Installation
With Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"circleci-mcp-server": {
"command": "npx",
"args": ["-y", "@circleci/mcp-server-circleci@latest"],
"env": {
"CIRCLECI_TOKEN": "your-circleci-token",
"CIRCLECI_BASE_URL": "https://circleci.com",
"MAX_MCP_OUTPUT_LENGTH": "50000"
}
}
}
}With VS Code
Add to .vscode/mcp.json:
{
"servers": {
"circleci-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@circleci/mcp-server-circleci@latest"],
"env": {
"CIRCLECI_TOKEN": "${input:circleci-token}",
"CIRCLECI_BASE_URL": "${input:circleci-base-url}"
}
}
}
}**Prerequisites:** CircleCI Personal API token, Node.js ≥ v18, pnpm, Docker (optional)
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"]
}
}
}