MCP Catalogs
Home

mcp-untappd-server-dotnet

by jtucker·9·Score 29

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

ai-llmother
3
Forks
0
Open issues
13 mo ago
Last commit
2d ago
Indexed

Overview

This is a genuine MCP server implementation that provides access to Untappd beer check-in data through Azure Functions. It uses Server Sent Events (SSE) for communication between the client and server. The implementation requires a middleman component (mcp-remote) since Claude Desktop doesn't directly support SSE configuration. The server provides integration with the Untappd API, allowing users to retrieve beer information and check-in data programmatically.

Try asking AI

After installing, here are 3 things you can ask your AI assistant:

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

When to choose this

Choose this implementation if you're already using Azure Functions and want to integrate Untappd data with AI assistants through an MCP server.

When NOT to choose this

Don't choose this if you're not on Azure or if you prefer a simpler implementation without the complexity of Azure Functions.

Comparable tools

mcp-untappd-servermcp-remoteshell-mcp

Installation

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"
      ]
    }
  }
}

Compare mcp-untappd-server-dotnet with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.