- Home
- MCP servers
- Weather
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.
This Weather MCP Server provides a single tool that converts Fahrenheit to Celsius and exposes it through an MCP-compatible HTTP interface. It lets you integrate temperature conversion into your applications or workflows using a consistent, protocol-based approach over HTTP or local execution.
How to use
To use the Weather MCP Server, connect your MCP client to the server’s MCP endpoint and call the transformFahrenheitToCelsius tool. You will pass the Fahrenheit value you want to convert, and you will receive the Celsius result in the response. The server is designed to be straightforward to invoke in automated workflows or from your application code.
How to install
Prerequisites you need before installation: Node.js and npm. You should have a working environment for running JavaScript projects.
-
Create a project directory and navigate into it.
-
Install dependencies.
Additional notes
Configuration notes: You can run the server on port 3000 by default. To change the port, set the PORT environment variable before starting the server.
Deployment and run notes: Use npm start to launch the server. For development or testing, you may use npm run dev and npm run build if you are building a distributable version.
Available tools
transformFahrenheitToCelsius
Converts a Fahrenheit value to Celsius and returns the result.