Skip to main content
Glama
Yarflam

Weather MCP Server

by Yarflam

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.0

  • Disambiguation5/5

    Each tool has a clearly distinct purpose: get_current_weather for current conditions by city, get_weather_by_coordinates for current conditions by coordinates, get_weather_forecast for multi-day forecasts, and search_cities for city lookup. There is no overlap or ambiguity between these functions.

    Naming Consistency5/5

    All tool names follow a consistent verb_noun pattern using snake_case: get_current_weather, get_weather_by_coordinates, get_weather_forecast, and search_cities. The naming is predictable and readable throughout.

    Tool Count5/5

    With 4 tools, this is well-scoped for a weather server. Each tool serves a distinct and necessary function (current weather by location, current weather by coordinates, forecasts, and city search), making the count appropriate without being too sparse or bloated.

    Completeness4/5

    The tool set covers core weather operations well: retrieving current weather (by city and coordinates), forecasts, and city search for location resolution. A minor gap is the lack of historical weather data or more granular forecast options, but agents can work effectively with the provided tools for most use cases.

  • Average 2.9/5 across 4 of 4 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 0 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • Tools from this server were used 1 time in the last 30 days.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • 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 states the tool retrieves current weather, implying a read-only operation, but doesn't cover important aspects like rate limits, error handling, data freshness, or authentication needs. For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.

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

    Conciseness5/5

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

    The description is a single, efficient sentence in French that conveys the core purpose and default behavior without any wasted words. It's appropriately sized and front-loaded, making it easy for an agent to parse quickly.

    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?

    Given the lack of annotations and output schema, the description is incomplete. It doesn't explain what the return values look like (e.g., temperature, conditions), potential errors, or how it differs from sibling tools. For a tool with no structured output and zero annotation coverage, more contextual information is needed to guide effective use.

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

    Parameters3/5

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

    Schema description coverage is 100%, with clear documentation for both parameters (city and country). The description adds minimal value beyond the schema: it mentions the default city (Sydney) and that the city parameter is optional, but this is already covered in the schema. Since the schema does the heavy lifting, the baseline score of 3 is appropriate.

    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 clearly states the tool's purpose: 'Récupère la météo actuelle pour une ville' (Retrieves current weather for a city). It specifies the verb ('récupère') and resource ('météo actuelle'), and mentions the default city (Sydney). However, it doesn't explicitly differentiate from sibling tools like get_weather_by_coordinates or get_weather_forecast, which prevents a score of 5.

    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?

    The description provides minimal usage guidance: it mentions the default city (Sydney) but offers no explicit advice on when to use this tool versus alternatives like get_weather_by_coordinates or get_weather_forecast. There's no context on prerequisites, limitations, or comparisons to siblings, leaving the agent with little direction.

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

  • 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 states the tool retrieves weather but doesn't disclose any behavioral traits such as rate limits, authentication needs, error handling, or what the output looks like (e.g., current conditions, forecast details). For a tool with no annotations, this is a significant gap in transparency.

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

    Conciseness5/5

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

    The description is a single, efficient sentence in French that directly states the tool's function. It's front-loaded with the core purpose and has no wasted words. This is appropriately concise for a simple retrieval tool.

    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?

    Given the tool's complexity (3 parameters, no annotations, no output schema), the description is incomplete. It lacks details on output format (e.g., what weather data is returned), behavioral aspects like error cases, and differentiation from siblings. Without annotations or output schema, the description should provide more context to be fully helpful.

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

    Parameters3/5

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

    The input schema has 100% description coverage, with clear documentation for 'lat', 'lon', and 'days' including defaults and constraints. The description adds no additional parameter semantics beyond what's in the schema—it doesn't explain coordinate formats, units, or how 'days' affects the output. Given high schema coverage, the baseline score of 3 is appropriate, as the description doesn't compensate but doesn't need to.

    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 clearly states the tool's purpose: 'Récupère la météo selon les coordonnées géographiques' (Retrieves weather based on geographic coordinates). It specifies the verb ('récupère') and resource ('météo'), and while it doesn't explicitly distinguish from siblings like 'get_current_weather' or 'get_weather_forecast', the mention of coordinates provides some differentiation. However, it's not fully specific about scope (e.g., current vs. forecast) compared to siblings.

    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?

    The description provides no guidance on when to use this tool versus alternatives like 'get_current_weather' or 'get_weather_forecast'. It doesn't mention any prerequisites, exclusions, or contextual factors (e.g., use this for coordinates-based queries, use others for city names). The lack of usage context leaves the agent to infer based on tool names alone.

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

  • Behavior2/5

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

    With no annotations provided, the description carries full burden for behavioral disclosure. It states the tool retrieves forecasts but lacks critical details: whether it's a read-only operation, any rate limits, authentication requirements, error handling, or response format. For a tool with no annotation coverage, this leaves significant behavioral gaps unaddressed.

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

    Conciseness5/5

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

    The description is extremely concise—a single sentence in French that efficiently conveys the core functionality. It's front-loaded with the main purpose and includes key details (7-day forecast, Sydney default) without any fluff or redundant information. Every word earns its place.

    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?

    Given the tool's moderate complexity (3 parameters, no annotations, no output schema), the description is incomplete. It doesn't explain what the forecast data includes (e.g., temperature, precipitation), how results are structured, or any limitations beyond the 7-day range. Without annotations or output schema, the description should provide more context about behavior and returns.

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

    Parameters3/5

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

    Schema description coverage is 100%, so the schema fully documents all three parameters (city, country, days) with descriptions, defaults, and constraints. The description adds marginal value by mentioning the 7-day forecast scope and Sydney default, but doesn't provide additional semantic context beyond what's already in the schema. Baseline 3 is appropriate when schema does the heavy lifting.

    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 clearly states the tool's purpose: 'Récupère les prévisions météo sur 7 jours' (Retrieves 7-day weather forecasts). It specifies the verb ('récupère'), resource ('prévisions météo'), and scope ('sur 7 jours'). However, it doesn't explicitly differentiate from sibling tools like 'get_current_weather' or 'get_weather_by_coordinates' beyond implying a forecast vs. current weather distinction.

    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?

    The description provides minimal usage guidance. It mentions 'Sydney par défaut' (Sydney by default), which hints at optional city parameter usage, but offers no explicit when-to-use rules, no comparison to alternatives like 'get_current_weather' for current vs. forecast data, and no prerequisites or exclusions. The agent must infer usage from context alone.

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

  • Behavior2/5

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

    With no annotations provided, the description carries the full burden of behavioral disclosure. While it indicates this is a search operation that returns coordinates, it doesn't describe important behavioral aspects like whether this is a read-only operation, what format the coordinates are returned in, whether there are rate limits, how partial matches are handled, or what happens when no cities are found. The description provides basic functionality but lacks operational context.

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

    Conciseness4/5

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

    The description is a single, efficient sentence in French that clearly states the tool's purpose. It's appropriately concise without being overly brief, though it could potentially be more front-loaded with additional context about when to use the tool. There's no wasted language or redundancy.

    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?

    For a search tool with no annotations and no output schema, the description is insufficiently complete. It doesn't explain what format the coordinates are returned in (latitude/longitude pairs, geojson, etc.), whether results are paginated, how many results are returned, or what happens with ambiguous queries. The description provides basic functionality but leaves too many operational questions unanswered for effective agent use.

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

    Parameters3/5

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

    The description mentions searching by city name, which aligns with the single 'query' parameter in the schema. Since schema description coverage is 100% and the schema already documents the parameter as 'Nom de la ville à rechercher' (Name of the city to search for), the description adds minimal value beyond what's already in the structured data. The baseline score of 3 is appropriate when the schema does the heavy lifting.

    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 clearly states the tool's purpose: searching for cities by name to obtain their coordinates. It specifies both the verb ('search') and resource ('cities'), and indicates the outcome ('obtain coordinates'). However, it doesn't explicitly differentiate from sibling tools like get_current_weather, which are weather-related rather than city search tools.

    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?

    The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like get_current_weather or explain that this tool is for finding city coordinates rather than weather data. There's no information about prerequisites, limitations, or appropriate contexts for use.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

weather-mcp-server MCP server

Copy to your README.md:

Score Badge

weather-mcp-server MCP server

Copy to your README.md:

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Yarflam/weather-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server