MCP Catalogs
Home

teamcity-mcp vs ultimate_mcp_server

Side-by-side comparison to help you pick between these two MCP servers.

teamcity-mcp
by Daghis
ultimate_mcp_server
by Dicklesworthstone
Stars★ 25★ 149
30d uses
Score4685
Official
Categories
Developer ToolsOps & InfraAI / LLM Tools
AI / LLM ToolsBrowser AutomationFile System
LanguageTypeScriptPython
Last committhis month2 mo ago

teamcity-mcp · Summary

MCP server for JetBrains TeamCity that provides 87 tools to control builds, tests, agents and configurations from AI coding assistants.

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.

teamcity-mcp · Use cases

  • Trigger and monitor builds directly from AI coding assistants
  • Create and manage build configurations programmatically
  • Analyze test failures and build logs without leaving the development environment

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

teamcity-mcp · Install

Quick Installation

# Using npx with environment variables
TEAMCITY_URL="https://teamcity.example.com" \
TEAMCITY_TOKEN="<your_token>" \
MCP_MODE=dev \
npx -y @daghis/teamcity-mcp

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "teamcity": {
      "command": "npx",
      "args": [
        "-y",
        "@daghis/teamcity-mcp",
        "--url",
        "https://teamcity.example.com",
        "--token",
        "tc_<your_token>"
      ]
    }
  }
}

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.