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 | — | — |
| Score | 46 | 85 |
| Official | — | — |
| Categories | Developer ToolsOps & InfraAI / LLM Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | this month | 2 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-mcpClaude 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
- 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