Skip to main content
Glama

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: location-based search, name-based search, detail lookup, database stats, and classification listing. There is no overlap or ambiguity between them.

    Naming Consistency5/5

    All tool names follow a consistent verb_noun pattern using snake_case (find_nearby_hills, search_hills, get_hill_details, get_hill_stats, get_list). While the verbs vary (find, search, get), the pattern is uniform and predictable.

    Tool Count5/5

    With 5 tools, the server is tightly scoped to its purpose of querying a hills database. Each tool covers a distinct aspect of discovery and retrieval without superfluous additions.

    Completeness5/5

    The tool set covers the full lifecycle for a read-only reference database: discovery (find, search, list), detail viewing, and statistical overview. No obvious gaps exist for typical usage scenarios.

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

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

    • No community issues in the last 6 months
    • 8 commits in the last 12 weeks
    • Last stable release on
    • 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.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?

    With no annotations, the description must carry the full behavioral burden, but it fails to disclose the default/max limit of 25/100 from the schema. Saying 'List all hills' is misleading when the limit parameter caps results, and no pagination or output format is described. The description does mention sorting and height-range filtering, but the limit omission is a significant gap.

    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 sentence with no filler, front-loaded with the action verb 'List'. It efficiently conveys the resource, examples, sorting, and filtering in one line, earning every word.

    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 read-only list tool with no output schema and no annotations, the description covers the core purpose, sorting, and filtering. However, it does not mention the limit parameter, which means a caller could mistakenly expect all hills rather than a capped result set. This is a notable completeness gap given the schema's limit behavior.

    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 schema already covers all four parameters with descriptions, giving a baseline of 3. The description adds some context by grouping min_metres and max_metres as an 'optional height range filter' and providing classification examples, but it does not add syntax-level detail or mention the limit parameter.

    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 'List' and identifies the resource as 'hills in a classification' with concrete examples (Munros, Wainwrights, Corbetts). It also distinguishes itself from siblings by noting sorting by height and optional height-range filtering, making it clearly different from search, nearby, details, or stats tools.

    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 implied usage is clear: use this when you need a list of hills in a given classification. However, there is no explicit guidance about when to choose this over sibling tools like search_hills or find_nearby_hills, and 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.

  • 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. The description lists return fields and indicates a read operation, but it does not disclose potential 'best match' behavior (which appears in the schema) or behavior on not-found. It provides basic transparency but lacks edge-case behavior.

    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 sentence that front-loads the purpose ('Get full details for one hill') and lists the details. It is efficient and clear, though the list of fields adds length; it still avoids wasted words.

    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?

    With no output schema, the description explains the return values by listing the fields returned. For a simple get-details tool with one parameter, this is sufficient context. It could mention what happens if no hill is found, but that is not critical given the simple nature.

    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 schema already covers the single parameter 'hill' with a description including example and best-match behavior. The description repeats 'by name or DoBIH number' but adds no additional semantics beyond the schema, so the baseline for high coverage 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 clearly states the tool gets full details for a single hill, listing specific attributes (height, drop, grid reference, coordinates, county, classifications, links). This is a specific verb+resource and distinguishes it from siblings like search_hills and find_nearby_hills.

    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 explicitly says the tool is for one hill and how to specify it (by name or DoBIH number), which gives clear context. It does not explicitly name alternatives, but the singular focus implies this is not for searching or listing, making usage fairly clear.

    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 exist, so the description carries the burden. It explains what data is returned but does not disclose any edge cases (e.g., empty database, performance characteristics) or response format. For a read-only stats tool, this is adequate but not exceptional.

    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 efficiently conveys the purpose and contents. No wasted words.

    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?

    With no output schema, the description adequately explains the return content (total hills, per-classification and per-country counts). It lacks a bit of structural detail but is complete for a simple aggregation tool.

    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 input schema has zero parameters, so the baseline is 4. The description adds no parameter-specific semantics, but none are needed.

    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 provides an overview of the hills database with specific aggregate metrics (total hills, per-classification counts, per-country counts). This distinguishes it from siblings like get_hill_details (individual hill) and search_hills (query). The verb 'get' is implied by the name and 'Overview' indicates retrieval.

    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 database-wide statistics but does not explicitly mention when to use it over sibling tools. No exclusions are stated, but the context is clear enough for a no-parameter tool.

    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 provided, the description carries the full burden of behavioral disclosure. It states that results are sorted by distance and optionally filtered by classification, which are key behaviors. It does not explicitly declare read-only status, but the nature of 'find' implies non-destructive behavior. It omits details like pagination or result formatting, but the schema covers limits and radius, so the description adds adequate transparency for a search 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/5

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

    The description is two sentences long, front-loaded with the purpose, and every clause adds value. It efficiently covers what the tool does, the required input, and optional behavior without any redundant 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 geospatial search tool with five parameters and no output schema, the description is fairly complete: it explains the core output (hills sorted by distance) and the optional classification filter. It does not describe edge cases like no results or the exact return structure, but the schema covers parameter constraints, and the sibling tools provide enough context for an agent to infer typical list behavior. Some gaps remain, but overall it is solidly 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%, so all parameters are already documented. The description adds a bit of context by highlighting latitude/longitude as the required inputs and mentioning the classification filter, but it does not add syntax or format details beyond the schema. This meets the baseline of 3 without significant extra semantic value.

    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 finds British and Irish hills near a given location, which is a specific verb+resource. It differentiates from sibling tools like search_hills by emphasizing geospatial proximity (latitude/longitude) and distance sorting, making its niche obvious.

    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?

    The description specifies that latitude/longitude are required and that classification filtering is optional, giving clear context on how to invoke the tool. However, it does not explicitly mention when to prefer this over search_hills (e.g., when you have coordinates instead of a name), and no exclusions or alternatives are named. This is clear context without explicit when-not guidance.

    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?

    No annotations are provided, so the description carries the full burden. It discloses that results are 'ranked matches' and specifies return fields (height, county, DoBIH number). While it doesn't mention auth or rate limits, 'search' inherently implies a read-only operation, and the output behavior is sufficiently described.

    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?

    Two concise sentences: the first states purpose and scope, the second summarizes output. No wasted words, no redundancy, and critical information is front-loaded.

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

    Completeness5/5

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

    For a simple search tool with two well-documented parameters and no output schema, the description adequately covers what it does, result ranking, and the key fields returned. It is complete enough for an agent to select and invoke correctly.

    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%: both 'limit' and 'query' have descriptions with constraints and examples. The tool description adds little beyond the schema, so the baseline of 3 is appropriate.

    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?

    Description uses specific verb 'Search' and resource 'British and Irish hills by name', which clearly differentiates it from siblings like find_nearby_hills (by location) and get_hill_details (details). It also states the output type (ranked matches with fields), further clarifying its role.

    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?

    The description clearly implies when to use the tool: when searching by hill name. It does not explicitly mention alternatives or exclusions, so it does not earn a 5, but the context is unambiguous and sibling names help disambiguate.

    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

hills-mcp-server MCP server

Copy to your README.md:

Score Badge

hills-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/Michael-Hutchinson/hills-mcp-server'

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