Skip to main content
Glama

Server Quality Checklist

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

  • Disambiguation5/5

    Each tool has a clearly distinct job: health check, parsing perf output, suggesting NEON intrinsics, and scanning dependency manifests. No two tools overlap or create selection ambiguity.

    Naming Consistency4/5

    Three tools follow a clear verb_noun pattern (analyze_perf_output, suggest_neon_intrinsic, check_arm64_deps). The ping health-check tool is a minor deviation, but it's a conventional exception.

    Tool Count5/5

    Four tools is a well-scoped size for a specialized Arm64 code assistant. Each tool provides standalone value without redundancy.

    Completeness4/5

    The tool set covers profiling output analysis, NEON intrinsic lookup, and Arm64 dependency compatibility with no obvious dead ends. Minor gaps exist (e.g., no disassembly or compile-flag assistance), but the core purpose is reasonably served.

  • Average 4.6/5 across 4 of 4 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 is passing
  • This repository is licensed under Apache 2.0.

  • 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 no annotations available, the description carries the behavioral disclosure burden. It clearly states the exact return format and gives a concrete example, which is strong for a simple ping tool. It does not mention failure modes or side effects, but 'Health-check' implies a non-mutating liveness probe.

    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 plus one illustrative example, with no filler. It packs the core behavior, the return format, and parameter usage into a minimal, front-loaded structure.

    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 health-check tool with one required string parameter and an output schema, the description fully covers what an agent needs: what the tool does, what input it expects, and what output to expect. Nothing essential is missing.

    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 provides no property descriptions, so the tool description must compensate. The example 'ping(message="hello") → "pong: hello"' demonstrates that the message parameter is echoed back inside the pong string, effectively conveying its semantics.

    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 identifies a specific verb ('Health-check') and explicitly defines the tool's behavior: it returns 'pong: <message>'. This clearly distinguishes it from the analysis-oriented 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/5

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

    The 'Health-check' label and echo-like example make the intended use obvious, but the description does not explicitly state when to use it versus alternatives. Given that the sibling tools are clearly unrelated, the implied usage is sufficient.

    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 behavioral burden and goes beyond a one-line summary by specifying filtering semantics, default values, and the full return shape including warnings. It does not detail malformed-input failure modes, but this is a read-only parsing operation and the core behavior is transparent.

    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 front-loaded with the core purpose, followed by usage, parameters, return shape, and a practical example. Every section earns its place, especially since there is no output schema and annotations are absent.

    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 parser with no annotated safety profile and no output schema, the description supplies the essential context: when to use it, what each parameter means, what the returned object looks like, and an example combining parameters. No critical information is missing for an agent to invoke it correctly.

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

    Parameters5/5

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

    The schema provides no per-parameter descriptions, so the description fully compensates by defining each argument: raw text input, top_n as the maximum number of symbols, and min_overhead_pct as a filter threshold with defaults. This gives an agent everything needed to set the parameters correctly.

    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?

    States a specific verb and resource: parse perf report --stdio text and return top hot symbols. This clearly conveys what the tool does and is distinguishable from sibling tools like ping, suggest_neon_intrinsic, and check_arm64_deps, which address unrelated tasks.

    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 explicitly says to use the tool when a user pastes perf report --stdio output and wants CPU-consuming functions. It does not mention when not to use it, but the sibling tools are in different domains, so no exclusions or alternatives are necessary.

    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?

    There are no annotations, so the description carries the behavioral burden. It discloses the similarity-based ranking, architecture filtering ('Filtered to armv8-a'), and the exact return shape including notes about knowledge-base counts. It stops short of describing error/empty-match behavior, but it provides substantial transparency for a read-only suggestion 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 well organized into purpose, usage conditions, Args, Returns, and Example. The example return object and worked call are informative rather than redundant. Every section earns its place and supports correct invocation.

    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?

    With no output schema, the description supplies a full return structure, a notes field explanation, and a ranking example. It covers parameters, defaults, and expected results comprehensively for a tool of this complexity. No critical information needed to select or use the tool is missing.

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

    Parameters5/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 fully compensate, and it does. It explains operation_description with a concrete example, enumerates valid target_arch values and the default, and states top_k's default and purpose. An agent can call this tool correctly without needing additional parameter documentation.

    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 opens with a precise statement: 'Suggest NEON SIMD intrinsics for an operation description, ranked by semantic similarity.' This names the exact verb, resource, and ranking behavior, making the tool's purpose unmistakable. It is also clearly distinct from sibling tools like analyze_perf_output and check_arm64_deps.

    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 explicitly lists when to use the tool: for a hot loop, Arm64 vectorization, or when the user mentions intrinsic names like vmlaq_f32. It does not give explicit when-not or alternative tool guidance, but the sibling tools are topically distant enough that confusion is unlikely.

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

  • Behavior5/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 explains return structure, defines severity levels (error/warning/info) with concrete meanings, and gives a realistic example of outputs for cupy, tensorflow, and numpy. This goes well beyond a bare 'scan' statement.

    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 longer than average but every section earns its place: purpose, use case, arguments, return format, severity semantics, and example. It is well-structured and front-loaded with the core purpose before any detail.

    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?

    Given there is no output schema and no annotations, the description provides a complete picture: what inputs are needed, what the return object looks like, how issues are categorized, and a concrete example. An agent has enough information to invoke the tool correctly and interpret results.

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

    Parameters5/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 for missing parameter documentation. It fully explains both parameters: file_content as raw manifest text, and file_type with exact allowed values ('requirements.txt', 'pyproject.toml', or 'Dockerfile'). It also demonstrates the call signature with an example.

    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 opening sentence names a specific action and resource: scanning a dependency manifest for arm64 compatibility issues. It also clarifies the subject (Python dependencies) and target hardware (Arm64 servers like AWS Graviton), making it easy to distinguish from the unrelated 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/5

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

    The description explicitly states when to use the tool: when a user wants to know whether Python dependencies install on Arm64 or why a package fails on arm64. It provides clear context, but it does not mention exclusions or alternative tools, so it stops short of a full when-not/alternative guide.

    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

arm-code-mcp MCP server – quality and maintenance score on Glama

Copy to your README.md:

Score Badge

arm-code-mcp MCP server – quality and maintenance score on Glama

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/jean-johnson-zwix/arm-code-mcp'

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