Weather
@mcp-monorepo/weather
Weather MCP tools (geocoding, weather-by-coords) for ModelContextProtocol.
0 downloads
v1.2.0
Capabilities
tools
Installation
Quick Install
Install using the MCPSearch CLI (recommended)
mcp install @mcp-monorepo/weatherDon't have the CLI? Install it first
Run with npx
Run directly without installing
npx -y @mcp-monorepo/weatherManual Configuration
Add to your MCP client configuration file
CClaude Code / Claude Desktop
Add to ~/.claude/claude_desktop_config.json
{
"mcpServers": {
"weather": {
"command": "npx",
"args": [
"-y",
"@mcp-monorepo/weather"
]
}
}
}CuCursor
Add to ~/.cursor/mcp.json
{
"mcp": {
"servers": {
"weather": {
"command": "npx",
"args": [
"-y",
"@mcp-monorepo/weather"
]
}
}
}
}VSVS Code / Continue.dev
Add to .vscode/mcp.json or Continue settings
{
"mcpServers": {
"weather": {
"command": "npx",
"args": [
"-y",
"@mcp-monorepo/weather"
]
}
}
}About
<!--
DO NOT EDIT THIS FILE DIRECTLY.
IT IS AUTOMATICALLY GENERATED.
Last generated: 2026-01-02T22:37:20.395Z
-->
# @mcp-monorepo/weather
 
Weather MCP tools (geocoding, weather-by-coords) for ModelContextProtocol.
This package provides a set of tools compliant with the Model Context Protocol for retrieving weather forecasts and geocoding locations. It uses the free, open-source Open-Meteo API and requires no API keys.
## Usage
You can run this MCP server directly using npx for local testing:
```bash
npx @mcp-monorepo/weather@latest
```
To integrate this server with a compatible AI model (like Claude), provide the following MCP server configuration:
```json
{
"mcpServers": {
"weather": {
"command": "npx",
"args": [
"-y",
"@mcp-monorepo/weather"
],
"env": {}
}
}
}
```
## Tools
### `geocoding`
**Get Location Coordinates** - Finds the latitude and longitude for a named place (city, town, or landmark) via Open-Meteo geocoding API. Returns results for ambiguous names.
**Input Schema**
| Property | Type | Description |
| :--- | :--- | :--- |
| `name` | `string` | Name of a city or location |
---
### `weather-by-coords`
**Get Weather by Coordinates** - Fetches multi-day and multi-hour weather forecast for a location (lat/lon) using Open-Meteo.
**Input Schema**
| Property | Type | Description |
| :--- | :--- | :--- |
| `latitude` | `number` | Latitude, -90 to 90 |
| `longitude` | `number` | Longitude, -180 to 180 |
## Other MCP Servers
This monorepo contains several other MCP server packages available on npm. Each provides a distinct set of tools for use with the Model Context Protocol.
- **[@mcp-monorepo/confluence](https://www.npmjs.com/package/@mcp-monorepo/confluence)**: MCP server for Confluence API tools
- **[@mcp-monorepo/file-browser](https://www.npmjs.com/package/@mcp-monorepo/file-browser)**: MCP server for file system browsing and manipulation (search, ls, tree, grep, open, write, move, mkdir)
- **[@mcp-monorepo/ics](https://www.npmjs.com/package/@mcp-monorepo/ics)**: MCP server for calendar tools using ICS/ical feeds
- **[@mcp-monorepo/jira](https://www.npmjs.com/package/@mcp-monorepo/jira)**: MCP server for Jira tools (JQL, issue management, etc.).
- **[@mcp-monorepo/location](https://www.npmjs.com/package/@mcp-monorepo/location)**: MCP server for location-based tools using IP address lookup
- **[@mcp-monorepo/mail](https://www.npmjs.com/package/@mcp-monorepo/mail)**: MCP server for mail tools (fetch, read, search, mark as seen).
- **[@mcp-monorepo/notion-query](https://www.npmjs.com/package/@mcp-monorepo/notion-query)**: MCP server for querying Notion data sources.
- **[@mcp-monorepo/npm](https://www.npmjs.com/package/@mcp-monorepo/npm)**: MCP server for npm command tools (run scripts, install packages, list scripts)
- **[@mcp-monorepo/slack](https://www.npmjs.com/package/@mcp-monorepo/slack)**: Slack MCP to access workspace without bot account or app
## Recent Changes
### Version 1.1.3
- fd22b00: Fixed yarn versioning during publish
### Version 1.1.2
- Updated dependencies [7929a55]
### Version 1.1.1
- 75e8973: migrate monorepo to yarn 4, update CI/husky/scripts and run-on-changed, add yarnrc and packageManager, switch internal deps to workspace:\* and simplify bin fields
---
## Authors
- The MCP Monorepo Team
## License
This project is licensed under the AGPL-3.0-only License. See the [LICENSE](./LICENSE) file for details.
Reviews
No reviews yet. Be the first to review this package!
Quick Install
Install using the MCPSearch CLI (recommended)
mcp install @mcp-monorepo/weatherDon't have the CLI? Install it first
Run with npx
Run directly without installing
npx -y @mcp-monorepo/weatherManual Configuration
Add to your MCP client configuration file
CClaude Code / Claude Desktop
Add to ~/.claude/claude_desktop_config.json
{
"mcpServers": {
"weather": {
"command": "npx",
"args": [
"-y",
"@mcp-monorepo/weather"
]
}
}
}CuCursor
Add to ~/.cursor/mcp.json
{
"mcp": {
"servers": {
"weather": {
"command": "npx",
"args": [
"-y",
"@mcp-monorepo/weather"
]
}
}
}
}VSVS Code / Continue.dev
Add to .vscode/mcp.json or Continue settings
{
"mcpServers": {
"weather": {
"command": "npx",
"args": [
"-y",
"@mcp-monorepo/weather"
]
}
}
}Compatible With
Claude CodeCursorWindsurfContinue.dev
Details
- Version
- 1.2.0
- License
- AGPL-3.0-only
- Category
- memory
- MCP Version
- 1.0
- Published
- 12/14/2025
- Updated
- 1/2/2026