Skip to main content
Glama
marcusbai

Caiyun Weather MCP Server

by marcusbai

Server Quality Checklist

50%
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 with no overlap: daily, hourly, and minutely forecasts target different time granularities, realtime weather provides current conditions, weather alerts are separate, and the last two tools differ by input type (address vs. location). An agent can easily tell them apart based on their specific functions.

    Naming Consistency5/5

    All tool names follow a consistent verb_noun pattern using 'get_' as the prefix, followed by descriptive nouns like 'daily_forecast' or 'weather_by_address'. There are no deviations in style or convention, making the naming predictable and easy to understand.

    Tool Count5/5

    With 7 tools, this server is well-scoped for a weather domain, covering key aspects like forecasts, real-time data, alerts, and location-based queries. Each tool earns its place without being excessive or insufficient, aligning perfectly with typical MCP server expectations.

    Completeness4/5

    The tool set is highly complete for weather data retrieval, covering forecasts, real-time info, alerts, and multiple input methods. A minor gap might be the lack of historical weather data or more advanced queries, but core workflows are fully supported, allowing agents to handle most weather-related tasks effectively.

  • Average 2.8/5 across 7 of 7 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
  • Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.

    If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.

    MCP servers without a LICENSE cannot be installed.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • 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 action ('get') but doesn't describe any behavioral traits such as whether this is a read-only operation, potential rate limits, authentication needs, or what the output format might be. For a tool with no annotations, this leaves significant gaps in understanding how it behaves.

    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 ('获取小时级天气预报') that is front-loaded and wastes no words. It directly states the purpose without unnecessary elaboration, making it appropriately sized for its minimal content.

    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 complexity of a weather forecasting tool with 5 parameters and no output schema, the description is incomplete. It lacks details on what the forecast includes (e.g., temperature, precipitation), how results are structured, or any behavioral context, which is insufficient for an agent to fully understand the tool's operation without relying heavily on the schema alone.

    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 all 5 parameters (e.g., 'hourly_steps' as '小时预报数量 (1-360)'). The description adds no additional meaning beyond what the schema provides, so it meets the baseline of 3 where the schema does the heavy lifting without compensating for any gaps.

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

    Purpose3/5

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

    The description '获取小时级天气预报' (Get hourly weather forecast) clearly states the verb ('get') and resource ('hourly weather forecast'), making the basic purpose understandable. However, it doesn't distinguish this tool from its siblings like 'get_daily_forecast' or 'get_minutely_forecast' beyond the temporal granularity implied by 'hourly', which is minimal differentiation.

    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_daily_forecast' for daily forecasts or 'get_realtime_weather' for current conditions, leaving the agent to infer usage based on the name alone without explicit context or exclusions.

    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. The description only states what the tool does ('获取天气预警信息') without revealing any behavioral traits such as data freshness, rate limits, authentication needs, error handling, or what happens if no alerts are found. This is a significant gap for a tool with no annotation coverage.

    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 ('获取天气预警信息') with zero waste. It's front-loaded and appropriately sized for the tool's purpose, though it could benefit from more detail without sacrificing conciseness.

    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 complexity of a weather alert tool with no annotations and no output schema, the description is incomplete. It doesn't explain what the tool returns (e.g., alert types, severity, timestamps) or behavioral aspects like data sources or limitations. This leaves gaps for an AI agent to understand the tool fully.

    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 all parameters well-documented in the schema (e.g., latitude/longitude for location, language and unit with enums). The description adds no additional meaning beyond what the schema provides, such as explaining how parameters affect the alert retrieval. Baseline 3 is appropriate since the schema does the heavy lifting.

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

    Purpose3/5

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

    The description '获取天气预警信息' (Get weather alert information) states a clear verb ('获取') and resource ('天气预警信息'), but it's vague about what constitutes 'weather alert information' and doesn't distinguish this tool from its siblings (e.g., get_daily_forecast, get_realtime_weather). It's functional but lacks specificity about the type of alerts or their scope.

    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 its siblings (e.g., get_weather_by_location, get_daily_forecast). There's no mention of alternatives, prerequisites, or specific contexts for weather alerts, leaving the agent to infer usage based on the tool name 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. '获取天级天气预报' only states what the tool does, not how it behaves - no information about response format, error conditions, rate limits, authentication needs, or whether it's a read-only operation. This is inadequate for a tool with 5 parameters and no output schema.

    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 Chinese phrase that directly states the tool's purpose. There's zero wasted language, and it's front-loaded with the essential information. Every word earns its place in this minimal description.

    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 (5 parameters, no output schema, no annotations), the description is insufficiently complete. It doesn't explain what the forecast contains, how results are structured, error handling, or practical usage context. With multiple similar sibling tools and no output schema, users need more guidance about what to expect from this specific daily forecast tool.

    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 adds no parameter information beyond what's already in the schema (which has 100% coverage). The schema fully documents all 5 parameters with descriptions, defaults, ranges, and enums. The description doesn't provide additional context about parameter relationships or usage patterns, so it meets but doesn't exceed the baseline.

    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 '获取天级天气预报' (Get daily weather forecast) clearly states the verb ('get') and resource ('daily weather forecast'), making the purpose immediately understandable. However, it doesn't explicitly differentiate from sibling tools like get_hourly_forecast or get_minutely_forecast, which would require mentioning the specific time granularity 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 no guidance on when to use this tool versus alternatives. With multiple sibling forecast tools (hourly, minutely, realtime), there's no indication that this tool is specifically for daily forecasts rather than other timeframes, nor any mention of use cases or prerequisites.

    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 only states what the tool does ('get minutely precipitation forecast') without mentioning any behavioral traits such as rate limits, data freshness, error handling, or what the output might contain (e.g., precipitation intensity, duration). This is inadequate for a tool with no annotation coverage.

    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 phrase ('获取分钟级降水预报') that directly states the tool's purpose 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 complexity of a weather forecasting tool with no annotations and no output schema, the description is incomplete. It lacks details on behavioral aspects (e.g., data sources, update frequency) and doesn't hint at the output structure, which is critical for an agent to use the tool effectively in a broader context.

    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 adds no parameter semantics beyond what the input schema provides. Since schema description coverage is 100%, the baseline score is 3. The description doesn't explain why parameters like 'latitude' and 'longitude' are required or how they affect the forecast, so it doesn't compensate for any gaps.

    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 verb ('获取' meaning 'get') and resource ('分钟级降水预报' meaning 'minutely precipitation forecast'), providing a specific purpose. However, it doesn't explicitly distinguish this tool from its siblings like 'get_hourly_forecast' or 'get_daily_forecast' beyond the 'minutely' qualifier, which is why it doesn't reach a 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 no guidance on when to use this tool versus alternatives. With siblings like 'get_hourly_forecast' and 'get_daily_forecast', it's unclear if this tool is for short-term precipitation predictions or specific use cases, leaving the agent to infer usage from the name 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?

    No annotations are provided, so the description carries full burden for behavioral disclosure. '获取实时天气数据' only states what the tool does, not how it behaves - no information about authentication needs, rate limits, error conditions, response format, or whether it's a read-only operation. For a tool with no annotations, this is insufficient behavioral context.

    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 Chinese phrase that directly states the tool's purpose with zero wasted words. It's appropriately sized for a straightforward weather data retrieval tool and front-loads the essential information.

    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 tool with 4 parameters, no annotations, and no output schema, the description is inadequate. It doesn't explain what 'real-time' means (current conditions? recent observations?), doesn't describe the return format, and provides no behavioral context. Given the complexity of weather data and lack of structured metadata, the description should do more to compensate.

    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 already documents all parameters thoroughly. The description adds no additional parameter information beyond what's in the schema - no examples, no explanation of coordinate precision, no context about when to use which language or unit options. 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 purpose as 'get real-time weather data' with a specific verb ('get') and resource ('real-time weather data'). It distinguishes from siblings like forecast tools by specifying 'real-time', but doesn't explicitly contrast with other real-time tools like get_weather_by_address.

    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. With siblings like get_weather_by_address and get_weather_by_location that likely serve similar real-time purposes, there's no indication of when to choose coordinate-based vs address-based approaches or how this differs from other real-time weather tools.

    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 but offers minimal information. It doesn't mention whether this is a read-only operation, what data sources it uses, potential rate limits, authentication requirements, or what format the weather information will be returned in. The description only states what the tool does at a high level without behavioral context.

    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 at just 8 Chinese characters ('根据地址获取天气信息'), which translates to 'get weather information by address.' This is front-loaded with the core purpose and contains no unnecessary words or sentences. For a simple weather lookup tool, this brevity is appropriate.

    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 has 5 parameters, no annotations, no output schema, and multiple sibling tools, the description is insufficiently complete. It doesn't explain what weather information is returned (current conditions, forecasts, alerts), how the address is resolved, error handling for invalid addresses, or differentiation from similar tools. The agent would need to guess about many important usage aspects.

    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 'by address' which aligns with the required 'address' parameter, but adds no additional semantic context beyond what the schema already provides. With 100% schema description coverage and detailed parameter documentation in the schema (including defaults, ranges, and enums), the description doesn't enhance parameter understanding. The baseline score of 3 reflects adequate but minimal value added.

    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 as '根据地址获取天气信息' (get weather information by address), which specifies both the action (get weather information) and the resource (by address). However, it doesn't distinguish this tool from its sibling 'get_weather_by_location' which likely serves a similar purpose with different input parameters.

    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. With six sibling weather tools available (including get_daily_forecast, get_hourly_forecast, get_weather_by_location), the agent receives no indication of when this address-based weather tool is preferable to location-based or specialized forecast tools.

    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. The description only states what the tool does ('获取天气信息' - get weather information) without mentioning any behavioral traits like rate limits, authentication requirements, error conditions, response format, or what specific weather data is returned. For a tool with 6 parameters and no annotations, this is a significant gap in behavioral 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 Chinese sentence that gets straight to the point with zero wasted words. It's appropriately sized for the tool's purpose and front-loaded with the essential information about what the tool does and what inputs it requires.

    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 has 6 parameters, no annotations, and no output schema, the description is incomplete. It doesn't explain what weather information is returned (temperature, precipitation, wind, etc.), the format of the response, any limitations or constraints, or how it differs from the multiple sibling weather tools. For a weather API tool with rich parameters but no structured output documentation, the description should provide more context about what users can expect.

    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 already documents all 6 parameters thoroughly with descriptions, defaults, ranges, and enums. The description adds no additional parameter information beyond what's in the schema. According to the scoring rules, when schema_description_coverage is high (>80%), the baseline is 3 even with no param info in the description.

    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 '根据经纬度获取天气信息' (Get weather information based on latitude and longitude) clearly states the verb ('获取' - get) and resource ('天气信息' - weather information), with the specific input method ('根据经纬度' - based on latitude and longitude). It distinguishes from some siblings like get_weather_by_address that use addresses instead of coordinates, but doesn't fully differentiate from get_realtime_weather which might also use coordinates.

    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 on when to use this tool versus alternatives. The description implies it uses latitude/longitude coordinates, which distinguishes it from get_weather_by_address, but doesn't explain when to choose this over get_realtime_weather, get_daily_forecast, or other weather-related siblings. No context about prerequisites or exclusions is provided.

    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

caiyun-weather-mcp MCP server

Copy to your README.md:

Score Badge

caiyun-weather-mcp 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/marcusbai/caiyun-weather-mcp'

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