oc-korea-weather-time-mcp
Server Quality Checklist
Latest release: v0.1.0
- Disambiguation5/5
Each tool targets a distinct operation: time lookup, time conversion, timezone search, current weather, hourly forecast, and daily forecast. The two 'get_current_*' tools are clearly separated by domain (time vs weather) and description.
Naming Consistency5/5All tool names follow a verb_noun pattern (get_*, convert_*, find_*). The verbs are semantically appropriate and the pattern is consistent across both domains.
Tool Count5/56 tools is well-scoped for a combined time and weather server. Each tool covers a necessary function without unnecessary bloat.
Completeness4/5The time domain covers current time, conversion, and timezone search. The weather domain covers current observations, hourly forecast, and daily forecast. Minor gaps like weather alerts or location search exist but core workflows are covered.
Average 4.1/5 across 6 of 6 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 11 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI is passing
This repository is licensed under MIT License.
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.jsonto 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?
With no annotations, the description carries the full burden of behavioral disclosure. It only gives a minimal function statement and argument formats, without mentioning edge cases, error handling, side effects, or the nature of the conversion (e.g., DST handling). It adds no behavioral insight beyond the obvious pure conversion.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise—a single sentence plus a compact Args list. Every element is necessary and informative, with no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple and has an output schema, so return details are not needed. The description adequately covers the core purpose and all parameters. However, it lacks any usage context or notes on potential pitfalls (e.g., invalid timezone, DST edge cases), which would make it more complete for robust agent use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description explicitly explains each parameter: time with accepted formats (`YYYY-MM-DD HH:MM` or ISO 8601), and from_timezone/to_timezone as IANA timezones. This adds significant meaning over the bare schema titles (Time, To Timezone, From Timezone) and fully compensates 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/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Converts a time in one timezone to another timezone', specifying the verb (convert), resource (time), and the from/to timezone context. It unambiguously distinguishes from siblings like get_current_time, find_timezone, and weather 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/5Does 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. It simply states what it does without mentioning scenarios, exclusions, or references to sibling tools like get_current_time or find_timezone.
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 full burden. It discloses the partial-substring search behavior, but does not mention case sensitivity, whether multiple matches are returned, or what happens with no matches. For a simple search tool, this is adequate but could be more informative.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: a single sentence plus a parameter explanation. Every word adds value, with no redundancy. It is well-structured and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with one parameter, and the description covers its core purpose and behavior. An output schema exists, so return values are not described in the text, which is acceptable. However, the description does not mention any filters or limitations (e.g., whether the search is case-insensitive), leaving minor gaps for a complete understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides only the parameter name and type ('query', string) with no description. The description adds meaning by defining it as a search term and giving concrete examples (Seoul, New_York, Europe), which compensates for the 0% schema coverage and helps the agent understand expected input.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it searches IANA timezone names by partial substring, using the specific verb '검색한다' (searches). This distinguishes it from sibling tools like convert_time and get_current_time, which perform different operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied by the description: it is for finding IANA timezone names using partial substrings. However, no explicit guidance is given on when to prefer this over alternatives or when not to use it. Given the context of sibling tools, it is reasonable but not explicit.
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 indicates a read operation ('조회한다'), which implies safety, but does not add extra context such as error behavior, system-clock dependence, or rate limits. For a simple read tool this is acceptable but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise, consisting of one clear purpose sentence and a brief parameter explanation. It is front-loaded with the action and resource, and every word earns its place. No redundant or filler content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With only one optional parameter and an output schema present, the description covers the essential context. It clearly explains the main function and the only argument. It could improve by mentioning what happens if timezone is omitted, but the schema's default already covers that. Overall, it's complete for a tool of this simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does 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 does so by defining the 'timezone' parameter as an IANA timezone name with a default of Asia/Seoul, which adds meaningful semantic detail beyond the schema's generic 'string' type. This is sufficient for the single parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: to retrieve the current time in a specified timezone. It uses a specific verb, '조회한다' (retrieves), and a specific resource, '현재 시각' (current time). This distinguishes it from sibling tools like convert_time (which converts times) and find_timezone (which finds timezones).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for getting the current time in a timezone, but does not explicitly contrast it with alternatives. No 'use this when' or 'instead of' guidance is provided, unlike the high-caliber example that names an alternative tool. The context is clear but lacks explicit exclusions.
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 does add context about the data source and time range, and it explains parameter defaults and limits, but it does not disclose potential errors, rate limits, or the nature of output beyond what the output schema would show. The description is informative but not exhaustive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise, with the primary purpose front-loaded in a single clause followed by a compact Args list. Every sentence adds information, with no repetition or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity and the presence of an output schema, the description adequately covers the essential context: source, time range, parameters, and defaults. It could be more complete by mentioning potential error conditions or format specifics, but for a straightforward forecast lookup, it is sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, but the description compensates by providing an 'Args' section that explains 'location' as region name with default behavior and 'hours' as the number of time slots (default 6, max 100). This adds meaningful semantic value beyond the bare schema properties and defaults.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '앞으로 6시간까지의 시간별 예보를 조회한다' (retrieves hourly forecast up to 6 hours ahead), with a specific resource (hourly forecast) and source (기상청 초단기예보). It distinguishes itself from siblings like get_daily_forecast and get_current_weather by specifying hourly granularity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage by defining the forecast scope (hourly, up to 6 hours) and parameter meaning, but it does not explicitly state when to choose this tool over siblings or include any exclusions. Context is present, but no direct guidance on alternatives is given.
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?
With no annotations, the description must carry the burden. It discloses the forecast range, data exclusivity, and default/slot behavior. However, it does not mention return format, error handling, or update times; the output schema covers structure but the description provides limited behavioral nuance beyond parameters.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences plus an Args list, each line containing unique and necessary information. It is front-loaded with the main purpose and immediately provides key differentiators, with no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with an output schema and two optional parameters, the description covers purpose, differentiators, and parameter semantics. It doesn't address error scenarios or response format, but given the low complexity and presence of an output schema, it is sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 0% description coverage, so the Args block fully compensates. It explains 'location' as region name with default region behavior, and 'slots' as number of forecast times with default 24 and max 100. This adds essential meaning beyond the bare schema properties.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool does '앞으로 3일까지의 예보를 조회한다' (retrieves forecast up to 3 days) from the KMA, with a specific resource and action. It also distinguishes itself by noting that precipitation probability and daily min/max are only available here, which differentiates it from sibling tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly states that precipitation probability and daily min/max temperatures are only found here, guiding the user to use this tool when those fields are needed. It implies which alternatives exist but does not name them directly, so it's clear but not fully exhaustive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses the return fields (temperature, humidity, precipitation type, wind, precipitation amount), the input format (region name or latitude/longitude), and default behavior when location is omitted. While it doesn't mention units or error behavior, the explicit output list and input flexibility provide solid transparency for a read-only weather tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is succinct and well-structured: a first sentence stating the purpose, a second listing outputs, and a compact Args section. Every sentence adds value, and the format is easy to scan.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple (one parameter) and has an output schema, so the description need not elaborate return values. It provides enough information about inputs, outputs, and current-weather specificity. The only minor gap is the unspecified default region, but this does not undermine overall completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema only provides a bare 'location' string with a default. The description adds rich semantics: it explains the parameter accepts a place name (with examples), defaults to a specified region when omitted, and also supports 'latitude,longitude' format. This fully compensates for the schema's lack of parameter description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '지금 관측된 날씨를 조회한다' (queries currently observed weather) and lists the specific data returned. This unambiguously distinguishes it from sibling tools like hourly/daily forecasts, which cover different time contexts.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage context is implied rather than explicit. The description clarifies it provides current observations as opposed to forecasts, but it does not explicitly say 'use this for current weather, use get_daily_forecast for daily predictions.' No alternatives or exclusions are mentioned.
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
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/jshsakura/oc-korea-weather-time-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server