github-brain 1.19.0 → 1.20.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 +40 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -40,6 +40,12 @@ npx github-brain@latest
|
|
|
40
40
|
github-brain
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
+
Or with `npx`:
|
|
44
|
+
|
|
45
|
+
```sh
|
|
46
|
+
npx github-brain@latest
|
|
47
|
+
```
|
|
48
|
+
|
|
43
49
|
Launches the interactive TUI where you can:
|
|
44
50
|
|
|
45
51
|
1. **Setup** - Configure authentication and settings
|
|
@@ -83,6 +89,12 @@ Start the MCP server using the local database:
|
|
|
83
89
|
github-brain mcp
|
|
84
90
|
```
|
|
85
91
|
|
|
92
|
+
Or with `npx`:
|
|
93
|
+
|
|
94
|
+
```sh
|
|
95
|
+
npx github-brain@latest mcp
|
|
96
|
+
```
|
|
97
|
+
|
|
86
98
|
| Argument | Variable | Description |
|
|
87
99
|
| :------- | :------------- | :----------------------------------------- |
|
|
88
100
|
| `-o` | `ORGANIZATION` | GitHub organization. **Required.** |
|
|
@@ -105,6 +117,19 @@ Add to the Claude MCP configuration file:
|
|
|
105
117
|
}
|
|
106
118
|
```
|
|
107
119
|
|
|
120
|
+
Or with `npx`:
|
|
121
|
+
|
|
122
|
+
```json
|
|
123
|
+
{
|
|
124
|
+
"mcpServers": {
|
|
125
|
+
"github-brain": {
|
|
126
|
+
"type": "stdio",
|
|
127
|
+
"command": "npx",
|
|
128
|
+
"args": ["github-brain@latest", "mcp"]
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
```
|
|
132
|
+
|
|
108
133
|
Merge with existing `mcpServers` if present.
|
|
109
134
|
|
|
110
135
|
### VS Code
|
|
@@ -124,6 +149,21 @@ Add to the VS Code MCP configuration file:
|
|
|
124
149
|
}
|
|
125
150
|
```
|
|
126
151
|
|
|
152
|
+
Or with `npx`:
|
|
153
|
+
|
|
154
|
+
```json
|
|
155
|
+
{
|
|
156
|
+
"servers": {
|
|
157
|
+
"github-brain": {
|
|
158
|
+
"type": "stdio",
|
|
159
|
+
"command": "npx",
|
|
160
|
+
"args": ["github-brain@latest", "mcp"],
|
|
161
|
+
"version": "0.0.1"
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
```
|
|
166
|
+
|
|
127
167
|
Merge with existing `servers` if present.
|
|
128
168
|
|
|
129
169
|
## Development
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "github-brain",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.20.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.20.0",
|
|
27
|
+
"github-brain-darwin-x64": "1.20.0",
|
|
28
|
+
"github-brain-linux-arm64": "1.20.0",
|
|
29
|
+
"github-brain-linux-x64": "1.20.0",
|
|
30
|
+
"github-brain-windows": "1.20.0"
|
|
31
31
|
},
|
|
32
32
|
"files": [
|
|
33
33
|
"bin",
|