mcp-for-argocd vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-for-argocd by argoproj-labs | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 464 | ★ 149 |
| 30d uses | — | — |
| Score | 53 | 85 |
| Official | — | — |
| Categories | Developer ToolsOps & InfraAI / LLM Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | 1 mo ago | 2 mo ago |
mcp-for-argocd · Summary
MCP server enabling AI assistants to interact with Argo CD applications through natural language.
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
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
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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.
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server