About Weather MCP
Weather MCP is an MCP server published by Rohan-Sidd in the Maps category: mCP server: Weather MCP. It has been installed 0 times through Conduid.
The repository has 1 stars and 0 forks, with the last commit 8 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.
Install
npx weather-mcpThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about Weather MCP
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.
README
Hello, this is a simple weather mcp built using typescript sdk offered by anthropic. The idea is simple, we use a free weather api to that use lat long of a place use the free Open-Meteo API to get the realtime weather. Add this weather mcp to your claude_desktop_config file { "weather-tool": { "command": "C:\nvm4w\nodejs\node.exe", "args": [ "C:\Users\\weather-mcp\dist\index.js" //this is the path of index file in the build folder ] } Once you have done this you can ask claude "What's the weather today in London" and it'll call you weather tool to get the info using intent recognition.
To get started initialize a node project (npm init -y) Install dependencies (npm install @modelcontextprotocol/sdk zod zod-to-json-schema) then (npm install --save-dev typescript @types/node) Generate build folder: npx tsc (To convert ts file into js file that node.js can process) Copy paste the complete path of the index.js file in the configuration that we are adding.
Note that we are not running the application on a network port like (3000) instead claude uses StdioServerTransport stdin and stdout to communicate with the tool.
README mirrored from the source repository 3 months ago. The original is authoritative.