MCP Catalogs
Home

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
Score5385
Official
Categories
Developer ToolsOps & InfraAI / LLM Tools
AI / LLM ToolsBrowser AutomationFile System
LanguageTypeScriptPython
Last commit1 mo ago2 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

  1. Create a claude_desktop_config.json configuration file:
{
  "mcpServers": {
    "argocd-mcp": {
      "command": "npx",
      "args": [
        "argocd-mcp@latest",
        "stdio"
      ],
      "env": {
        "ARGOCD_BASE_URL": "<argocd_url>",
        "ARGOCD_API_TOKEN": "<argocd_token>"
      }
    }
  }
}
  1. Configure Claude Desktop to use this configuration file in settings.

Usage with VSCode

  1. Create a .vscode/mcp.json file 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>"
      }
    }
  }
}
  1. Start a conversation with an AI assistant in VS Code that supports MCP.

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.