drio
Open app

Caiyun Weather MCP Server

Source

Catalog onlyCatalog onlySTDIO

Overview

Caiyun Weather MCP Server is a server that provides seamless access to the Caiyun Weather API, allowing users to query weather information easily.

To use the server, register on the Caiyun Platform to obtain an API key, clone the repository, set up a Python virtual environment, configure environment variables, and set up an MCP-compatible client.

  • Easy integration with the Caiyun Weather API - Supports multiple MCP-compatible clients - Simple setup and configuration process
  1. Accessing real-time weather data for specific locations.
  2. Integrating weather information into applications or services.
  3. Developing weather-related features in software projects.

Add to your AI client

Use these steps to connect Caiyun Weather MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "caiyun-weather-mcp-server-mrchi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-caiyun-weather-mcp-server-mrchi"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "caiyun-weather-mcp-server-mrchi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-caiyun-weather-mcp-server-mrchi"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "caiyun-weather-mcp-server-mrchi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-caiyun-weather-mcp-server-mrchi"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "caiyun-weather-mcp-server-mrchi": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-caiyun-weather-mcp-server-mrchi"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "caiyun-weather-mcp-server-mrchi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-caiyun-weather-mcp-server-mrchi"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "caiyun-weather-mcp-server-mrchi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-caiyun-weather-mcp-server-mrchi"
      ]
    }
  }
}

FAQ

How do I obtain an API key?

You can register on the [Caiyun Platform](https://platform.caiyunapp.com/login) to generate your API key.

What programming language is used?

The server is developed in Python.

Is there any cost associated with using the Caiyun Weather API?

Please check the Caiyun Platform for details on pricing and usage limits.