buggazi 2.8.11 → 2.9.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/server.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json",
3
+ "name": "io.github.jyswee/buggazi",
4
+ "description": "Project management for coding agents. Bugs, features, sprints. 71 tools, local stdio or remote SSE. As easy as git.",
5
+ "repository": {
6
+ "url": "https://github.com/jyswee/buggazi",
7
+ "source": "github"
8
+ },
9
+ "version": "2.9.1",
10
+ "websiteUrl": "https://buggazi.ai",
11
+ "packages": [
12
+ {
13
+ "registryType": "npm",
14
+ "registryBaseUrl": "https://registry.npmjs.org",
15
+ "identifier": "buggazi",
16
+ "version": "2.9.1",
17
+ "transport": {
18
+ "type": "stdio"
19
+ },
20
+ "runtimeHint": "npx",
21
+ "runtimeArguments": [
22
+ {
23
+ "type": "positional",
24
+ "value": "mcp-serve",
25
+ "isRequired": true
26
+ }
27
+ ],
28
+ "environmentVariables": [
29
+ {
30
+ "name": "BGZ_API_KEY",
31
+ "description": "Buggazi API key (bgz_...). Optional: without a key the server starts in onboarding mode and can self-signup.",
32
+ "isRequired": false,
33
+ "isSecret": true
34
+ }
35
+ ]
36
+ }
37
+ ],
38
+ "remotes": [
39
+ {
40
+ "type": "sse",
41
+ "url": "https://mcp.buggazi.com/sse",
42
+ "headers": [
43
+ {
44
+ "name": "Authorization",
45
+ "description": "Bearer token using your Buggazi API key: 'Bearer bgz_...'",
46
+ "isRequired": true,
47
+ "isSecret": true
48
+ }
49
+ ]
50
+ }
51
+ ]
52
+ }