npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@lgrammel/open-meteo-tool

v0.4.0

Published

AI SDK 7 tools for Open-Meteo location lookup, weather reports, and forecasts.

Readme

@lgrammel/open-meteo-tool

AI SDK 7 tool for resolving place names and fetching current weather reports and forecasts through Open-Meteo. The package calls Open-Meteo with fetch directly and does not require an API key.

Install

bun add @lgrammel/open-meteo-tool ai

Usage

import { openai } from "@ai-sdk/openai";
import { weather } from "@lgrammel/open-meteo-tool";
import { ToolLoopAgent } from "ai";

const agent = new ToolLoopAgent({
  model: openai("gpt-5.5"),
  instructions:
    "Use the weather tool for current conditions and forecasts. Mention the resolved location and units in the answer.",
  tools: {
    weather,
  },
});

const result = await agent.generate({
  prompt: "Will I need an umbrella in Berlin tomorrow?",
});

console.log(result.text);

Tools

  • weather: resolves a place name through Open-Meteo geocoding, then fetches current weather, daily forecasts, and near-term hourly forecasts for the best matching location. Input is { query }. Output includes the resolved location and forecast.

Optional configuration lives in toolsContext and is validated by the tool's contextSchema, so the model cannot choose forecast horizon, unit preferences, timezone, API hosts, or returned hourly output size.

Context

  • baseUrl: Open-Meteo Forecast API base URL. Defaults to https://api.open-meteo.com.
  • geocodingBaseUrl: Open-Meteo Geocoding API base URL. Defaults to https://geocoding-api.open-meteo.com.
  • userAgent: optional User-Agent header for Open-Meteo requests.
  • language: geocoding result language. Defaults to en.
  • forecastDays: number of forecast days to request. Defaults to 7 and is capped at 16.
  • hourlyForecastHours: number of hourly forecast entries returned from the start of the forecast. Defaults to 24 and is capped at 384. Use 0 to omit hourly output.
  • timezone: timezone used by Open-Meteo for forecast timestamps. Defaults to auto.
  • temperatureUnit: temperature unit used by Open-Meteo. Defaults to celsius. Supported values are celsius and fahrenheit.
  • windSpeedUnit: wind speed unit used by Open-Meteo. Defaults to kmh. Supported values are kmh, ms, mph, and kn.
  • precipitationUnit: precipitation unit used by Open-Meteo. Defaults to mm. Supported values are mm and inch.