Skip to main content
Glama

Server Quality Checklist

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

  • Disambiguation5/5

    Each tool serves a distinct purpose: listing available places, fetching detailed data for a single place, and comparing congestion across places. There is no overlap in their primary functions.

    Naming Consistency5/5

    All tool names follow the same verb_noun pattern with lowercase and underscores: list_places, get_citydata, get_congestion_ranking. This is highly predictable and consistent.

    Tool Count5/5

    Three tools is a minimal but well-scoped set for a real-time Seoul city data server. Each tool covers a necessary aspect: enumeration, retrieval, and ranking, with no redundancy.

    Completeness5/5

    The toolset fully covers the domain of accessing real-time city data: listing available places, retrieving detailed data by place with optional category filtering, and obtaining a congestion ranking across all places. There are no obvious gaps for its intended purpose.

  • Average 4.1/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
    • 23 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.

  • 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

  • Behavior4/5

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

    With readOnlyHint=true already declaring the safe read-only nature, the description adds useful context by specifying the exact count (121 places) and that these are places with real-time city data. It also discloses the partial-match filtering behavior, going beyond the annotation and enriching the agent's understanding of the tool's scope.

    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 two sentences long, front-loaded with the primary purpose, and includes the key filter capability. Every word is informative, with no redundancy or filler, making it exceptionally concise and well-structured.

    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?

    For a simple read-only list tool with one optional parameter and no output schema, the description is nearly complete. It covers the core purpose, the dataset scope, and the filtering behavior. A minor gap is that it doesn't explicitly state what the output list contains (e.g., place names and/or IDs), but the title and description strongly imply a list of place identifiers, so it is sufficiently complete.

    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% for the single optional 'query' parameter, which already describes it as a partial match filter and that omitting it returns all. The tool description merely restates this ('query 로 장소명을 부분 일치 필터링할 수 있습니다'), adding no new semantic information. Thus the baseline score of 3 applies.

    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 uses a specific verb '나열합니다' (lists) and specifies the resource as '서울시 실시간 도시데이터가 제공되는 주요 121개 장소' (main 121 places with real-time city data). This clearly defines the tool's function and distinguishes it from siblings like get_citydata and get_congestion_ranking, which focus on data retrieval and rankings rather than listing places.

    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 listing available places where Seoul real-time data exists, but it does not explicitly mention alternatives or when-not-to-use. It states the optional query filter for partial matching, but lacks direct comparison to sibling tools or exclusions, making the usage guidance only implicit.

    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?

    Annotations already declare readOnlyHint: true, so the description need not repeat read-only status. It adds valuable behavioral context by explaining that output size can be reduced with the categories parameter and by listing the 13 data domains. It does not discuss rate limits, caching, or error behavior, but for a read-only data retrieval, the provided context is sufficient.

    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 two well-structured sentences: the first states the core purpose and scope, the second gives a practical usage tip. Every word adds value, with no repetition of schema information or fluff.

    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 tool's complexity (13 data types) and lack of output schema, the description provides a comprehensive list of available data categories and explains the output reduction behavior. It could additionally note the exact return format or behavior for invalid places, but the schema covers place matching details, so overall completeness is strong.

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

    Parameters4/5

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

    The schema already provides 100% coverage with descriptions for both place (including partial matching and examples) and categories (enum values). The description adds semantic meaning by translating the enum names into human-readable Korean categories (e.g., population → 인구 혼잡도), which helps an agent understand what each parameter controls.

    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 action ('retrieves real-time city data for one major place in Seoul') and enumerates the specific data types provided. It distinguishes itself from sibling tools (list_places, get_congestion_ranking) by focusing on detailed data for a single location, not listing or ranking.

    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 querying detailed data of a single place and offers guidance on filtering with categories, but it does not explicitly state when to use this tool over alternatives. It lacks clear exclusions or direct references to sibling tools, such as 'for rankings, use get_congestion_ranking'.

    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?

    The annotation readOnlyHint=true already covers the safety profile, so the bar is lower. The description adds meaningful behavioral context by specifying the sorting order and the filtering option, which goes beyond the annotation. No contradiction with 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 two concise sentences, front-loaded with the core function and immediately providing a usage example. Every word contributes value; no redundancy or filler.

    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?

    For a tool with two optional parameters and no output schema, the description adequately conveys what is returned (a sorted list of 121 places) and how to filter. A minor gap is that it does not describe the exact response fields (e.g., place name, congestion level), but this is not critical for basic usage.

    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 coverage is 100%: both top (default 10, max 121) and category (enum of 5 values) are fully described in the schema. The description only adds that category can narrow the classification, which is marginal beyond what the schema already provides.

    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 returns Seoul's 121 major places sorted by current congestion level, using the specific verb '반환합니다' and naming the exact resource. The congestion-order detail (붐빔 > 약간 붐빔 > 보통 > 여유) and the category filter explicitly distinguish it from sibling tools like list_places and get_citydata.

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

    Usage Guidelines4/5

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

    It provides a concrete use-case example ('지금 가장 붐비는 곳이 어디야?') and explains that category can narrow the result, which is strong usage guidance. However, it does not explicitly mention when not to use this tool or name alternatives, so it falls just short of a 5.

    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

mcp-seoul-rtd MCP server

Copy to your README.md:

Score Badge

mcp-seoul-rtd 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/gong-yeongbin/mcp-seoul-rtd'

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