MCP-Server
Description
# MCP-Server This is an MCP-Server that uses the Meteostat API to get meteorological data worldwide. ## Description This server fetches data from the Meteostat API to provide information on weather conditions globally. ## Prerequisites - Node.js - npm ## Installation Install the…
About
# MCP-Server This is an MCP-Server that uses the Meteostat API to get meteorological data worldwide. ## Description This server fetches data from the Meteostat API to provide information on weather conditions globally. ## Prerequisites - Node.js - npm ## Installation Install the dependencies: ```bash npm install ```…
Details
- Author
- fmpoliveira
- Downloads
- 293
- Categories
- Other
Jump to
- Fetches meteorological data from the Meteostat API globally.
- Includes an Express.js server for HTTP endpoints.
- Provides an endpoint to retrieve nearby weather stations.
- Simple installation via npm.
- Built with Node.js.
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
MCP-ServerCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install dependencies with npm install, then start the server with npm run start or build the project and run node build/server.js. Send POST requests to endpoints such as /get_nearby_stations with latitude and longitude in the request body.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"mcp-server": {
"mcp-meteostat-server": {
"command": "node",
"args": [
"build/server.js"
]
}
}
}
}
McpServers
{
"mcp-meteostat-server": {
"command": "node",
"args": [
"build/server.js"
]
}
}
MCP-Server
This is an MCP-Server that uses the Meteostat API to get meteorological data worldwide.
Description
This server fetches data from the Meteostat API to provide information on weather conditions globally.
Prerequisites
- Node.js
- npm
Installation
Install the dependencies:
npm install
Usage
To start the server, run:
npm run start
Express.js Server
This project includes an Express.js server. To run the server, follow these steps:
1. Build the project:
npm run build
2. Start the server:
node build/server.js
Making POST Requests
You can make POST requests to the server using Postman or any other HTTP client.
Example request:
- URL: http://localhost:4000/get_nearby_stations
- Body:
{
"lat": 39.7492,
"lon": -8.8103
}
This request will retrieve the meteorological data for the specified location and date.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



