MCP server for HackerOne triage teams. Full read/write access to reports, triage workflows, severity ratings, assignments, and program management — all from your AI assistant. Single Go binary, zero external dependencies.

Source: c0tton-fluff/hackerone-mcp

Architecture

Claude Code  -->  stdio  -->  h1-client (Go)  -->  REST API v1  -->  HackerOne

Single binary. Handles pagination, rate limiting, and API authentication internally.

Install

go install github.com/c0tton-fluff/hackerone-mcp/cmd/h1-client@latest

Or build from source:

git clone https://github.com/c0tton-fluff/hackerone-mcp.git
cd hackerone-mcp
go build -o h1-client ./cmd/h1-client

Auth

VariableRequiredDescription
HACKERONE_API_IDYesAPI username (Settings > API Token)
HACKERONE_API_TOKENYesAPI token
HACKERONE_PROGRAMNoDefault program handle

Store credentials securely and use the included launch.sh wrapper:

security add-generic-password -s hackerone-api-id -a hackerone -w "your-api-id"
security add-generic-password -s hackerone-api-token -a hackerone -w "your-api-token"
security add-generic-password -s hackerone-program -a hackerone -w "your-program-handle"

Claude Code Config

{
  "mcpServers": {
    "hackerone": {
      "command": "h1-client",
      "args": [],
      "env": {
        "HACKERONE_API_ID": "your-api-id",
        "HACKERONE_API_TOKEN": "your-api-token",
        "HACKERONE_PROGRAM": "your-program-handle"
      }
    }
  }
}

Tools (14)

Read

ToolWhat it does
h1_list_programsList accessible programs
h1_list_reportsList/filter reports (state, severity, reporter, assignee, dates, keyword, sort)
h1_get_reportFull report details with timeline and attachments
h1_get_scopeProgram scope and policy
h1_list_membersProgram team members
h1_report_summaryAggregate stats by state/severity/bounty
h1_download_attachmentDownload report attachments
h1_incremental_activitiesRecent activity feed across reports

Triage

ToolWhat it does
h1_add_commentAdd internal or public comment
h1_update_stateChange report state (triage, resolve, close, duplicate)
h1_update_severitySet CVSS rating
h1_assign_reportAssign to team member
h1_add_summaryAdd or update report summary
h1_update_titleUpdate report title

Use Cases

Daily triage: “Show me new reports from the last 24 hours, sorted by severity. Triage the critical ones and assign to the right team member.”

Duplicate detection: “Get the details on report #12345. Search for similar reports about XSS on the login page. If it’s a duplicate, close it with a reference to the original.”

Program health: “Give me a summary of our program — open reports by severity, average time to triage, and bounty spend this month.”

Bulk operations: “List all reports assigned to the person who just left the team and reassign them to me.”

Design

  • Zero external dependencies — stdlib net/http only
  • Built-in pagination for list operations
  • Rate limit handling with automatic backoff
  • Structured JSON responses with consistent error format
  • Keychain-based credential storage for macOS