Back to MCP directory
publicPublicdnsLocal runtime

mcp-untappd-server-dotnet

基于Azure Functions和SSE技术实现的Untappd MCP服务端

article

README

🚀 使用 Azure Functions 构建 Untappd MCP 服务器

本项目是一个借助 Azure Functions 和 Server 发送事件 实现的 Untappd MCP 服务器版本,能有效解决特定场景下的服务器需求,为相关业务提供有力支持。

🚀 快速开始

配置 Claude 桌面

由于 Claude 桌面当前不支持 SSE 配置,因此需要添加一个中间组件来实现对 SSE 服务器的调用。

编辑 claude_desktop_config.json 文件,示例如下:

{
  "mcpServers": {
    "untappddotnet": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "http://localhost:7071/runtime/webhooks/mcp/sse"
      ]
    }
  }
}

📦 安装指南

先决条件

  • dotnet 9.0
  • Docker 桌面

local.settings.json 设置

{
    "IsEncrypted": false,
    "Values": {
        "AzureWebJobsStorage": "<CONNECTION_STRING>",
        "FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated",
        "Untappd:ClientId": "",
        "Untappd:ClientSecret": ""
    }
}
help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client