Skip to main content
Glama
ohhan777

korea_weather

by ohhan777

Server Quality Checklist

58%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.2.0

  • Disambiguation5/5

    Each tool targets a distinct temporal scope: current observation, 6-hour nowcast, and 3-5 day forecast. No overlap in purpose.

    Naming Consistency5/5

    All tool names follow the get_ prefix with descriptive qualifiers and nouns, using snake_case consistently. The naming pattern is uniform and predictable.

    Tool Count5/5

    With only 3 tools, the server is tightly scoped to its purpose of providing weather data. Each tool covers a necessary aspect, and the count falls within the ideal 3-15 range.

    Completeness4/5

    The core weather data needs are covered: current conditions, short-term nowcast, and multi-day forecast. Minor gaps like long-range forecasts or alerts exist, but the primary use case is well-served.

  • Average 3.4/5 across 3 of 3 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 for behavioral disclosure. It only states that current observed weather is retrieved, without revealing any details about data source, update timing, units, response format, or potential errors. This lack of transparency is a significant gap for a tool with zero annotations.

    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, concise sentence that immediately states the action and object. It is front-loaded and contains no redundant or filler language, making it highly efficient.

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

    Completeness3/5

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

    For a simple tool with two parameters and an output schema, the core purpose is adequately stated. However, the description lacks usage guidelines and parameter semantics, which would make it more complete. The presence of sibling tools makes the missing usage guidance more notable, but the description is not wholly incomplete.

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

    Parameters2/5

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

    The schema describes 'lon' and 'lat' as numbers with 0% description coverage. The description says '특정 좌표' (specific coordinates), which implies the two parameters are latitude and longitude, but does not add units, format, or range constraints. This minimal addition only partially compensates for the lack of schema-level descriptions.

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

    Purpose5/5

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

    The description clearly identifies the action ('조회합니다' / retrieves) and the resource ('현재 관측 날씨' / current observed weather) at specific coordinates. It distinguishes itself from sibling forecast tools by explicitly stating '관측' (observation).

    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 guidance is provided on when to use this tool versus alternatives. The description does not mention the sibling tools or explain that this is for observational data rather than forecasts. The only inference comes from the tool name, which is not explicit within the description.

    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. It only indicates a read-only 'retrieval' action, but does not disclose any behavioral traits such as data update frequency, geographic coverage, units, or any limitations. For a simple read operation, this is minimal and lacks useful 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, front-loaded sentence that directly states the action, resource, and scope with no filler or redundancy. It is efficiently concise and well-structured.

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

    Completeness3/5

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

    For a low-complexity tool with an output schema, the description covers the essential purpose and time range. However, it lacks any mention of forecast intervals, units, or data source, and the absence of annotations leaves some behavioral gaps. It is adequate but not comprehensive.

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

    Parameters2/5

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

    Schema description coverage is 0%, so the description must compensate. It mentions 'specific coordinates' which generically relates to both lon and lat, but does not clarify coordinate format, order, allowable ranges, or other constraints. The parameter names themselves are self-explanatory, but the description adds little beyond that.

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

    Purpose5/5

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

    The description clearly states a specific action ('조회합니다' - retrieves) on a specific resource ('단기(3~5일) 예보' - short-term 3-5 day forecast) with a clear scope ('특정 좌표' - specific coordinates). The time range '3~5일' distinguishes it from nowcast siblings, making the purpose unambiguous.

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

    Usage Guidelines3/5

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

    The description implies usage for short-term (3-5 day) forecasts at given coordinates, but does not explicitly state when to use this tool instead of the nowcast siblings or provide exclusions. The context is clear but guidance is only implicit, not direct.

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

  • Behavior3/5

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

    No annotations are provided, so the description carries the burden of behavioral disclosure. It mentions 'queries' which indicates a read operation, and specifies the 6-hour forecast horizon, providing some context. However, it does not mention any potential side effects, authentication requirements, or coordinate system details, which leaves gaps 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 clear sentence that is front-loaded with the key action and resource. It contains no unnecessary information.

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

    Completeness4/5

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

    Given the low complexity of the tool (two number parameters, output schema present), the description covers the essential purpose and context (6-hour forecast at a coordinate). It could be more complete by noting the coordinate format or that it is read-only, but these are partially implied by 'queries' and the output schema.

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

    Parameters2/5

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

    The input schema has two parameters (lat, lon) with no descriptions, and the description adds only that it targets a 'specific coordinate' without explaining the format, units, or ranges. This minimal addition fails to compensate for the 0% schema description coverage.

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

    Purpose5/5

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

    The description clearly states the tool 'queries' the 'very short-term (6-hour) forecast' for 'a specific coordinate', using a specific verb and resource. It distinguishes from siblings by specifying the 6-hour horizon, which sets it apart from observations or longer-term forecasts.

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

    Usage Guidelines3/5

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

    The description implies use for very short-term forecasts but does not explicitly mention when to use it over the sibling tools like get_nowcast_observation or get_short_term_forecast. There are no exclusion criteria or alternative recommendations, so usage guidance is only implicit.

    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

korea_weather MCP server

Copy to your README.md:

Score Badge

korea_weather 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/ohhan777/korea_weather'

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