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 that allows AI assistants to query your project feedback, bug reports, and AI analysis data.
Features
List Projects — View all projects with feedback counts by status and category
Get Feedback — Retrieve feedback with filtering by category, status, sentiment, priority, and more
Get Bug Reports — Fetch bug reports with severity classification and statistics
Search Feedback — Search across all feedback content using text queries
AI-Enriched Data — Every feedback item includes AI summary, priority score, category, and sentiment
Browser Context — See page URL, browser, OS, and device info for each submission
Secure — API key authentication with project-level access control
Related MCP server: Linear MCP Server
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 (
fb_key_...) — you'll only see it once!
2. Configure Your Editor
Claude Code (CLI)
claude mcp add feedbackbasket -- npx -y feedbackbasket-mcp-server@latest --api-key fb_key_YOUR_KEYClaude Desktop
Add to your Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"feedbackbasket": {
"command": "npx",
"args": ["-y", "feedbackbasket-mcp-server@latest", "--api-key", "fb_key_YOUR_KEY"]
}
}
}Cursor / Windsurf
Add to your MCP config (.cursor/mcp.json or equivalent):
{
"mcpServers": {
"feedbackbasket": {
"command": "npx",
"args": ["-y", "feedbackbasket-mcp-server@latest", "--api-key", "fb_key_YOUR_KEY"]
}
}
}Environment Variable (Alternative)
Instead of passing --api-key as an argument, you can use an environment variable:
{
"mcpServers": {
"feedbackbasket": {
"command": "npx",
"args": ["-y", "feedbackbasket-mcp-server@latest"],
"env": {
"FEEDBACKBASKET_API_KEY": "fb_key_YOUR_KEY"
}
}
}
}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?"
Available Tools
list_projects
Lists all projects accessible by your API key with summary statistics.
get_feedback
Retrieves feedback with optional filtering:
projectId— Filter by specific projectcategory—BUG,FEATURE_REQUEST,IMPROVEMENT, orQUESTIONstatus—OPEN,UNDER_REVIEW,PLANNED,IN_PROGRESS,COMPLETE, orCLOSEDsentiment—POSITIVE,NEGATIVE, orNEUTRALsearch— Text search in feedback contentlimit— Number of results (default: 20, max: 100)offset— Pagination offsetincludeNotes— Include internal team notes
Each feedback item includes:
AI summary and priority score (0-100)
Category and sentiment classification
Page URL where feedback was submitted
Browser, OS, and device information
get_bug_reports
Fetches bug reports with computed severity:
projectId— Filter by specific projectstatus— Filter by bug statusseverity—high,medium, orlow(based on sentiment)search— Text search in bug reportslimit/offset— PaginationincludeNotes— Include internal team notes
Returns bug statistics: total count, breakdown by severity and status.
search_feedback
Searches feedback content across all accessible projects:
query— Search text (required)projectId— Limit to specific projectcategory— Filter by categorylimit— Number of results (default: 10, max: 50)
Security & Privacy
Read-only access — MCP server can only read data, never modify
Project-level permissions — Grant access only to specific projects
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
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.