feedbackbasket-mcp-server 3.1.0 → 3.2.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/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.2.0] - 2026-09-04
4
+
5
+ ### Added
6
+
7
+ - Added structured close reasons and optional internal close notes to feedback tools.
8
+
9
+ ### Changed
10
+
11
+ - Closing feedback now requires a close reason. The `OTHER` reason also requires a close note.
12
+ - The package and shared contract now report version `3.2.0`.
13
+
3
14
  ## [3.1.0] - 2026-08-22
4
15
 
5
16
  ### Added
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # FeedbackBasket MCP Server
2
2
 
3
- Model Context Protocol (MCP) server for [FeedbackBasket](https://feedbackbasket.com). Version `3.1.0` provides the same 31 product operations as the FeedbackBasket CLI and live Streamable HTTP server.
3
+ Model Context Protocol (MCP) server for [FeedbackBasket](https://feedbackbasket.com). Version `3.2.0` provides the same 31 product operations as the FeedbackBasket CLI and live Streamable HTTP server.
4
4
 
5
5
  Use a read key for queries. Use a full key for approved writes. A project-restricted key can access only its allowed projects. Project creation and team operations need an unrestricted full key. Each high-impact operation needs `confirm: true`.
6
6
 
@@ -28,7 +28,7 @@ Set `FEEDBACKBASKET_API_KEY` in the environment that starts Claude Code. Then
28
28
  add the server without putting the key in the command or shell history:
29
29
 
30
30
  ```bash
31
- claude mcp add feedbackbasket -- npx -y feedbackbasket-mcp-server@3.1.0
31
+ claude mcp add feedbackbasket -- npx -y feedbackbasket-mcp-server@3.2.0
32
32
  ```
33
33
 
34
34
  On native Windows, use `cmd /c npx` as the command because Claude Code cannot
@@ -43,7 +43,7 @@ Add to your Claude Desktop config (`claude_desktop_config.json`):
43
43
  "mcpServers": {
44
44
  "feedbackbasket": {
45
45
  "command": "npx",
46
- "args": ["-y", "feedbackbasket-mcp-server@3.1.0"],
46
+ "args": ["-y", "feedbackbasket-mcp-server@3.2.0"],
47
47
  "env": { "FEEDBACKBASKET_API_KEY": "${FEEDBACKBASKET_API_KEY}" }
48
48
  }
49
49
  }
@@ -59,7 +59,7 @@ Add to your MCP config (`.cursor/mcp.json` or equivalent):
59
59
  "mcpServers": {
60
60
  "feedbackbasket": {
61
61
  "command": "npx",
62
- "args": ["-y", "feedbackbasket-mcp-server@3.1.0"],
62
+ "args": ["-y", "feedbackbasket-mcp-server@3.2.0"],
63
63
  "env": { "FEEDBACKBASKET_API_KEY": "${FEEDBACKBASKET_API_KEY}" }
64
64
  }
65
65
  }
@@ -76,7 +76,7 @@ the key out of process listings and saved command history.
76
76
  "mcpServers": {
77
77
  "feedbackbasket": {
78
78
  "command": "npx",
79
- "args": ["-y", "feedbackbasket-mcp-server@3.1.0"],
79
+ "args": ["-y", "feedbackbasket-mcp-server@3.2.0"],
80
80
  "env": {
81
81
  "FEEDBACKBASKET_API_KEY": "${FEEDBACKBASKET_API_KEY}"
82
82
  }
@@ -121,7 +121,7 @@ Once configured, ask your AI assistant:
121
121
  <!-- BEGIN GENERATED AGENT CAPABILITIES -->
122
122
  ## Agent capability contract
123
123
 
124
- Agent surface version: `3.1.0`. The CLI and both MCP transports implement the same 31 product operations.
124
+ Agent surface version: `3.2.0`. The CLI and both MCP transports implement the same 31 product operations.
125
125
 
126
126
  | Product operation | CLI command | MCP tool | Required access | Confirm |
127
127
  | --- | --- | --- | --- | --- |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "feedbackbasket-mcp-server",
3
- "version": "3.1.0",
3
+ "version": "3.2.0",
4
4
  "description": "MCP server for FeedbackBasket project data access",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -39,7 +39,7 @@
39
39
  "dependencies": {
40
40
  "@modelcontextprotocol/sdk": "1.30.0",
41
41
  "axios": "^1.19.0",
42
- "feedbackbasket-agent-contract": "3.1.0"
42
+ "feedbackbasket-agent-contract": "3.2.0"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@types/node": "^20.0.0",