FeedbackBasket MCP Server
The FeedbackBasket MCP Server enables AI assistants to query and analyze project feedback, bug reports, and AI-enriched data with secure, read-only access.
List Projects (
list_projects): Retrieve all projects accessible by your API key, including summary statistics such as feedback counts by status and category.Get Feedback (
get_feedback): Fetch feedback items with optional filtering by project, category (BUG,FEATURE_REQUEST,IMPROVEMENT,QUESTION), status (OPEN,UNDER_REVIEW,PLANNED,IN_PROGRESS,COMPLETE,CLOSED), sentiment (POSITIVE,NEGATIVE,NEUTRAL), priority, and text search. Each item includes AI-generated summaries, priority scores (0–100), category classifications, and browser/OS/device context. Optionally include internal team notes viaincludeNotes.Get Bug Reports (
get_bug_reports): Retrieve bug reports with filtering by project, status, severity (high,medium,low), and text search. Returns severity/status breakdowns and optionally includes internal notes.Search Feedback (
search_feedback): Perform a text search across all accessible feedback content, with optional filtering by project and category. Returns up to 50 results.Pagination: Control result sets with
limit(up to 100 for feedback/bugs) andoffsetparameters.Security: API key authentication with project-level permissions and read-only data access.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@FeedbackBasket MCP Servershow me high severity bug reports from the last week"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
FeedbackBasket MCP Server
Model Context Protocol (MCP) server for FeedbackBasket. Version 3.1.0 provides the same 31 product operations as the FeedbackBasket CLI and live Streamable HTTP server.
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.
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.
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.
Installation & Setup
1. Generate API Key
Log into feedbackbasket.com
Go to Settings (sidebar)
Scroll to MCP API Keys section
Click New API Key
Name your key (e.g., "Claude Code", "Cursor", "Windsurf")
Select projects to grant access to (or leave empty for all projects)
Copy the generated key. It is shown only once. Keep it out of source, logs, prompts, and command history.
2. Configure Your Editor
Claude Code (CLI)
Set FEEDBACKBASKET_API_KEY in the environment that starts Claude Code. Then
add the server without putting the key in the command or shell history:
claude mcp add feedbackbasket -- npx -y feedbackbasket-mcp-server@3.1.0On native Windows, use cmd /c npx as the command because Claude Code cannot
start npx directly there.
Claude Desktop
Add to your Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"feedbackbasket": {
"command": "npx",
"args": ["-y", "feedbackbasket-mcp-server@3.1.0"],
"env": { "FEEDBACKBASKET_API_KEY": "${FEEDBACKBASKET_API_KEY}" }
}
}
}Cursor / Windsurf
Add to your MCP config (.cursor/mcp.json or equivalent):
{
"mcpServers": {
"feedbackbasket": {
"command": "npx",
"args": ["-y", "feedbackbasket-mcp-server@3.1.0"],
"env": { "FEEDBACKBASKET_API_KEY": "${FEEDBACKBASKET_API_KEY}" }
}
}
}Environment Variable
Use an environment variable instead of the --api-key argument. This keeps
the key out of process listings and saved command history.
{
"mcpServers": {
"feedbackbasket": {
"command": "npx",
"args": ["-y", "feedbackbasket-mcp-server@3.1.0"],
"env": {
"FEEDBACKBASKET_API_KEY": "${FEEDBACKBASKET_API_KEY}"
}
}
}
}Related MCP server: Sentry MCP Server
Usage Examples
Once configured, ask your AI assistant:
Project Overview
"Show me all my FeedbackBasket projects"
"How much feedback does each project have?"
Bug Reports
"Show me all open bug reports"
"Get high severity bugs that haven't been addressed"
"Find bugs related to authentication"
Feedback Analysis
"Show me negative feedback from my project"
"Get all feature requests"
"What are users asking for the most?"
"Show me high priority feedback"
Search
"Search for feedback about 'payment issues'"
"Find feedback mentioning 'mobile'"
Agentic Workflows
"Look at my bug reports and suggest which ones to fix first"
"Summarize this week's feedback trends"
"Are users happy with the new checkout flow?"
Agent capability contract
Agent surface version: 3.1.0. The CLI and both MCP transports implement the same 31 product operations.
Product operation | CLI command | MCP tool | Required access | Confirm |
|
|
|
| No |
|
|
|
| No |
|
|
|
| No |
|
|
|
| No |
|
|
|
| Yes |
|
|
|
| No |
|
|
|
| No |
|
|
|
| No |
|
|
|
| No |
|
|
|
| No |
|
|
|
| Yes |
|
|
|
| Yes |
|
|
|
| No |
|
|
|
| No |
|
|
|
| No |
|
|
|
| No |
|
|
|
| No |
|
|
|
| Yes |
|
|
|
| No |
|
|
|
| Yes |
|
|
|
| No |
|
|
|
| No |
|
|
|
| No |
|
|
|
| No |
|
|
|
| No |
|
|
|
| Yes |
|
|
|
| No |
|
|
|
| No |
|
|
|
| No |
|
|
|
| Yes |
|
|
|
| Yes |
Security & Privacy
Explicit access — Read keys query data. Full keys can use approved write operations.
Project-level permissions — Restricted keys can access only selected projects.
Confirmation — High-impact operations do not run without explicit confirmation.
API key authentication — Secure token-based authentication
Usage tracking — Monitor API key usage from your Settings page
Revokable access — Deactivate or delete API keys instantly
Troubleshooting
"Invalid or missing API key"
Check that your API key starts with
fb_key_Ensure the key is still active in Settings > MCP API Keys
Verify the key has access to at least one project
"No projects found"
Make sure your API key has been granted access to projects
Check that you have projects in your FeedbackBasket account
Connection Issues
Ensure Node.js 18+ is installed
Try clearing npx cache:
npx clear-npx-cacheFor local development, add
--base-url http://localhost:3000
API Key Management
Visit feedbackbasket.com/dashboard/settings to:
Generate new API keys
Manage project access
View usage statistics
Activate/deactivate keys
Delete keys
Links
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityFmaintenanceA Model Context Protocol server that enables AI assistants to interact with Feishu project management systems, allowing retrieval of project views and work items.612MIT

Sentry MCP Serverofficial
FlicenseBqualityFmaintenanceA Model Context Protocol server that lets AI assistants interact with the Sentry API to retrieve and analyze error data, manage projects, and monitor application performance.1111- FlicenseNot gradedqualityNot gradedmaintenanceModel Context Protocol server that enables interaction with GitHub repositories, issues, pull requests, and search functionality through natural language.1
- FlicenseBqualityDmaintenanceA Model Context Protocol server providing access to WeWork project management data, enabling project search, task analysis, and statistics retrieval through Claude and other LLM clients.6
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
A Model Context Protocol (MCP) application for automated GitHub PR analysis and issue management.…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/deifos/feedbackbasket-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server