Skip to main content
Glama
BilelSelmiAi2026

Open-Meteo MCP Server

get_packing_context

Retrieve weather forecast data for a specified city and time period to guide packing decisions.

Instructions

Return forecast data that can be used for packing advice.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityYes
daysNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only says 'Return forecast data' without explaining aggregation, filtering, side effects, or how this context differs from raw forecast output. The output schema may document return shape, but behavioral traits remain undisclosed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence with no fluff and front-loads the action. However, it is so sparse that it sacrifices useful information; it is concise but under-specified.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

An output schema exists but is not shown, no annotations are provided, parameter descriptions are absent, and sibling differentiation is missing. For a tool with two parameters and a specific packing context, the description leaves too much to inference.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not mention 'city' or 'days' at all. It fails to compensate for the schema's lack of parameter descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Return') and resource ('forecast data') with a clear purpose ('packing advice'). However, it does not distinguish this tool from sibling get_weather_forecast, which likely also returns forecast data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance is given for when to use this tool instead of alternatives like get_weather_forecast, get_weather, or generate_packing_advice. The phrase 'can be used for packing advice' implies a use case but does not state exclusions or alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.