Skip to main content
Glama

Server Quality Checklist

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

  • Disambiguation3/5

    There are several debt-related tools (get_contragent_debt, get_debt_by_phone, get_debt_by_email, get_calculation_amount_type, get_contract) whose outputs overlap in debt/penalty figures; descriptions clarify different lookup keys or levels, but an agent could still struggle to choose among them. ping and the document/period tools are clearly distinct.

    Naming Consistency4/5

    All tools follow a get_ prefix and snake_case, and most use a readable get_<resource>_<detail> or get_<detail>_by_<identifier> pattern. The deviations are minor: ping has no get_, and names like get_calculation_amount_type are less intuitive than the rest.

    Tool Count5/5

    Ten tools is a reasonable size for a debt/contract lookup server. Each tool covers a distinct query need without excessive redundancy or an overwhelming surface.

    Completeness4/5

    The set provides solid read-only coverage: contragent lookup, debt by multiple identifiers, bills, contracts, service periods, and fine details. A minor gap is the lack of a direct debt lookup by contragent UUID, which would require using an INN from get_contragent_status as a workaround.

  • Average 3.4/5 across 10 of 10 tools scored.

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

    • No community issues in the last 6 months
    • 4 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
  • Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.

    If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.

    MCP servers without a LICENSE cannot be installed.

  • 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?

    No annotations are provided, so the description carries the full burden for behavioral disclosure. It only labels the output ('type of calculation and current debt') and does not mention read-only behavior, error cases, authentication needs, or result shape. An agent gets no insight into side effects or failure modes.

    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 compact fragment with no filler or redundant phrasing. It front-loads the two output aspects before the input scope. The lack of a verb makes it slightly less structured, but the length is appropriate for a one-parameter lookup.

    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?

    With one parameter, no output schema, and no annotations, the description minimally covers the return aspects (calculation type and current debt) and the input. However, it does not explain what 'type of calculation' means nor differentiate this tool from the debt-focused siblings, leaving tool selection partially ambiguous.

    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?

    Schema description coverage is 0%, so the description must compensate. It clarifies that pa_or_inn means 'personal account/INN' ('по лицевому счёту/ИНН'), which is the essential semantic for correctly supplying the single parameter. It stops short of specifying accepted formats or how to distinguish a personal account from an INN.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose3/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description is a Russian noun phrase ('Тип расчёта начислений и текущий долг...') rather than a clear verb+resource statement. It conveys the resource domain — accrual calculation type and current debt — but remains vague about the exact operation and does not distinguish this tool from sibling debt tools like get_contragent_debt.

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

    Usage Guidelines2/5

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

    There is no guidance about when to use this tool versus alternatives such as get_contragent_debt, get_debt_by_phone, or get_debt_by_email. The input scope (personal account/INN) is implied, but no exclusions, conditions, or alternative tool names are 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 carries the burden. It adds a useful behavioral fact: debt is returned across all personal accounts associated with the email, implying a read-only lookup. But it does not disclose error behavior, empty results, authorization, or what specifically is returned.

    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?

    One short sentence with no filler and the key scope ('всем лицевым счетам') front-loaded. It is concise but perhaps too sparse to compensate for missing usage and output details.

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

    Completeness2/5

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

    For a tool with no output schema and no annotations, the description should explain what the result is (debt amount? list of debts?) and edge-case behavior. It leaves these to inference, making it incomplete for an agent trying to invoke it confidently.

    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 0%, so the description must compensate. It clarifies that email is the account-linking identifier, but it does not specify format, normalization, or behavior for unknown emails. The single parameter is self-descriptive, so this is adequate, not more.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description states the resource ('debt') and the addressing key ('email'), adding a scope detail: aggregate debt across all personal accounts tied to that email. This differentiates it from get_debt_by_phone, though it is phrased as a noun phrase rather than an explicit verb phrase.

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

    Usage Guidelines2/5

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

    No guidance says when to prefer this tool over siblings such as get_debt_by_phone or get_contragent_debt. The use case is only implied by the email parameter and tool name.

    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 provided, the description carries the behavioral burden. It adds useful information by stating that the result spans all personal accounts linked to the phone, but it does not disclose details such as phone normalization, missing-account behavior, or absence of side effects.

    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 concise sentence with no filler, and the key scope 'all personal accounts linked to the phone' is front-loaded. It could have been more informative, but it is efficiently worded.

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

    Completeness2/5

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

    For a one-parameter tool with no annotations and no output schema, the description should at least specify the phone input format and when to prefer this over get_debt_by_email. It conveys the return concept but leaves the invocation contract underspecified.

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

    Parameters1/5

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

    Schema description coverage is 0%, and the description does not compensate by explaining the expected phone format, normalization, or validation rules. An agent cannot determine from the definition whether to provide an E.164 number, local digits, or a country-coded string.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly identifies the resource: debt for all personal accounts associated with a phone number. This also differentiates it from the sibling get_debt_by_email by specifying the lookup channel, though it lacks an explicit verb.

    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 provides clear context: use this tool when you have a phone number and need the debt across attached personal accounts. It does not explicitly mention alternatives or when not to use it, but the intended scenario is evident.

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

  • Behavior2/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 of behavioral disclosure. It says the result is a list of contracts with amounts, but it does not state whether the operation is read-only, how errors are returned, whether pagination applies, or what the actual response structure looks like.

    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 short sentences with no filler. The main purpose is front-loaded, and the parameter clarification is placed second where it is easy to find.

    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 single-parameter read-style tool, the description gives enough to understand what is returned at a high level and where the parameter comes from. However, with no output schema and no annotations, the lack of response details and usage boundaries leaves moderate gaps for an agent that needs to invoke or interpret the tool correctly.

    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 only defines contragent_id as a string with no description, while the tool description adds that it is a UUID and points to the exact source field ('id' in get_contragent_status). This is valuable semantic clarification for the only parameter and compensates well for the 0% schema description coverage.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description states the resource (counterparty contracts) and the included data (accruals, payments, penalties, debt), so an agent can tell it is a contract-list tool. However, it is phrased as a noun phrase rather than a direct verb+resource, and it does not explicitly differentiate it from siblings like get_contragent_debt or get_contragent_bills.

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

    Usage Guidelines2/5

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

    The only usage guidance is that contragent_id comes from the 'id' field in get_contragent_status, which helps with parameter sourcing but not tool selection. There is no indication of when to prefer this tool over the sibling tools or when not to use it.

    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 carries the full burden. It usefully discloses that the REST API returns the whole Contragent entity and that a dedicated 'status' field may be absent, which is a significant caveat. It does not mention missing-result behavior, permissions, or other side effects, but the read-only nature is clear from the verb.

    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?

    Two sentences, with the core action first and the important caveat second. No wasted words; the caveat earns its place because it corrects a likely false expectation created by the tool name.

    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 low-complexity one-parameter read operation with no output schema, the description gives the core behavior and a key caveat. It is still incomplete about when to choose it versus siblings and about what happens when no counterparty is found, so it does not reach fully self-sufficient.

    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 0%, so the description must compensate. It does clarify that the single inn parameter is the Russian taxpayer ID used to search, going beyond the schema's bare 'inn' string. It stops short of specifying expected format or validation rules, but for a single well-known identifier this is near-sufficient.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description states a precise verb (find) and resource (contragent by INN, Contragent entity). It is distinguishable from sibling debt/phone/email/bills tools by being a general entity lookup. However, it doesn't explicitly differentiate itself from siblings, and the tool name focuses on 'status' while the description says no separate status field may exist.

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

    Usage Guidelines2/5

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

    No guidance is given on when to choose this tool over siblings such as get_contragent_debt or get_contragent_bills. The intended use (lookup by INN) is implied but not stated as a decision rule, and no exclusions or alternative conditions are provided.

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

  • Behavior2/5

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

    No annotations are provided, so the description carries the full behavioral burden. It does not state that the operation is read-only, what it returns, whether it supports filtering by is_paid, or any pagination/error behavior. The only added behavioral context is the date format and the source of contragent_id, which are mostly parameter semantics.

    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 compact and well-organized: a one-line purpose statement followed by concise parameter definitions. There is no redundancy or filler; every sentence adds some useful information.

    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 simple read-style tool with four parameters, the description is minimally adequate: it explains the key identifier and date format. But with no annotations and no output schema, the lack of any explanation for is_paid and the absence of return-value or behavior details leave meaningful gaps for an agent.

    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 0%, so the description must compensate. It usefully explains contragent_id as the UUID from get_contragent_status and specifies the dd.MM.yyyy format for date_from/date_to. However, it completely omits the is_paid parameter and does not clarify what true/false values represent.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description identifies a specific resource: counterparty bills/invoices over a date period. It is clearly distinct from sibling tools like get_contragent_debt or get_contragent_status, though it is phrased as a noun phrase rather than an explicit action sentence like 'Returns...'.

    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 intended use is implied by 'Счета контрагента за период' and the date parameters: use this tool to get counterparty bills within a period. However, there is no explicit guidance about when NOT to use it or how it relates to alternatives like get_contragent_debt.

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

  • Behavior2/5

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

    No annotations are provided, so the description must carry the transparency burden. It only names the returned data and gives no context about side effects, authorization, error behavior, or response format; the read-only nature is only inferable from the tool name.

    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 compact noun phrase with no filler words; all included phrases ('service periods', 'start/end dates', 'personal account or INN') are informative. It is concise, but it is structured as a fragment rather than a sentence.

    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 one-parameter retrieval tool with no output schema, the description supplies the essential return concept (start/end dates) and input semantics. It does not describe edge cases or the full response shape, but those are low-complexity gaps for this 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?

    With 0% schema description coverage, the description clarifies that the single required 'pa_or_inn' parameter accepts a personal account or INN. It adds real semantic value, though it does not give format examples or disambiguation rules.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description names the resource ('service periods') and scopes it to a personal account or INN, and adds the data shape (start/end dates), so an agent can tell it apart from debt/bill/status siblings. It lacks an explicit verb, relying on the tool name 'get' for the action.

    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?

    Usage is implied: if the agent needs service periods for a personal account or INN, this is the tool. There is no explicit 'use this when...' or any mention of conditions/exclusions relative to sibling tools.

    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 carries the behavioral disclosure burden. It usefully explains that the debt includes principal, penalties, and state fee, and that lookup is by account or INN. But it does not describe return shape, error behavior, or any requirements beyond the parameter.

    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 efficient sentence with no filler. The key information—debt components and lookup keys—is front-loaded and every part earns its place.

    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 simple one-parameter read tool, the description covers the essential lookup keys and debt composition. However, with no output schema and no annotations, the agent must infer return format and must rely on sibling tool names to understand when this tool is preferred over phone/email debt lookups.

    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 0%, so the description must clarify the parameter. It does clarify that pa_or_inn can be either a personal account or an INN, which adds meaning beyond the raw property name. It does not specify format, length, or whether both identifiers are accepted simultaneously.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description identifies the resource (contragent's debt) and the key lookup dimensions: by personal account or INN. The tool name includes 'get', making the operation clear. It does not explicitly contrast with sibling tools like get_debt_by_phone or get_debt_by_email, but the identifier-based scoping is enough to distinguish it.

    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?

    Usage context is implied: call this tool when you have a personal account or INN and need a contragent's debt. However, there is no explicit when-not-to-use guidance or mention of alternatives such as get_debt_by_phone and get_debt_by_email.

    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 carries the transparency burden. It adds useful behavioral context by specifying the grouping dimensions (contracts and months) and the date format. However, it does not explicitly state that the operation is read-only, nor what response shape or error behavior to expect.

    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 compact: one sentence for purpose and one for date format, with no filler or redundant restatement of the tool name. Both sentences add value and the key detail about date format is placed directly after the purpose.

    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 three-parameter read-oriented tool with no output schema and no annotations, the description is reasonably complete: it explains what is returned (fine detailization by contracts and months) and how to format dates. It stops short of describing the exact output fields or edge-case behavior, which would be needed for a perfect score.

    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 has 0% description coverage, but the description compensates by tying personal_account to the subject of the detailization and explicitly documenting date_from/date_to as dd.MM.yyyy. It does not clarify whether dates are inclusive or what format personal_account should take, but the main semantics are covered.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the resource: a breakdown of penalties (пеней) for a personal account over a period, grouped by contracts and months. It distinguishes the tool's focus from general debt or bill tools, though it uses a noun phrase rather than an explicit verb and does not directly reference sibling alternatives.

    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 intended use is implied: call this tool when fine/penalty detailization for a personal account over a date range is needed. However, it provides no explicit guidance about when not to use it or which sibling tool to prefer for related debt or bill information.

    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 behavioral burden. 'Checking that the server is alive and connected' clearly conveys a read-only health check and implies no side effects. It is transparent enough for a zero-parameter ping tool, though it does not mention timeout or error behavior.

    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 clear sentence with no filler or redundant wording. It front-loads the essential purpose and is appropriately sized for a trivial zero-argument tool.

    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 ping/health-check tool with zero parameters and an output schema, the description provides everything needed to decide to invoke it and understand its function. No additional context is required.

    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, so the schema is already complete. There is nothing for the description to add about parameters; the baseline of 4 applies because nothing is missing.

    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 identifies the operation: checking that the server is alive and connected. This distinguishes it from the sibling tools, which are all contragent/debt/billing queries, so an agent can immediately recognize this as the liveness probe.

    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 intended use is implied by the health-check description, but there is no explicit guidance about when to call it, when not to call it, or what to do based on the result. The sibling tools are unrelated enough that confusion is unlikely, which keeps this above 2.

    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

lk-tko-mcp MCP server

Copy to your README.md:

Score Badge

lk-tko-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/K1mvasyok/lk-tko-mcp'

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