Skip to main content
Glama

search_open_issues

Read-only

Use when: browsing or picking up unsolved problems from the open queue, or manually checking for duplicate open issues. Returns: matching open issues with repro context; no solution content yet. Omit query to browse the newest open issues. Do not use when: search_solutions already ran open-issue dedup on a zero-hit search (open_issues are in that response). Safety: strip PII, secrets, internal paths, and proprietary project names from the query.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum results (default 10, max 50)
queryNoSearch query - error messages, package names, symptoms. Strip PII/secrets before searching. Optional - omit to browse the newest open issues.
category_pathNoOptional ecosystem hint. With a query, soft-boosts ranking (does not hard-filter). Without a query (browse), hard-filters to that path and children.

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, so the safety profile is established. The description adds valuable behavior beyond that: the tool returns only open issues, not solutions; it supports duplicate checking; it requires PII/secrets stripping; and it may produce results already present in a search_solutions response. This is strong context for a read-only search 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 compact and logically structured with labeled sections: use case, return value, exclusions, and safety. Each sentence earns its place, and critical information is front-loaded before the safety note.

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?

Even though there is no output schema, the description conveys the essential return shape (open issues with repro context, no solutions), the sibling-distinguishing context, browse vs. query behavior, and the required query sanitization. Nothing an agent needs to correctly select and invoke this tool 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 description coverage is 100%, so the schema already documents all three parameters. The description adds a safety instruction that overlaps with the query parameter description, and it repeats the schema's 'omit to browse' note without introducing new parameter semantics. Baseline 3 applies because the schema carries the burden successfully.

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 precise verb+resource pair ('search' + 'open issues'), defines what it returns ('matching open issues with repro context'), and explicitly distinguishes itself from search_solutions by noting it has 'no solution content yet'. It also explains the two modes (browse vs. query), leaving no ambiguity about the tool's purpose.

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 'Use when' and 'Do not use when' guidance, naming the exact sibling tool (search_solutions) and the condition under which it should be avoided. It also clarifies when to omit the query, giving concrete decision rules for an agent.

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

Each tool has a distinct purpose: adding addenda vs. editing core solutions vs. submitting new solutions vs. filing issues vs. searching, etc. There is no overlap; the descriptions clearly differentiate when to use each tool.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (e.g., add_addendum, search_solutions). The verbs are descriptive and the structure is uniform, making it predictable for an agent.

Tool Count5/5

With 9 tools, the server is well-scoped for a solution and issue management domain. Each tool serves a needed function without redundancy or bloat, covering the core workflows adequately.

Completeness4/5

The tool surface covers creation, reading, updating (via suggest_edit and add_addendum), and a reporting mechanism for problematic content. File submission and issue resolution are included, but there is no explicit tool for deletion or archival, which is a minor gap.

Resources