Back to MCP directory
publicPublicdnsLocal runtime

untapped-mcp

一个用于Claude的Untappd MCP服务器项目

article

README

🚀 未使用的MCP服务器

本项目提供一个未使用的MCP服务器,可用于与Claude协同工作,为你在相关场景下提供便利的服务。

📦 安装指南

获取API密钥

你需要获取相应的API密钥,以便后续配置使用。

在Claude Desktop上使用

在你的claude_desktop_config.json文件中添加以下内容:

{
  "mcpServers": {
    "Untappd": {
      "command": "node",
      "args": ["/Users/adamlusted/projects/untapped-mcp/build/index.js"],
      "env": {
        "UNTAPPED_API_CLIENT_ID": "<YOUR_CLIENT_ID>",
        "UNTAPPED_API_CLIENT_SECRET": "<YOUR_CLIENT_SECRET>"
      }
    }
  }
}

⚠️ 重要提示

请将<YOUR_CLIENT_ID><YOUR_CLIENT_SECRET>替换为你的实际API客户端ID和密钥。

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