buggazi 2.9.1 → 2.9.6
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 +21 -4
- 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 -1
- 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 +3 -3
- package/server.json +5 -5
package/server.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json",
|
|
3
3
|
"name": "io.github.jyswee/buggazi",
|
|
4
|
-
"description": "Project management for coding agents. Bugs, features, sprints. 71 tools,
|
|
4
|
+
"description": "Project management for coding agents. Bugs, features, sprints. 71 tools, stdio or remote SSE.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/jyswee/buggazi",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "2.9.
|
|
9
|
+
"version": "2.9.3",
|
|
10
10
|
"websiteUrl": "https://buggazi.ai",
|
|
11
11
|
"packages": [
|
|
12
12
|
{
|
|
13
13
|
"registryType": "npm",
|
|
14
14
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
15
15
|
"identifier": "buggazi",
|
|
16
|
-
"version": "2.9.
|
|
16
|
+
"version": "2.9.2",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|
|
19
19
|
},
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"headers": [
|
|
43
43
|
{
|
|
44
44
|
"name": "Authorization",
|
|
45
|
-
"description": "Bearer token using your Buggazi API key: 'Bearer bgz_...'",
|
|
46
|
-
"isRequired":
|
|
45
|
+
"description": "Bearer token using your Buggazi API key: 'Bearer bgz_...'. Optional: without one the server starts in onboarding mode and can self-signup via the buggazi_signup tool.",
|
|
46
|
+
"isRequired": false,
|
|
47
47
|
"isSecret": true
|
|
48
48
|
}
|
|
49
49
|
]
|