Skip to main content
Glama

list_programs

Fetch accessible bug bounty programs, including private invite-only ones. Filter to private programs and control pagination to view all or specific pages.

Instructions

List bug bounty programs you have access to, including private invite-only programs.

Args: all_pages: If True (default), fetch all pages and return the complete list. page: Specific page to fetch when all_pages is False. private_only: If True, return only private (invite-only) programs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
all_pagesNo
private_onlyNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral transparency burden. It discloses meaningful pagination behavior (all_pages vs. page), the default of all_pages, and the private_only filtering behavior. It does not mention authentication requirements or rate limits, but as a straightforward read operation with an output schema, the disclosed behavior is reasonably complete.

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 front-loaded with the tool's core purpose, followed by a clean, minimal Args section. Every sentence adds value; there is no filler or redundant schema repetition.

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?

For a simple list tool with no required parameters, no nested objects, and an existing output schema, the description covers everything an agent needs to invoke it correctly. It specifies fetch-all behavior, page selection, and private-only filtering in a self-contained way.

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 description coverage is 0%, so the description is the only source of parameter meaning. It compensates well by explaining all three parameters beyond their types and defaults, especially the conditional relationship between all_pages and page. It stops short of detailing page size or response pagination metadata, but the core semantics are clear.

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 specific verb ('List') and a specific resource ('bug bounty programs you have access to'), including the key differentiator of private invite-only programs. This clearly distinguishes it from siblings like get_program, which retrieves a single program, and list_reports, which lists reports.

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?

The description explains argument-level behavior but provides no guidance on when to choose list_programs over get_program or list_reports, and mentions no alternatives or exclusions. An agent is left to infer the appropriate use case from the name and sibling list.

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