Skip to main content
Glama
DalilaMiglio

AcuMiglio MCP GitHub Agent

by DalilaMiglio

Listar issues de GitHub

list-issues

Retrieve open, closed, or all issues from a GitHub repository to review bugs, tasks, and discussions.

Instructions

Obtiene los issues de un repositorio de GitHub. Usa este tool cuando el usuario quiera consultar, revisar o listar issues abiertos, cerrados o todos los issues de un repositorio.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
repoYesRepositorio cuyos issues se desean consultar.
ownerYesUsuario u organización propietaria del repositorio.
stateNoEstado de los issues a consultar: open, closed o all.open
per_pageNoCantidad máxima de issues a devolver.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
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, yet it only says the tool 'obtiene' issues. It does not state that the operation is read-only, whether permissions are required, how pagination works beyond the per_page parameter, or what the response contains.

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, front-loaded with the core action and followed by a usage trigger. It is efficient, though 'consultar, revisar o listar' is slightly redundant and the state options restate the schema enum.

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 four-parameter list tool with no annotations and no output schema, the description covers purpose and basic usage. It omits behavioral details such as read-only safety and pagination expectations, leaving some gaps for correct invocation.

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 all four parameters are already documented in the schema. The description hints at filtering by state ('abiertos, cerrados o todos') but adds no format, default, or usage detail beyond what the schema provides. A baseline of 3 is appropriate.

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 specific verb and resource: 'Obtiene los issues de un repositorio de GitHub.' It clearly distinguishes itself from write-oriented siblings like create-issue, but does not explicitly name or contrast with any sibling tool.

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?

It gives a clear usage context: 'Usa este tool cuando el usuario quiera consultar, revisar o listar issues abiertos, cerrados o todos.' This tells the agent when to invoke it. However, it offers no when-not conditions or explicit alternatives such as create-issue.

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