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 | — | — |
| Score | 85 | 29 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsOther |
| Language | Python | F# |
| Last commit | 2 mo ago | 13 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
- 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_servermcp-untappd-server-dotnet · Install
Installation
Prerequisites:
- dotnet 9.0
- Docker Desktop
Configuration:
- 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"
]
}
}
}