Skip to main content
Glama

List BugSecure badges

list_badges
Read-onlyIdempotent

View the badge catalogue with earned status, unlock dates, and progress toward locked badges. Hidden badges stay obscured until earned.

Instructions

The full BugSecure badge catalogue, with the signed-in user’s progress: which badges are earned, when, and how close they are to each locked one. Hidden badges stay obscured until earned.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoResults per page (1–100).
stateNoOnly earned or only locked badges.
offsetNoResults to skip.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
totalNo
badgesNo
earnedNo
offsetNo
nextOffsetNoNext page’s `offset`; null on the last page.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, so the safety profile is covered. The description adds useful behavioral context: hidden badges stay obscured until earned, and progress toward locked badges is included. This goes beyond the annotations without contradicting them.

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 sentences with no fluff. The core purpose and key behavioral detail (hidden badges) are front-loaded, and 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?

The tool has an output schema, so return values are covered. The description explains the user-specific progress and hidden badge behavior, which is enough for an agent to call it correctly. Minor gap: no explicit mention of pagination behavior beyond the schema's limit/offset, but that's already in the schema.

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 (limit, state, offset). The description adds the notion of progress and hidden badges but doesn't add parameter-specific meaning beyond the schema. Baseline 3 is appropriate.

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 the tool lists the full badge catalogue with the signed-in user's progress, including earned/locked status and proximity. It distinguishes itself from sibling tools by focusing on badges and user progress, not reports, programs, or certificates.

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?

The description implies this is for viewing badge progress, and the schema's optional state filter clarifies usage. It doesn't explicitly name alternatives or when-not-to-use, but the context of sibling tools (e.g., list_my_certificates) makes the use case clear enough.

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