Skip to main content
Glama

List website issues

list_issues
Read-only

List a website's open audit issues (like a bug tracker: each issue is one failing rule with occurrences across pages, numbered per website). Returns issues sorted by severity, plus severity and status summaries. Use the issue number with get_issue for full detail and comments. Filter by status/severity/category to narrow down. This is a per-website tracker spanning audits, not a per-run count: one rule failing on 600 pages is ONE issue here, and an issue stays open until an audit re-checks it. So the open count is expected to be far smaller than a run's issues_found (list_audits) or a report's failed+warnings, and the two are not comparable (#1700). To compare runs, use health_score from list_audits.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoPage size (default 50).
offsetNoPagination offset (default 0).
statusNoFilter by issue status (omit for all statuses).
categoryNoFilter by rule category code (e.g. seo, performance, security).
severityNoFilter by severity.
website_idYesWebsite id from list_websites, run_audit, or list_audits.

TDQS

A4.8/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is clear. The description adds valuable behavior: sorting by severity, inclusion of severity/status summaries, per-website tracker spanning audits rather than per-run count, and the persistence model of issues staying open until re-checked. It also explains why counts differ from related tools.

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 longer than average but every section earns its place: it explains the bug-tracker analogy, sorting/summaries, the crucial per-website vs per-run distinction, and routing to siblings. It is front-loaded with the core purpose and saves the numerical caveat for the end. Could tighten slightly, but it's dense and mostly necessary.

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?

Comprehensive for a read-only list tool: it explains return summaries, sorting, filtering, the relationship to get_issue, and the critical caveat about count comparability. No output schema exists, so the description appropriately explains what the response contains and why.

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 coverage is 100%, so the schema documents all six parameters with descriptions and enums. The description adds context on filtering by status/severity/category and how pagination works through limit/offset defaults, though the schema already covers those details. There's a small bonus for explaining the issue-number link to get_issue.

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?

Clearly states it lists a website's open audit issues, compares them to a bug tracker, and specifies each issue is one failing rule with occurrences across pages numbered per website. Distinguishes itself from sibling tools like list_audits, get_issue, and run_audit.

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?

Provides explicit guidance on when to use this tool vs alternatives: use issue numbers with get_issue for details, compare runs with health_score from list_audits, and notes that open counts are not comparable to list_audits or report failed/warnings. This is strong alternative-routing.

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.4/5.0
Disambiguation5/5

Each tool maps to a distinct resource-action pair: websites, audits, issues, rules, credits, notifications, and account info are cleanly separated. Even the close pairs (delete_website vs delete_websites, get_rule vs list_rules) are clear singular/bulk or fetch-all vs fetch-one distinctions.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern: add_, delete_, get_, list_, run_, comment_, send_, create_. The only outlier, whoami, is a conventional standalone command and does not break the overall predictability.

Tool Count4/5

At 20 tools, the surface is slightly heavy, but the count is justified by the wide domain coverage: audit lifecycle, issue tracking, rule catalog, billing/credits, notifications, and account management. Each tool appears to earn its place, and none feel redundant.

Completeness4/5

The core workflow is well covered: run an audit, poll it, fetch a report, compare audits, list and comment on issues, browse rules, and manage websites. Minor gaps exist—no cancel-audit tool, no update_website, and issues cannot be status-changed—but agents can work around these using the existing tools.