HackerOne MCP Server
Provides tools for interacting with HackerOne's API, enabling users to list and retrieve reports, list programs, and get program scopes and details.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@HackerOne MCP ServerList my open HackerOne reports"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
HackerOne MCP Server
An MCP (Model Context Protocol) server that connects Claude, Codex, and other MCP clients to the HackerOne Hackers API.
Tools Available
21 tools cover the complete documented Hacker API surface:
Hacktivity search
Reports: list, get, and create
Payments: balance, earnings, and payouts
Programs: list, get, structured scopes, scope exclusions, and weaknesses
Report intents: list, get, create, update, delete, submit, and attachment management
Related MCP server: platform-adapter-mcp
Setup
1. Install dependencies
cd hackerone-mcp
npm install2. Get your HackerOne API credentials
Create a new API token
Note your username and the generated token
Configuration
Claude Desktop
Edit your Claude Desktop config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"hackerone": {
"command": "node",
"args": ["/absolute/path/to/hackerone-mcp/index.js"],
"env": {
"HACKERONE_API_USERNAME": "your_api_token_identifier",
"HACKERONE_API_TOKEN": "your_api_token"
}
}
}
}Restart Claude Desktop after saving.
Claude Code (CLI)
Run once to add the MCP server to your Claude Code config:
claude mcp add hackerone \
-e HACKERONE_API_USERNAME=your_api_token_identifier \
-e HACKERONE_API_TOKEN=your_api_token \
-- node /absolute/path/to/hackerone-mcp/index.jsOr set credentials as shell environment variables first:
export HACKERONE_API_USERNAME=your_api_token_identifier
export HACKERONE_API_TOKEN=your_api_token
claude mcp add hackerone -- node /absolute/path/to/hackerone-mcp/index.jsVerify it's registered:
claude mcp listCodex CLI
Run once to add the MCP server to Codex:
codex mcp add hackerone \
--env HACKERONE_API_USERNAME=your_api_token_identifier \
--env HACKERONE_API_TOKEN=your_api_token \
-- node /absolute/path/to/hackerone-mcp/index.jsOr configure it directly in config.toml:
macOS/Linux:
~/.codex/config.tomlWindows:
%USERPROFILE%\.codex\config.toml
[mcp_servers.hackerone]
command = "node"
args = ["/absolute/path/to/hackerone-mcp/index.js"]
[mcp_servers.hackerone.env]
HACKERONE_API_USERNAME = "your_api_token_identifier"
HACKERONE_API_TOKEN = "your_api_token"Verify it's registered:
codex mcp listIn Codex TUI, run /mcp to view active MCP servers.
Other MCP Clients (generic stdio)
Pass the environment variables when launching:
HACKERONE_API_USERNAME=your_api_token_identifier \
HACKERONE_API_TOKEN=your_api_token \
node /path/to/hackerone-mcp/index.jsOr configure your client's MCP settings with:
command:
nodeargs:
["/path/to/hackerone-mcp/index.js"]env:
{ "HACKERONE_API_USERNAME": "...", "HACKERONE_API_TOKEN": "..." }
Example prompts
Once connected, you can ask your MCP client (Claude, Codex, etc.) things like:
"List my HackerOne reports"
"Search Hacktivity for disclosed critical reports"
"Get the full details of report 12345"
"What's in scope for the nodejs program?"
"Show me the policy and bounty info for the security program"
"List all programs I have access to"
Security Notes
Never hardcode your API token in the source files
Always use environment variables or your client's secrets manager
Your API token provides full access to your HackerOne account — treat it like a password
Reliability settings (optional)
If you see intermittent failures (timeouts, 429 rate limits, transient 5xx), you can tune these environment variables:
HACKERONE_TIMEOUT_MS(default:20000) — per-request timeoutHACKERONE_MAX_RETRIES(default:2) — retries for 429/5xx and transient network errorsHACKERONE_API_BASE(default:https://api.hackerone.com/v1) — API base URL
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityDmaintenanceProvides read-only access to HackerOne reports, program scopes, and bounty earnings through the HackerOne API. It enables users to analyze hunting patterns, check asset eligibility, and retrieve report details or triage conversations via natural language.Last updated940
- Flicense-qualityCmaintenanceWraps multiple bug bounty platform APIs (HackerOne, Bugcrowd, etc.) behind a uniform MCP tool surface, enabling LLM agents to query programs, scope, and briefs across platforms through a single interface.Last updated
- FlicenseAqualityBmaintenanceA local, read-only MCP server that connects your HackerOne researcher account to Claude Desktop and Claude Code, helping you find targets, analyze program scopes, review reports and earnings, and draft bug reports.Last updated175
- Flicense-qualityCmaintenanceConnects Claude to the HackerOne Hacker API, enabling program listing, scope retrieval, report management, and balance checks via natural language.Last updated6
Related MCP Connectors
MCP server for Pentest-Tools.com: run scans, manage findings and reports via your preffered LLM.
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Hosted Amazon Seller Central and Amazon Ads MCP server for Claude, ChatGPT, Cursor, and agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/alpernae/hackerone-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server