npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@iflow-mcp/weatherxm-pro-mcp-server

v0.5.0

Published

MCP server exposing WeatherXM PRO APIs

Readme

WeatherXM PRO MCP Server

An MCP server implementation exposing the WeatherXM PRO APIs as MCP tools, allowing clients to access weather station data, observations, and forecasts through the MCP protocol.

Features

  • Get stations near a location (latitude, longitude, radius)
  • Get stations within a bounding box (min/max latitude and longitude)
  • Get all available stations
  • Get the latest observation for a specific station
  • Get historical observations for a station on a specific date
  • Search for H3 cells by region name
  • Get stations in a specific H3 cell
  • Get weather forecast (daily or hourly) for a specific H3 cell
  • Get hyperlocal forecast for a station and variable
  • Get forecast performance (FACT) for a station and variable
  • Get forecast ranking (FACT) for a station

Prerequisites

  • Node.js and npm installed
  • A valid WeatherXM PRO API key

Configuration

Clone the repository to your local machine.

git clone https://github.com/WeatherXM/weatherxm-pro-mcp.git

Installation

After cloning the repository, you need to install the dependencies and build the project before running the MCP server.

npm install
npm run build

Server Configuration for MCP Clients

This is the common configuration for MCP clients such as Claude Desktop, Cursor, Windsurf Editor, VSCode and plugins such as RooCode and Cline.

{
  "mcpServers": {
    "weatherxm-pro": {
      "command": "npx",
      "args": [
        "-y",
        "path to mcp"
      ],
      "env": {
        "WEATHERXMPRO_API_KEY": "your-api-key"
      }
    }
  }
}

Replace "path to mcp" with the actual path to the MCP server or package name, and "your-api-key" with your WeatherXM PRO API key.

Note: If you have other MCP servers in use in the client, you can add it to the existing mcpServers object.

Claude Desktop

Follow the steps below to use the WeatherXM PRO MCP server with Claude Desktop MCP client:

  1. Edit the MCP settings file located at:

    ~/Library/Application Support/Claude/claude_desktop_config.json
  2. Add the WeatherXM PRO MCP server configuration under the mcpServers object.

  3. Restart Claude Desktop to apply the changes.

  4. You can now use the server in Claude Desktop to run queries on the WeatherXM PRO MCP server.

Cursor

Follow the steps below to use the WeatherXM PRO MCP server with Cursor:

  1. Install Cursor on your machine.
  2. In Cursor, go to Cursor > Cursor Settings > MCP > Add a new global MCP server.
  3. Specify the same configuration as in the Server Configuration for MCP Clients section.
  4. Save the configuration.
  5. You will see weatherxm-pro as an added server in MCP servers list.
  6. You can now use the WeatherXM PRO MCP server in Cursor to run queries.

Windsurf Editor

Follow the steps below to use the WeatherXM PRO MCP server with Windsurf Editor:

  1. Install Windsurf Editor on your machine.
  2. Navigate to Command Palette > Windsurf MCP Configuration Panel or Windsurf - Settings > Advanced > Cascade > Model Context Protocol (MCP) Servers.
  3. Click on Add Server and then Add custom server.
  4. Add the WeatherXM PRO MCP Server configuration from the Server Configuration for MCP Clients section.
  5. Save the configuration.
  6. You will see weatherxm-pro as an added server in MCP Servers list.
  7. You can now use the WeatherXM PRO MCP server in Windsurf Editor to run queries.

Docker Image

The MCP server can be built and run as a Docker container.

Build

docker build -t weatherxm-pro-mcp .

Run

docker run -d -p 3000:3000 -e WEATHERXMPRO_API_KEY="your-api-key" -e PORT=3000 weatherxm-pro-mcp

Replace "your-api-key" with your actual WeatherXM PRO API key.

Troubleshooting Tips

  • Ensure the path to your MCP server repository is correct in the configuration.
  • Verify that your WeatherXM PRO API key is set correctly.
  • Check that the MCP client configuration matches the server settings.
  • Check the logs for any errors or warnings that may indicate issues with the MCP server.

License

MIT License