mcp-for-argocd vs time
Side-by-side comparison to help you pick between these two MCP servers.
mcp-for-argocd by argoproj-labs | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 464 | ★ 85,748 |
| 30d uses | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraAI / LLM Tools | ProductivityDeveloper ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
mcp-for-argocd · Summary
MCP server enabling AI assistants to interact with Argo CD applications through natural language.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mcp-for-argocd · Use cases
- AI-assisted Argo CD application management through natural language
- Integration of Argo CD operations into AI-powered development workflows
- Automated infrastructure management using conversational AI
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-for-argocd · Install
Installation
Prerequisites
- Node.js (v18 or higher recommended)
- Argo CD instance with API access
- Argo CD API token
Usage with Claude Desktop
- Create a
claude_desktop_config.jsonconfiguration file:
{
"mcpServers": {
"argocd-mcp": {
"command": "npx",
"args": [
"argocd-mcp@latest",
"stdio"
],
"env": {
"ARGOCD_BASE_URL": "<argocd_url>",
"ARGOCD_API_TOKEN": "<argocd_token>"
}
}
}
}- Configure Claude Desktop to use this configuration file in settings.
Usage with VSCode
- Create a
.vscode/mcp.jsonfile in your project:
{
"servers": {
"argocd-mcp-stdio": {
"type": "stdio",
"command": "npx",
"args": [
"argocd-mcp@latest",
"stdio"
],
"env": {
"ARGOCD_BASE_URL": "<argocd_url>",
"ARGOCD_API_TOKEN": "<argocd_token>"
}
}
}
}- Start a conversation with an AI assistant in VS Code that supports MCP.
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"]
}
}
}