Back to MCP directory
publicPublicdnsLocal runtime

buienradar-mcp-server

一个通过Buienradar获取指定经纬度降水数据的MCP服务器

article

README

🚀 Buienradar MCP服务器

这是一个MCP服务器,通过Buienradar获取指定纬度和经度的降水数据。它提供了单一的MCP工具get_precipitation_for,可提供未来两小时内的降水预报。

🚀 快速开始

📦 安装指南

要通过Smithery自动为Claude Desktop安装Buienradar MCP Server,可使用以下命令:

npx -y @smithery/cli install @wpnbos/buienradar-mcp-server --client claude

⚙️ 配置

首先,确保你已经安装了uv(和Python)。 要将此服务器与Claude for Desktop集成,需更新配置文件:

  • MacOS/Linux
~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows
code $env:AppData\Claude\claude_desktop_config.json

示例配置如下:

{
    "mcpServers": {
        "precipitation": {
            "command": "uv",
            "args": [
                "--directory",
                "/ABSOLUTE/PATH/TO/PARENT/FOLDER/buienradar-mcp-server",
                "run",
                "server.py"
            ]
        }
    }
}

请将/ABSOLUTE/PATH/TO/PARENT/FOLDER/buienradar-mcp-server替换为实际服务器所在位置的实际路径。 重新启动Claude for Desktop以使工具可用。 你可能需要提供uv的完整路径而不是仅uv。要查找uv可执行文件的完整路径,在MacOS/Linux上执行which uv

💻 使用示例

基础用法

如果一切顺利,你应该能够询问Claude有关任何即将来临的降水情况。

> 将来 Amsterdam 会下雨吗?

> 预测未来2小时内 Amsterdma 没有降雨。
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