MCP Catalogs
Home

ultimate_mcp_server vs mcp-untappd-server-dotnet

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

ultimate_mcp_server
by Dicklesworthstone
mcp-untappd-server-dotnet
by jtucker
Stars★ 149★ 9
30d uses
Score8529
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
AI / LLM ToolsOther
LanguagePythonF#
Last commit2 mo ago13 mo ago

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-untappd-server-dotnet · Summary

Untappd MCP Server using Azure Functions in F# for beer data integration.

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-untappd-server-dotnet · Use cases

  • Retrieving beer information and reviews from Untappd
  • Tracking personal beer check-ins and history
  • Creating beer discovery workflows in AI assistants

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

mcp-untappd-server-dotnet · Install

Installation

Prerequisites:

  • dotnet 9.0
  • Docker Desktop

Configuration:

  1. Set up local.settings.json with your Azure connection string and Untappd API credentials:
{
    "IsEncrypted": false,
    "Values": {
        "AzureWebJobsStorage": "<CONNECTION_STRING>",
        "FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated",
        "Untappd:ClientId": "",
        "Untappd:ClientSecret": ""
    }
}

Claude Desktop Setup:

Since Claude Desktop doesn't currently support SSE configuration, you need to include a middle man component:

Edit your claude_desktop_config.json:

{
  "mcpServers": {
    "untappddotnet": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "http://localhost:7071/runtime/webhooks/mcp/sse"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.