feedbackbasket-mcp-server 3.0.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/README.md +18 -7
  3. package/package.json +54 -54
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
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
+
14
+ ## [3.1.0] - 2026-08-22
15
+
16
+ ### Added
17
+
18
+ - Documented browser OAuth as the recommended remote Streamable HTTP setup.
19
+
20
+ ### Changed
21
+
22
+ - The STDIO package remains API-key based for local, CI, server, and unattended use.
23
+ - The package and shared contract now report version `3.1.0` with the same 31 operations.
24
+
3
25
  ## [3.0.0] - 2026-08-22
4
26
 
5
27
  ### Added
package/README.md CHANGED
@@ -1,10 +1,12 @@
1
1
  # FeedbackBasket MCP Server
2
2
 
3
- Model Context Protocol (MCP) server for [FeedbackBasket](https://feedbackbasket.com). Version `3.0.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
 
7
- You can use this stdio package or connect directly to `https://feedbackbasket.com/.well-known/mcp` with Streamable HTTP. Both transports use the same MCP key and contract.
7
+ Use this STDIO package with an MCP key for local processes, CI, servers, and unattended automation. For remote Streamable HTTP, add `https://feedbackbasket.com/.well-known/mcp` to the host, save it, and select **Authenticate**. Sign in, select an organization, select Read or Full access, select Selected projects or All projects, and select **Allow**. Browser OAuth is the recommended remote setup. It is not used by STDIO.
8
+
9
+ Read is selected by default. Full needs an explicit choice and an owner or administrator role. Selected projects limits access to the approved projects. All projects includes current and future projects and is required for project creation and team operations. Existing unrestricted MCP keys remain compatible. New browser grants never receive All-projects access silently. Never put an access token, refresh token, MCP key, or CLI token in source, prompts, logs, generated configuration, or final output.
8
10
 
9
11
  ## Installation & Setup
10
12
 
@@ -26,7 +28,7 @@ Set `FEEDBACKBASKET_API_KEY` in the environment that starts Claude Code. Then
26
28
  add the server without putting the key in the command or shell history:
27
29
 
28
30
  ```bash
29
- claude mcp add feedbackbasket -- npx -y feedbackbasket-mcp-server@3.0.0
31
+ claude mcp add feedbackbasket -- npx -y feedbackbasket-mcp-server@3.2.0
30
32
  ```
31
33
 
32
34
  On native Windows, use `cmd /c npx` as the command because Claude Code cannot
@@ -41,7 +43,7 @@ Add to your Claude Desktop config (`claude_desktop_config.json`):
41
43
  "mcpServers": {
42
44
  "feedbackbasket": {
43
45
  "command": "npx",
44
- "args": ["-y", "feedbackbasket-mcp-server@3.0.0"],
46
+ "args": ["-y", "feedbackbasket-mcp-server@3.2.0"],
45
47
  "env": { "FEEDBACKBASKET_API_KEY": "${FEEDBACKBASKET_API_KEY}" }
46
48
  }
47
49
  }
@@ -57,7 +59,7 @@ Add to your MCP config (`.cursor/mcp.json` or equivalent):
57
59
  "mcpServers": {
58
60
  "feedbackbasket": {
59
61
  "command": "npx",
60
- "args": ["-y", "feedbackbasket-mcp-server@3.0.0"],
62
+ "args": ["-y", "feedbackbasket-mcp-server@3.2.0"],
61
63
  "env": { "FEEDBACKBASKET_API_KEY": "${FEEDBACKBASKET_API_KEY}" }
62
64
  }
63
65
  }
@@ -74,7 +76,7 @@ the key out of process listings and saved command history.
74
76
  "mcpServers": {
75
77
  "feedbackbasket": {
76
78
  "command": "npx",
77
- "args": ["-y", "feedbackbasket-mcp-server@latest"],
79
+ "args": ["-y", "feedbackbasket-mcp-server@3.2.0"],
78
80
  "env": {
79
81
  "FEEDBACKBASKET_API_KEY": "${FEEDBACKBASKET_API_KEY}"
80
82
  }
@@ -88,25 +90,30 @@ the key out of process listings and saved command history.
88
90
  Once configured, ask your AI assistant:
89
91
 
90
92
  ### Project Overview
93
+
91
94
  - "Show me all my FeedbackBasket projects"
92
95
  - "How much feedback does each project have?"
93
96
 
94
97
  ### Bug Reports
98
+
95
99
  - "Show me all open bug reports"
96
100
  - "Get high severity bugs that haven't been addressed"
97
101
  - "Find bugs related to authentication"
98
102
 
99
103
  ### Feedback Analysis
104
+
100
105
  - "Show me negative feedback from my project"
101
106
  - "Get all feature requests"
102
107
  - "What are users asking for the most?"
103
108
  - "Show me high priority feedback"
104
109
 
105
110
  ### Search
111
+
106
112
  - "Search for feedback about 'payment issues'"
107
113
  - "Find feedback mentioning 'mobile'"
108
114
 
109
115
  ### Agentic Workflows
116
+
110
117
  - "Look at my bug reports and suggest which ones to fix first"
111
118
  - "Summarize this week's feedback trends"
112
119
  - "Are users happy with the new checkout flow?"
@@ -114,7 +121,7 @@ Once configured, ask your AI assistant:
114
121
  <!-- BEGIN GENERATED AGENT CAPABILITIES -->
115
122
  ## Agent capability contract
116
123
 
117
- Agent surface version: `3.0.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.
118
125
 
119
126
  | Product operation | CLI command | MCP tool | Required access | Confirm |
120
127
  | --- | --- | --- | --- | --- |
@@ -163,15 +170,18 @@ Agent surface version: `3.0.0`. The CLI and both MCP transports implement the sa
163
170
  ## Troubleshooting
164
171
 
165
172
  ### "Invalid or missing API key"
173
+
166
174
  - Check that your API key starts with `fb_key_`
167
175
  - Ensure the key is still active in Settings > MCP API Keys
168
176
  - Verify the key has access to at least one project
169
177
 
170
178
  ### "No projects found"
179
+
171
180
  - Make sure your API key has been granted access to projects
172
181
  - Check that you have projects in your FeedbackBasket account
173
182
 
174
183
  ### Connection Issues
184
+
175
185
  - Ensure Node.js 18+ is installed
176
186
  - Try clearing npx cache: `npx clear-npx-cache`
177
187
  - For local development, add `--base-url http://localhost:3000`
@@ -179,6 +189,7 @@ Agent surface version: `3.0.0`. The CLI and both MCP transports implement the sa
179
189
  ## API Key Management
180
190
 
181
191
  Visit [feedbackbasket.com/dashboard/settings](https://feedbackbasket.com/dashboard/settings) to:
192
+
182
193
  - Generate new API keys
183
194
  - Manage project access
184
195
  - View usage statistics
package/package.json CHANGED
@@ -1,54 +1,54 @@
1
- {
2
- "name": "feedbackbasket-mcp-server",
3
- "version": "3.0.0",
4
- "description": "MCP server for FeedbackBasket project data access",
5
- "type": "module",
6
- "main": "dist/index.js",
7
- "bin": {
8
- "feedbackbasket-mcp-server": "dist/index.js"
9
- },
10
- "scripts": {
11
- "build": "node node_modules/typescript/bin/tsc",
12
- "start": "node dist/index.js",
13
- "dev": "tsx src/index.ts",
14
- "test": "tsx --test tests/*.test.ts",
15
- "check:parity": "tsx scripts/check-parity.ts",
16
- "docs:generate": "tsx scripts/generate-capabilities.ts",
17
- "docs:check": "tsx scripts/generate-capabilities.ts --check",
18
- "prepublishOnly": "npm run check:parity && npm run docs:check && npm test && npm run build"
19
- },
20
- "keywords": [
21
- "mcp",
22
- "feedbackbasket",
23
- "feedback",
24
- "projects",
25
- "ai-assistant",
26
- "claude-desktop",
27
- "cursor"
28
- ],
29
- "author": "deifosv",
30
- "license": "MIT",
31
- "repository": {
32
- "type": "git",
33
- "url": "https://github.com/deifos/feedbackbasket-mcp.git"
34
- },
35
- "homepage": "https://feedbackbasket.com",
36
- "bugs": {
37
- "url": "https://github.com/deifos/feedbackbasket-mcp/issues"
38
- },
39
- "dependencies": {
40
- "@modelcontextprotocol/sdk": "1.30.0",
41
- "axios": "^1.19.0",
42
- "feedbackbasket-agent-contract": "3.0.0"
43
- },
44
- "devDependencies": {
45
- "@types/node": "^20.0.0",
46
- "tsx": "^4.0.0",
47
- "typescript": "^5.0.0"
48
- },
49
- "files": [
50
- "dist/**/*",
51
- "README.md",
52
- "CHANGELOG.md"
53
- ]
54
- }
1
+ {
2
+ "name": "feedbackbasket-mcp-server",
3
+ "version": "3.2.0",
4
+ "description": "MCP server for FeedbackBasket project data access",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "feedbackbasket-mcp-server": "dist/index.js"
9
+ },
10
+ "scripts": {
11
+ "build": "node node_modules/typescript/bin/tsc",
12
+ "start": "node dist/index.js",
13
+ "dev": "tsx src/index.ts",
14
+ "test": "tsx --test tests/*.test.ts",
15
+ "check:parity": "tsx scripts/check-parity.ts",
16
+ "docs:generate": "tsx scripts/generate-capabilities.ts",
17
+ "docs:check": "tsx scripts/generate-capabilities.ts --check",
18
+ "prepublishOnly": "npm run check:parity && npm run docs:check && npm test && npm run build"
19
+ },
20
+ "keywords": [
21
+ "mcp",
22
+ "feedbackbasket",
23
+ "feedback",
24
+ "projects",
25
+ "ai-assistant",
26
+ "claude-desktop",
27
+ "cursor"
28
+ ],
29
+ "author": "deifosv",
30
+ "license": "MIT",
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "https://github.com/deifos/feedbackbasket-mcp.git"
34
+ },
35
+ "homepage": "https://feedbackbasket.com",
36
+ "bugs": {
37
+ "url": "https://github.com/deifos/feedbackbasket-mcp/issues"
38
+ },
39
+ "dependencies": {
40
+ "@modelcontextprotocol/sdk": "1.30.0",
41
+ "axios": "^1.19.0",
42
+ "feedbackbasket-agent-contract": "3.2.0"
43
+ },
44
+ "devDependencies": {
45
+ "@types/node": "^20.0.0",
46
+ "tsx": "^4.0.0",
47
+ "typescript": "^5.0.0"
48
+ },
49
+ "files": [
50
+ "dist/**/*",
51
+ "README.md",
52
+ "CHANGELOG.md"
53
+ ]
54
+ }