gitstandup-mcp 1.0.0 → 1.0.1
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 +43 -0
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -178,6 +178,49 @@ Repository paths are stored in `~/.gitstandup/config.json`:
|
|
|
178
178
|
|
|
179
179
|
You can edit this file manually or use the `add_repos` and `remove_repos` tools.
|
|
180
180
|
|
|
181
|
+
## 📦 Publishing to MCP Registry
|
|
182
|
+
|
|
183
|
+
This server is discoverable via the [GitHub MCP Registry](https://github.com/mcp) and [OSS MCP Community Registry](https://github.com/modelcontextprotocol/registry).
|
|
184
|
+
|
|
185
|
+
### For Maintainers
|
|
186
|
+
|
|
187
|
+
To publish a new version:
|
|
188
|
+
|
|
189
|
+
1. **Update version in both files:**
|
|
190
|
+
|
|
191
|
+
```bash
|
|
192
|
+
# Update version in package.json and server.json
|
|
193
|
+
npm version patch # or minor/major
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
2. **Build and publish to npm:**
|
|
197
|
+
|
|
198
|
+
```bash
|
|
199
|
+
npm run build
|
|
200
|
+
npm publish
|
|
201
|
+
```
|
|
202
|
+
|
|
203
|
+
3. **Install mcp-publisher (first time only):**
|
|
204
|
+
|
|
205
|
+
```bash
|
|
206
|
+
brew install mcp-publisher
|
|
207
|
+
# OR
|
|
208
|
+
curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher && sudo mv mcp-publisher /usr/local/bin/
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
4. **Authenticate (first time only):**
|
|
212
|
+
|
|
213
|
+
```bash
|
|
214
|
+
mcp-publisher login github
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
5. **Update server.json version to match package.json and publish:**
|
|
218
|
+
```bash
|
|
219
|
+
mcp-publisher publish
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
The server will automatically appear in both the GitHub MCP Registry and the community registry, making it discoverable in VS Code, Claude Desktop, and other MCP-compatible clients.
|
|
223
|
+
|
|
181
224
|
## 🤝 Contributing
|
|
182
225
|
|
|
183
226
|
Contributions are welcome! Feel free to:
|
package/package.json
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gitstandup-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "MCP server for generating daily standup notes from git commits",
|
|
5
|
+
"mcpName": "io.github.muba00/gitstandup",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"bin": {
|
|
7
8
|
"gitstandup-mcp": "./build/index.js"
|
|
8
9
|
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/muba00/gitstandup.git"
|
|
13
|
+
},
|
|
9
14
|
"scripts": {
|
|
10
15
|
"build": "tsc && chmod +x build/index.js",
|
|
11
16
|
"dev": "tsc --watch",
|