Skip to main content
Glama
petrmasa
by petrmasa

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 distinct purpose: load_dataset loads data, list_datasets lists loaded data, find_drivers performs global driver analysis, explain_segment drills into a specific segment. Descriptions clearly differentiate when to use each.

    Naming Consistency5/5

    All tool names follow a consistent verb_noun pattern with snake_case (load_dataset, list_datasets, find_drivers, explain_segment), making them predictable and easy to understand.

    Tool Count5/5

    With 4 tools, the server is well-scoped for its purpose of driver analysis. The number is within the ideal range for clarity without being overly minimal or bloated.

    Completeness4/5

    The core workflow is covered: load data, list available datasets, find global drivers, and drill into segments. A minor gap is the lack of a tool to remove datasets, but this can be worked around by not relying on persistent state beyond the session.

  • Average 4.7/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
    • 2 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 AGPL 3.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, the description must indicate behavioral traits. It states 'list all currently loaded datasets' and 'without reloading', implying a read-only, non-destructive operation with minimal impact. It does not mention authentication or side effects, but none are expected for a list operation.

    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 extremely concise: two sentences that state the action and the usage context. No filler or repetition. Every sentence adds value.

    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 has no parameters and an output schema exists (though not shown), the description is sufficient. It specifies the return values (names, row counts, column names). It could mention if there are limits or pagination, but for a simple list, this is adequate.

    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 tool has zero parameters, and schema description coverage is 100%. The description adds no parameter info since none exist, which is appropriate. Baseline for 0 parameters is 4.

    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 lists currently loaded datasets and specifies the returned information (names, row counts, column names). It distinguishes from sibling tools like load_dataset, which loads data, and explain_segment, which analyzes segments.

    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 includes a usage hint: 'Use this to remind yourself what data is available without reloading.' This implies the tool is for quick lookup, avoiding reloading. However, it does not explicitly state when not to use it or compare to alternatives like load_dataset.

    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 provided, so description carries full burden. It states returns complete JSON in single response and warns against multiple calls. However, it does not explicitly mention whether the tool modifies data or has side effects, though implied read-only.

    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?

    Well-structured with core purpose first, then usage notes, then parameter descriptions. Slightly verbose but every sentence adds value; could be trimmed slightly without loss.

    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 6 parameters (4 required), output schema exists, no nested objects, the description covers all aspects: purpose, usage, parameters, and expected output format (multi-level nested JSON). Complete for a complex analysis tool.

    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 coverage is 0%, but the description explains all parameters: dataset_name, target, target_class, condition_variables, attributes, min_base. Provides guidance like excluding direct encodings of target for attributes, and explains condition_variables purpose.

    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 drivers of a target outcome within a specific segment using the CLARA method, with a specific verb-resource combination. It distinguishes from sibling tool find_drivers by noting use for local/conditional analysis.

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

    Usage Guidelines5/5

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

    Explicitly says to use find_drivers first for global picture and explain_segment only for drilling into a slice. Also warns to call it once and not multiple times, providing clear when-to-use and when-not-to-use 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?

    With no annotations, the description carries full burden. It discloses return values (column names, row count, distinct values for categorical columns) and hints at in-memory loading. It does not fully detail side effects or error conditions, but for a load function, this is adequate.

    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-structured: first paragraph for purpose and usage, second for return and metadata application, third for parameters. Every sentence is informative and earns its place, with no redundancy.

    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 the tool's complexity (loading datasets), the description covers the essential: input parameters, usage sequence, and output metadata. It integrates with sibling tools (find_drivers, explain_segment) and provides actionable guidance. Output schema exists, but description still explains return values, making it complete.

    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 coverage is 0%, so description compensates by explaining each parameter: name as a short label, path as absolute/relative path, separator with default and tab example, encoding with utf-8 default and cp1250 for Windows. This adds significant meaning beyond the schema.

    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 verb 'load', resource 'CSV or ZIP-compressed CSV file', and the purpose 'into memory under a given name'. It also distinguishes itself from siblings by indicating it should be called ONCE before find_drivers or explain_segment.

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

    Usage Guidelines5/5

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

    Explicitly states when to call ('ONCE before find_drivers or explain_segment') and that reloading the same file is unnecessary. Provides guidance on using returned metadata for find_drivers, including identifying target variables and exclusion lists.

    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?

    Despite no annotations, the description fully discloses behavioral traits: it returns a complete nested JSON, automatically runs sub-analysis if needed, explains lift values (Lift > 1 / < 1, strength signs), and details how parameters like max_depth and auto_boundaries affect results. No contradictions with annotations as none exist.

    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 well-structured with clear sections (purpose, usage admonition, response explanation, important note, lift interpretation, Args) and is front-loaded with critical usage guidance. However, it is somewhat verbose; some details could be condensed without losing value, earning a 4 instead of 5.

    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?

    The description fully covers the tool's behavior given its complexity (8 parameters, nested response). It explains the return structure (drivers list with sub_drivers), lift interpretation, and parameter effects. An output schema exists, so omitting return field details is acceptable. The description is sufficient for correct usage.

    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?

    With 0% schema description coverage, the description adds extensive meaning: each parameter (dataset_name, target, target_class, attributes, filters, min_base, max_depth, auto_boundaries) is explained with purpose, defaults, and usage examples. For instance, attributes is described as a way to exclude redundant columns, and filters includes instructions on value matching.

    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's purpose: 'Find the key drivers and influencers of a target outcome in a loaded dataset.' It specifies the verb ('find'), resource ('drivers and influencers'), and distinguishes from siblings by emphasizing that it returns complete nested JSON in one call, contrasting with potential iterative approaches.

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

    Usage Guidelines5/5

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

    The description provides explicit guidance: 'Call this ONCE' and 'Do NOT call it multiple times to refine results.' It instructs when to call again with filters (only for specific sub-segments not already covered) and warns about avoiding trivial drivers by checking load_dataset output. This clearly differentiates usage from alternatives.

    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

key_drivers_mcp MCP server

Copy to your README.md:

Score Badge

key_drivers_mcp 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/petrmasa/key_drivers_mcp'

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