mcpbeat Sign in

Weather Agent Skill

Get weather information for locations using Open-Meteo API. Use when user asks about weather, temperature, or forecasts.

2k tokens
context cost
the whole folder, loaded on every use
2
files
instructions only
0
copies elsewhere
how many repositories repackaged it
107
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/coleam00/custom-agent-with-skills --skill weather

What comes with it

4 462 bytes besides the instruction
references/api_reference.md

The instruction itself

11 sections, as written by the author

Weather Skill

Provides weather information for locations around the world using the free Open-Meteo API.

When to Use

  • User asks about current weather
  • User asks about temperature
  • User asks about weather forecasts
  • User mentions weather-related queries

Available Operations

  • Get Current Weather: Retrieve current conditions for a location
  • Format Weather Data: Present weather in a user-friendly format

Instructions

When a user asks about weather:

  • Identify the location from the user's query
  • Look up the latitude and longitude for that location (common cities below)
  • Use the Open-Meteo API to get weather data
  • Present the weather information in a friendly format

Common City Coordinates

| City | Latitude | Longitude |

|------|----------|-----------|

| New York | 40.71 | -74.01 |

| Los Angeles | 34.05 | -118.24 |

| London | 51.51 | -0.13 |

| Paris | 48.85 | 2.35 |

| Tokyo | 35.69 | 139.69 |

| Sydney | -33.87 | 151.21 |

| Miami | 25.76 | -80.19 |

| Chicago | 41.88 | -87.63 |

| San Francisco | 37.77 | -122.42 |

| Berlin | 52.52 | 13.41 |

Weather Code Meanings

| Code | Description |

|------|-------------|

| 0 | Clear sky |

| 1, 2, 3 | Mainly clear, partly cloudy, overcast |

| 45, 48 | Fog |

| 51, 53, 55 | Drizzle (light, moderate, dense) |

| 61, 63, 65 | Rain (slight, moderate, heavy) |

| 71, 73, 75 | Snow fall (slight, moderate, heavy) |

| 80, 81, 82 | Rain showers (slight, moderate, violent) |

| 95 | Thunderstorm |

| 96, 99 | Thunderstorm with hail |

Resources

ALWAYS read this documentation before making an API request so you have the right parameters:

  • references/api_reference.md - Complete Open-Meteo API documentation

Examples

Example 1: Simple Query

User asks: "What's the weather in New York?"

Response: Use coordinates (40.71, -74.01), call Open-Meteo API, format response with temperature and conditions.

Example 2: Temperature Query

User asks: "How hot is it in Miami?"

Response: Use coordinates (25.76, -80.19), get temperature_2m, convert to Fahrenheit if needed.

Notes

  • Open-Meteo is free and requires NO API key
  • Temperature is in Celsius by default (add temperature_unit=fahrenheit for F)
  • All times are in the specified timezone

Other skills for the same job

different authors, same section of the catalogue
MCP Builder
by anthropics
vendor ×13

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

30k tokens scripts
Changelog Generator
by frostant
×9

Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.

774 tokens
Finishing A Development Branch
by ZhanlinCui
×7

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup

1k tokens
MCP Builder
by JayZeeDesign
×7

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

37k tokens scripts
Vercel React Native Skills
by vercel-labs
vendor ×6

React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.

39k tokens
Vercel React Best Practices
by ratacat
×5

React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.

34k tokens
Next Best Practices
by vercel-labs
vendor ×4

Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling

20k tokens
Using Git Worktrees
by ZhanlinCui
×4

Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification

1k tokens

How to use it

Copy the folder

Take coleam00/weather from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.