@@ -14,7 +14,7 @@ A Docker image that provides access to HackerOne's GraphQL API through the Model
1414     -e ENDPOINT=" https://hackerone.com/graphql" 
1515     -e TOKEN=" <your_base64_encoded_token>" 
1616     -e ALLOW_MUTATIONS=" none" 
17-      hackertwo/hackerone-graphql-mcp-server:latest 
17+      hackertwo/hackerone-graphql-mcp-server:1.0.5 
1818   ``` 
1919
2020## Docker Image Tags  
@@ -40,26 +40,25 @@ A Docker image that provides access to HackerOne's GraphQL API through the Model
40403 .  Use the resulting string as your TOKEN value
4141
4242## Example config in editor (Zed)  
43+ 
4344``` json 
4445{
4546  "context_servers" : {
4647    "hackerone-graphql-mcp-server" : {
47-       "command" : {
48-         "path" : " /usr/local/bin/docker" 
49-         "args" : [
50-           " run" 
51-           " -i" 
52-           " --rm" 
53-           " -e" 
54-           " ENDPOINT=https://hackerone.com/graphql" 
55-           " -e" 
56-           " TOKEN=<your_base64_encoded_token>" 
57-           " -e" 
58-           " ALLOW_MUTATIONS=none" 
59-           " hackertwo/hackerone-graphql-mcp-server:latest" 
60-         ]
61-       },
62-       "settings" : {}
48+       "source" : " custom" 
49+       "command" : " /usr/local/bin/docker" 
50+       "args" : [
51+         " run" 
52+         " -i" 
53+         " --rm" 
54+         " -e" 
55+         " ENDPOINT=https://hackerone.com/graphql" 
56+         " -e" 
57+         " TOKEN=<your_base64_encoded_token>" 
58+         " -e" 
59+         " ALLOW_MUTATIONS=none" 
60+         " hackertwo/hackerone-graphql-mcp-server:1.0.5" 
61+       ]
6362    }
6463  }
6564}
@@ -106,3 +105,25 @@ docker buildx rm multiarch
106105``` sh 
107106curl https://hackerone.com/schema.graphql -o graphql/schema.graphql
108107``` 
108+ 
109+ ### Debugging  
110+ 
111+ 1 .  Run MCP inspector:
112+ 
113+ ``` 
114+ npx @modelcontextprotocol/inspector 
115+ ``` 
116+ 
117+ 2 .  Connect to the HackerOne MCP server from the UI:
118+ 
119+ Command:
120+ 
121+ ``` sh 
122+ /usr/local/bin/docker
123+ ``` 
124+ 
125+ Arguments:
126+ 
127+ ``` sh 
128+ run -i --rm -e ENDPOINT=http://host.docker.internal:3000/graphql -e TOKEN=< TOKEN>  -e ALLOW_MUTATIONS=all hackertwo/hackerone-graphql-mcp-server:1.0.5
129+ ``` 
0 commit comments