mcp-untappd-server-dotnet
by jtucker·★ 9·Score 29
Untappd MCP Server using Azure Functions in F# for beer data integration.
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:
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
Installation
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"
]
}
}
}Compare mcp-untappd-server-dotnet with
Last updated · Auto-generated from public README + GitHub signals.