Skip to main content
Glama

lekta

Ordered path to A+ for an audited page

lekta_fix_plan
Read-onlyIdempotent

Turns the MOST RECENT stored audit of a URL into an ordered work plan: each fix with the points it is expected to recover, hardest-hitting first. USE THIS to decide what to change before touching the code. DO NOT use it to measure — it never fetches the page; if the URL was never audited it returns nothing and you must call lekta_audit first. COST: free, reads stored data only, and never spends quota.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesAbsolute http(s) URL that was audited before

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.6/5.0
Behavior5/5

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

Annotations already indicate readOnlyHint=true, destructiveHint=false, and idempotentHint=true. The description adds valuable behavioral context beyond those: it never fetches the page, reads stored data only, is free/quota-free, and returns nothing for unaudited URLs. There is no contradiction with the annotations.

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 front-loaded with the core transformation, then provides usage, limitation, and cost guidance in compact phrases. It is slightly redundant by saying both 'reads stored data only' and 'never fetches the page,' but overall every sentence earns its place and the structure is easy to scan.

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 single-parameter tool with strong annotations and no output schema, this description is complete. It explains what it produces, when to use it, what it cannot do, what happens for unaudited URLs, and the required next step (lekta_audit). No essential selection or invocation guidance is missing.

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% and the single url parameter already includes a meaningful description: 'Absolute http(s) URL that was audited before.' The tool description reinforces that the URL must have been audited, but does not meaningfully extend the parameter semantics 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 a specific verb and resource: it turns the most recent stored audit of a URL into an ordered work plan with expected point recovery, hardest-hitting fixes first. It also differentiates itself from measurement tools by explicitly warning 'DO NOT use it to measure,' and distinguishes itself from lekta_audit by noting it returns nothing if the URL was never audited.

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 gives explicit when-to-use guidance: 'USE THIS to decide what to change before touching the code.' It also gives a clear exclusion: 'DO NOT use it to measure — it never fetches the page,' and provides a fallback: call lekta_audit first if the URL was never audited.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.6/5.0
Disambiguation4/5

Most tools have distinct purposes: audit, report, diff, fix_plan, and my_sites are clearly separated. The only potential confusion is between lekta_audit and lekta_report, but their output formats and use cases are explicitly differentiated.

Naming Consistency4/5

All tools share the lekta_ prefix and use lowercase snake_case, which provides strong consistency. The pattern is not strictly verb_noun for every tool (e.g., lekta_my_sites, lekta_report), but these are minor deviations that do not harm readability.

Tool Count5/5

Five tools is well-scoped for the domain of audit tracking and remediation. Each tool serves a necessary step in the workflow without adding redundant or unnecessary surface area.

Completeness5/5

The toolkit covers the full audit lifecycle: performing an audit, retrieving structured results, comparing versions, generating fix plans, and listing tracked sites. No obvious gaps exist for the stated purpose.

Resources