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/README.md +15 -0
- package/dist/api.js +1 -1
- package/dist/commands/admin.js +1 -1
- package/dist/commands/audit.js +1 -1
- package/dist/commands/auth.js +1 -1
- package/dist/commands/bugs.js +1 -1
- package/dist/commands/channels.js +1 -1
- package/dist/commands/claim.js +1 -1
- package/dist/commands/contracts.js +1 -1
- package/dist/commands/directory.js +1 -1
- package/dist/commands/features.js +1 -1
- package/dist/commands/feedback.js +1 -1
- package/dist/commands/init.js +1 -1
- package/dist/commands/migrate.js +1 -1
- package/dist/commands/projects.js +1 -0
- package/dist/commands/reset.js +1 -1
- package/dist/commands/settings.js +1 -1
- package/dist/commands/signup.js +1 -1
- package/dist/commands/snapshot.js +1 -1
- package/dist/commands/sprints.js +1 -1
- package/dist/commands/stats.js +1 -1
- package/dist/commands/status.js +1 -1
- package/dist/commands/subscription.js +1 -1
- package/dist/commands/wall.js +1 -1
- package/dist/config.js +1 -1
- package/dist/contractHint.js +1 -1
- package/dist/format.js +1 -1
- package/dist/main.js +1 -1
- package/dist/mcp-tools.js +1 -1
- package/dist/mcp.js +1 -1
- package/dist/upload.js +1 -1
- package/package.json +2 -1
- package/server.json +52 -0
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
|
+
}
|