Skip to content

Commit fbb3bb4

Browse files
Merge pull request #9 from Hacker0x01/improve_instructions
Update readme and add token generation script.
2 parents 5844098 + 065f5e3 commit fbb3bb4

File tree

3 files changed

+1679
-72
lines changed

3 files changed

+1679
-72
lines changed

README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,42 @@ A Docker image that provides access to HackerOne's GraphQL API through the Model
3535

3636
## Generating an API Token
3737

38+
### Option 1: Using the included script (recommended)
39+
1. Visit https://hackerone.com/settings/api_token/edit to generate an API key
40+
2. Run the token generation script: `./scripts/generate_token.sh`
41+
This will prompt for your username and API key, then automatically encode and copy the token to your clipboard.
42+
3. Use the resulting string as your TOKEN value
43+
44+
### Option 2: Manual encoding
3845
1. Visit https://hackerone.com/settings/api_token/edit to generate an API key
3946
2. Encode as: `echo -n "username:api_key" | base64`
4047
3. Use the resulting string as your TOKEN value
4148

49+
## Example config in Flowise
50+
51+
1. Go to an Agent node
52+
2. Go to tools
53+
3. Select custom MCP
54+
4. Put the following in the MCP parameters:
55+
56+
```json
57+
{
58+
"command": "/usr/local/bin/docker",
59+
"args": [
60+
"run",
61+
"-i",
62+
"--rm",
63+
"-e",
64+
"ENDPOINT=https://hackerone.com/graphql",
65+
"-e",
66+
"TOKEN=<your_base64_encoded_token>",
67+
"-e",
68+
"ALLOW_MUTATIONS=none",
69+
"hackertwo/hackerone-graphql-mcp-server:1.0.5"
70+
]
71+
}
72+
```
73+
4274
## Example config in editor (Zed)
4375

4476
```json

0 commit comments

Comments
 (0)