Skip to main content
Glama
Miro-sh

yeswehack-mcp

by Miro-sh

get_my_report

Read-onlyIdempotent

Fetch details of a specific report accessible to the logged-in hunter. Optionally include attachment URLs to view full report information.

Instructions

Récupère le détail d'un rapport accessible au hunter connecté. Les URL des pièces jointes sont omises par défaut.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
report_idYes
include_attachment_urlsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

B3.4/5.0
Behavior4/5

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

The annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds useful behavioral context beyond that: attachment URLs are omitted by default, which informs the agent about default output 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?

Two short sentences, no filler. The main purpose comes first and the behavioral default is stated second. Every sentence earns its place.

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 retrieval tool with two self-explanatory parameters and strong safety annotations, the description covers the core purpose and an important default behavior. The absence of an output schema is mitigated by the simplicity of the expected 'report detail' result.

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

Parameters2/5

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

Schema description coverage is 0%, so the description carries the burden of explaining parameters. It indirectly addresses include_attachment_urls by stating attachment URLs are omitted by default, but it repeats what the schema's default:false already conveys, and it adds no meaning for report_id.

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 uses a specific verb ('Récupère') and resource ('le détail d'un rapport'), and scopes it to reports accessible to the connected hunter. This is clear, though it does not explicitly distinguish itself from sibling tools like get_report_activity or list_my_reports, so it stops short of a 5.

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 use this tool versus alternatives such as list_my_reports or search_my_reports. The scope 'accessible to the connected hunter' hints at a limitation, but there is no explicit when-to-use or when-not-to-use instruction.

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