- Home
- MCP servers
- Hideya Weather
Hideya Weather
- javascript
0
GitHub Stars
javascript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"mcp-mirror-hideya_weather-mcp-server": {
"command": "node",
"args": [
"/ABSOLUTE/PATH/TO/PARENT/FOLDER/weather/build/index.js"
]
}
}
}You set up a lightweight Weather MCP Server that runs locally with Node and exposes weather-related data to MCP clients. This server is designed to be started as a stdio process, so it runs alongside your tooling and can be wired into your MCP workflow for real-time weather data access.
How to use
You will connect your MCP client to the Weather MCP Server by launching it as a local process and ensuring the client points to the server instance during configuration. The server is started using Node and the built index from the weather package, after you have built the project. Once running, the MCP client can request weather data and actions provided by this server, enabling scenarios like querying current conditions or triggering weather-related workflows in your MCP pipeline.
How to install
Prerequisites you need before starting:
Install Node.js and npm on your system. You can verify installation with node -v and npm -v.
Install dependencies and build the project:
npm install
npm run build
Run the Weather MCP Server
Start the server by running the Node command that points to the built entry file. Use the absolute path to the built index.js file inside the weather package.
node /ABSOLUTE/PATH/TO/PARENT/FOLDER/weather/build/index.js
Configuration example for client integration
Configure your MCP client to connect to this stdio server by using the following example configuration snippet. It shows how to reference the local Weather server as a separate MCP endpoint.
{
"mcpServers": {
"weather": {
"command": "node",
"args": [
"/ABSOLUTE/PATH/TO/PARENT/FOLDER/weather/build/index.js"
]
}
}
}