MCP Catalogs
Home

ultimate_mcp_server vs asc-mcp

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

ultimate_mcp_server
by Dicklesworthstone
asc-mcp
by zelentsov-dev
Stars★ 149★ 27
30d uses
Score8544
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
Developer ToolsAI / LLM ToolsProductivity
LanguagePythonSwift
Last commit2 mo agothis month

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.

asc-mcp · Summary

MCP server providing 208 tools for managing App Store Connect resources directly from Claude or other MCP clients.

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

asc-mcp · Use cases

  • Automate app submissions and review responses through natural language
  • Manage TestFlight beta groups and builds programmatically
  • Handle in-app purchases and subscription configurations via AI assistants
  • Generate App Store Connect analytics reports and performance metrics

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

asc-mcp · Install

Installation

Option A: Using Mint (recommended)

# Install Mint
brew install mint

# Install asc-mcp
mint install zelentsov-dev/asc-mcp@v2.4.0

# Add to Claude Code
claude mcp add asc-mcp -- ~/.mint/bin/asc-mcp

Option B: Building from Source

git clone https://github.com/zelentsov-dev/asc-mcp.git
cd asc-mcp
swift build -c release

# Register with Claude
claude mcp add asc-mcp -- $(pwd)/.build/release/asc-mcp

Claude Desktop Configuration

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "asc-mcp": {
      "command": "/path/to/asc-mcp",
      "env": {
        "ASC_KEY_ID": "XXXXXXXXXX",
        "ASC_ISSUER_ID": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
        "ASC_PRIVATE_KEY_PATH": "/path/to/AuthKey.p8"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.