@mcp-monorepo/weather
v1.2.0
Published
Weather MCP tools (geocoding, weather-by-coords) for ModelContextProtocol.
Downloads
70
Readme
@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:
npx @mcp-monorepo/weather@latestTo integrate this server with a compatible AI model (like Claude), provide the following MCP server configuration:
{
"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: MCP server for Confluence API tools
- @mcp-monorepo/file-browser: MCP server for file system browsing and manipulation (search, ls, tree, grep, open, write, move, mkdir)
- @mcp-monorepo/ics: MCP server for calendar tools using ICS/ical feeds
- @mcp-monorepo/jira: MCP server for Jira tools (JQL, issue management, etc.).
- @mcp-monorepo/location: MCP server for location-based tools using IP address lookup
- @mcp-monorepo/mail: MCP server for mail tools (fetch, read, search, mark as seen).
- @mcp-monorepo/notion-query: MCP server for querying Notion data sources.
- @mcp-monorepo/npm: MCP server for npm command tools (run scripts, install packages, list scripts)
- @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 file for details.
