github-brain 1.4.0 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -32
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -18,14 +18,6 @@ GitHub Brain complements (but does not replace) the [official GitHub MCP server]
|
|
|
18
18
|
|
|
19
19
|

|
|
20
20
|
|
|
21
|
-
GitHub Brain also includes a web-based UI for ultra-fast search:
|
|
22
|
-
|
|
23
|
-

|
|
24
|
-
|
|
25
|
-
And a Raycast extension:
|
|
26
|
-
|
|
27
|
-

|
|
28
|
-
|
|
29
21
|
GitHub Brain is [programmed in Markdown](https://github.blog/ai-and-ml/generative-ai/spec-driven-development-using-markdown-as-a-programming-language-when-building-with-ai/).
|
|
30
22
|
|
|
31
23
|
## Installation
|
|
@@ -123,20 +115,6 @@ github-brain mcp -o my-org
|
|
|
123
115
|
| `-o` | `ORGANIZATION` | GitHub organization. **Required.** |
|
|
124
116
|
| `-m` | | Home directory. Default: `~/.github-brain` |
|
|
125
117
|
|
|
126
|
-
### `ui`
|
|
127
|
-
|
|
128
|
-
Start the web UI for quick searches (alternative to MCP).
|
|
129
|
-
|
|
130
|
-
```sh
|
|
131
|
-
github-brain ui -o my-org
|
|
132
|
-
```
|
|
133
|
-
|
|
134
|
-
| Argument | Variable | Description |
|
|
135
|
-
| :------- | :------------- | :------------------------------------------|
|
|
136
|
-
| `-o` | `ORGANIZATION` | GitHub organization. **Required.** |
|
|
137
|
-
| `-m` | | Home directory. Default: `~/.github-brain` |
|
|
138
|
-
| `-p` | `UI_PORT` | Port. Default: `8080`. |
|
|
139
|
-
|
|
140
118
|
### Additional Arguments
|
|
141
119
|
|
|
142
120
|
**Version:**
|
|
@@ -185,16 +163,6 @@ Add to the VS Code MCP configuration file:
|
|
|
185
163
|
|
|
186
164
|
Merge with existing `servers` if present.
|
|
187
165
|
|
|
188
|
-
## Raycast Extension
|
|
189
|
-
|
|
190
|
-
Run the Raycast extension with:
|
|
191
|
-
|
|
192
|
-
```sh
|
|
193
|
-
scripts/raycast
|
|
194
|
-
```
|
|
195
|
-
|
|
196
|
-
The extension uses the MCP server to search GitHub data.
|
|
197
|
-
|
|
198
166
|
## Development
|
|
199
167
|
|
|
200
168
|
`scripts/run` builds and runs `github-brain` with the checkout directory as home `-m` (database in `db/`, config in `.env`).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "github-brain",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "MCP server for searching GitHub discussions, issues, and pull requests",
|
|
5
5
|
"bin": {
|
|
6
6
|
"github-brain": "bin/github-brain.js"
|
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
"author": "wham",
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"optionalDependencies": {
|
|
26
|
-
"github-brain-darwin-arm64": "1.
|
|
27
|
-
"github-brain-darwin-x64": "1.
|
|
28
|
-
"github-brain-linux-arm64": "1.
|
|
29
|
-
"github-brain-linux-x64": "1.
|
|
30
|
-
"github-brain-windows": "1.
|
|
26
|
+
"github-brain-darwin-arm64": "1.6.0",
|
|
27
|
+
"github-brain-darwin-x64": "1.6.0",
|
|
28
|
+
"github-brain-linux-arm64": "1.6.0",
|
|
29
|
+
"github-brain-linux-x64": "1.6.0",
|
|
30
|
+
"github-brain-windows": "1.6.0"
|
|
31
31
|
},
|
|
32
32
|
"files": [
|
|
33
33
|
"bin",
|