WeatherXM Pro
STDIOMCP server exposing WeatherXM PRO APIs for accessing weather station data and forecasts.
MCP server exposing WeatherXM PRO APIs for accessing weather station data and forecasts.
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.
Clone the repository to your local machine.
git clone https://github.com/WeatherXM/weatherxm-pro-mcp.git
After cloning the repository, you need to install the dependencies and build the project before running the MCP server.
npm install npm run build
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.
Follow the steps below to use the WeatherXM PRO MCP server with Claude Desktop MCP client:
Edit the MCP settings file located at:
~/Library/Application Support/Claude/claude_desktop_config.json
Add the WeatherXM PRO MCP server configuration under the mcpServers
object.
Restart Claude Desktop to apply the changes.
You can now use the server in Claude Desktop to run queries on the WeatherXM PRO MCP server.
Follow the steps below to use the WeatherXM PRO MCP server with Cursor:
Follow the steps below to use the WeatherXM PRO MCP server with Windsurf Editor:
The MCP server can be built and run as a Docker container.
docker build -t weatherxm-pro-mcp .
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.
MIT License