Skip to main content
Glama

hackerone_list_hacker_invitations

Retrieve the list of hacker invitations for a private program by supplying its handle or numeric ID.

Instructions

Private-invite programs for an account (program-owner API; 403 on plain hacker token).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
programYesProgram handle or numeric id

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral disclosure burden. It does disclose an important failure mode (403 on plain hacker token), which is genuinely useful. It does not describe the response format or whether the list is paginated or filtered.

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?

The description is extremely compact and front-loads the core purpose before the auth caveat. No words are wasted, though adding a verb would improve clarity slightly.

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 one-parameter list endpoint, the auth caveat is the most important missing context and it is provided. However, with no output schema, the description does not indicate what the returned invitations look like or what fields are included.

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 coverage is 100%, so the input schema already documents the only parameter ('program'). The description adds no additional meaning or constraints beyond what the schema provides.

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 identifies a specific resource—private-invite programs for an account—and a specific scope, distinguishing it from general program listing. However, it lacks an explicit verb like 'list', relying on the tool name to convey the action.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides useful auth context ('program-owner API; 403 on plain hacker token'), which implies when it can be used successfully. It does not explicitly compare with sibling tools such as hackerone_list_programs or state when not to use it.

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