Feedbucket MCP Server
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., "@Feedbucket MCP Servershow me the 5 most recent unresolved feedback items"
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.
Feedbucket MCP Server
A Model Context Protocol (MCP) server that lets AI assistants (Claude Code, Cursor) manage website feedback from Feedbucket.
Beta Software: This project is in beta. Use at your own risk. Please report issues on GitHub.
Prerequisites
Before installing this MCP server, make sure you have:
A Feedbucket account
Feedbucket installed on your website
Protected mode enabled (recommended):
Go to Widget Settings
Set "Trigger Feedbucket using a query string" to Yes
Save settings and copy your secret key
Related MCP server: Featurebase MCP Server
Quick Start
1. Install from npm
npm install -g feedbucket-mcp2. Run the setup wizard
# For protected projects:
feedbucket-setup https://your-website.com YOUR_FEEDBUCKET_SECRET
# For public projects:
feedbucket-setup https://your-website.comThe setup script automatically:
Extracts the project ID from your website HTML
Fetches the private key from Feedbucket API
Configures Claude Code and Cursor
3. Restart your IDE
Restart Claude Code or Cursor to load the new MCP server.
4. Start using it
Ask your AI assistant:
"Show me unresolved feedback from Feedbucket"
"What's the feedback summary for this project?"
"Add a comment to feedback #12345 saying we've fixed this"
Alternative: Clone from GitHub
If you prefer to clone the repository:
git clone https://github.com/swiftcomza/feedbucket-mcp.git
cd feedbucket-mcp
npm install && npm run build
npm run setup -- https://your-website.com YOUR_FEEDBUCKET_SECRETAvailable Tools
Tool | Description |
| List and filter feedback with smart summarization |
| Get full details of a specific feedback item |
| Quick project overview (total, resolved, by type, recent activity) |
| Add comments to feedback items |
| Mark feedback as resolved |
| Check API connection status |
feedback_list
List feedback with powerful filtering:
Parameters:
- resolved (boolean): Filter by resolution status
- limit (number): Items to retrieve (default: 10, max: 50)
- offset (number): Skip items for pagination
- summary (boolean): Return condensed format (default: true)
- page_filter (string): Filter by page URL (partial match)
- reporter_filter (string): Filter by reporter name
- feedback_type (string): 'screenshot', 'video', or 'text'
- created_after (string): ISO date filterfeedback_get
Get complete details for a single feedback item:
Parameters:
- feedback_id (number, required): The feedback IDReturns full text, all comments, attachments, browser/device info, and console logs.
feedback_stats
Get a quick project health overview:
Returns:
- Total feedback count
- Resolved vs unresolved breakdown
- Feedback by type (screenshot/video/text)
- Recent activity (7 days, 30 days)
- Top 5 pages with most feedbackfeedback_comment
Add a comment to a feedback item:
Parameters:
- feedback_id (number, required): The feedback ID
- comment (string, required): Comment text
- reporter_name (string): Defaults to "Claude AI Assistant"
- reporter_email (string): Defaults to "claude@anthropic.com"
- resolve (boolean): Also resolve the feedback (default: false)feedback_resolve
Mark a feedback item as resolved:
Parameters:
- feedback_id (number, required): The feedback IDSetup Options
Automatic Setup (recommended)
# Protected project - provide URL and secret
npm run setup -- https://your-website.com YOUR_SECRET
# Public project - just the URL
npm run setup -- https://your-website.comManual Project ID (if auto-detection fails)
# With project ID only (public)
npm run setup -- --project-id tMbUCuQ4FeFJVViMEPlb
# With project ID and API key (protected)
npm run setup -- --project-id tMbUCuQ4FeFJVViMEPlb --api-key YOUR_SECRETConfigure only one IDE
# Claude Code only
npm run setup -- https://your-website.com YOUR_SECRET --claude
# Cursor only
npm run setup -- https://your-website.com YOUR_SECRET --cursorExtract credentials without configuring
npm run setup -- https://your-website.com YOUR_SECRET --extractFull help
npm run setup -- --helpManual Configuration
If you prefer to configure manually:
Claude Code
Add to .mcp.json in your project root:
{
"mcpServers": {
"feedbucket": {
"command": "node",
"args": ["/path/to/feedbucket-mcp/dist/index.js"],
"env": {
"FEEDBUCKET_PROJECT_ID": "your-project-id",
"FEEDBUCKET_PRIVATE_KEY": "your-private-key",
"FEEDBUCKET_API_KEY": "your-api-key"
}
}
}
}Or use the CLI:
claude mcp add feedbucket \
-e FEEDBUCKET_PROJECT_ID="your-project-id" \
-e FEEDBUCKET_PRIVATE_KEY="your-private-key" \
-e FEEDBUCKET_API_KEY="your-api-key" \
-- node /path/to/feedbucket-mcp/dist/index.jsCursor
Add to .cursor/mcp.json in your project root:
{
"mcpServers": {
"feedbucket": {
"command": "node",
"args": ["/path/to/feedbucket-mcp/dist/index.js"],
"env": {
"FEEDBUCKET_PROJECT_ID": "your-project-id",
"FEEDBUCKET_PRIVATE_KEY": "your-private-key",
"FEEDBUCKET_API_KEY": "your-api-key"
}
}
}
}Environment Variables
Variable | Required | Description |
| Yes | Project ID from the |
| Yes | Private key for commenting/resolving (auto-fetched by setup) |
| No* | API key for protected projects ( |
*Required if your project uses query string protection.
Development
# Install dependencies
npm install
# Development mode (with hot reload)
npm run dev
# Type checking
npm run typecheck
# Linting
npm run lint
# Build for production
npm run buildArchitecture
This MCP server was reverse-engineered from the Feedbucket browser widget to provide:
Smart Summarization: Optimizes large datasets for AI consumption
Client-side Filtering: Reduces API calls by filtering locally
Full TypeScript: Strict mode with comprehensive types
Production Ready: Proper error handling and validation
API Endpoints Used
Method | Endpoint | Purpose |
GET |
| Fetch project with all feedback |
POST |
| Add comment to feedback |
PUT |
| Mark feedback as resolved |
License
MIT
Available Tools
6 toolsapi_statusB
Check Feedbucket API connection status and configuration
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions checking 'connection status and configuration' but doesn't describe what this entails (e.g., whether it performs a live test, returns cached data, requires authentication, or has rate limits). For a diagnostic tool with zero annotation coverage, this is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without any wasted words. It is appropriately sized and front-loaded, making it easy for an agent to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (0 parameters, no output schema, no annotations), the description is minimally adequate but lacks depth. It doesn't explain what the check returns (e.g., success/failure, details on configuration) or behavioral aspects, which could be important for a status-checking tool. However, the low complexity means it's not severely incomplete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters, and schema description coverage is 100%, so no parameter documentation is needed. The description doesn't add parameter semantics, but with no parameters, the baseline is 4 as it adequately handles the absence of inputs without unnecessary detail.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('Check') and resource ('Feedbucket API connection status and configuration'), making it immediately understandable. However, it doesn't differentiate from sibling tools (all feedback-related), which are unrelated to API status checking, so it doesn't need sibling differentiation but could mention this is the only API diagnostic tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives or in what context. It implies usage for checking API status but doesn't specify scenarios like troubleshooting, pre-operation verification, or monitoring, leaving the agent to infer usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
feedback_commentC
Add a comment to a specific feedback item to ask for clarification or provide updates
| Name | Required | Description | Default |
|---|---|---|---|
| feedback_id | Yes | The feedback ID to comment on | |
| comment | Yes | The comment text to add | |
| reporter_name | No | Name to use for the comment (optional, defaults to "Claude AI Assistant") | |
| reporter_email | No | Email to use for the comment (optional, defaults to "claude@anthropic.com") | |
| resolve | No | Whether this comment resolves the feedback (optional, defaults to false) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool adds a comment but doesn't mention permissions required, whether this is a mutating operation, rate limits, or what happens to the feedback item after commenting. For a tool that modifies data with zero annotation coverage, this is insufficient behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that states the action, target, and purpose without unnecessary words. It's appropriately sized and front-loaded with the core functionality.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a mutation tool with 5 parameters, no annotations, and no output schema, the description is incomplete. It doesn't cover behavioral aspects like side effects, error conditions, or return values, leaving significant gaps for an agent to understand how to use it effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 5 parameters thoroughly. The description doesn't add any parameter-specific details beyond what's in the schema (e.g., it doesn't explain feedback_id format or comment length limits). Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Add a comment') and target resource ('to a specific feedback item'), with purpose ('to ask for clarification or provide updates'). It doesn't explicitly distinguish from sibling tools like feedback_resolve, which also modifies feedback items, but the purpose is specific enough to understand its function.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like feedback_resolve (which might resolve feedback) or other feedback-related tools. The description mentions the purpose but doesn't specify prerequisites, constraints, or comparative usage scenarios with sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
feedback_getA
Get full details of a specific feedback item including all comments, attachments, and session data. IMPORTANT: For screenshot feedback, the response includes a "resource" field with the screenshot URL. You should download this image to a temporary file and view it to see the visual context including the green dot showing where the user clicked. The screenshot provides crucial context for understanding the feedback.
| Name | Required | Description | Default |
|---|---|---|---|
| feedback_id | Yes | The feedback ID to retrieve |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden and adds valuable behavioral context: it discloses that the response includes a 'resource' field with screenshot URLs for certain feedback types, and provides specific instructions about downloading and viewing images to see visual context (green dot showing user clicks). This goes beyond basic read operation disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded with the core purpose, followed by important behavioral details. The second sentence could be slightly more concise, but overall it's efficient with zero wasted sentences.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter read tool with no output schema, the description provides good completeness: it explains what data is returned (comments, attachments, session data), special handling for screenshots, and why the visual context matters. It could mention response format or error cases, but covers the essential context well.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% (the single parameter 'feedback_id' is fully described in the schema), so the baseline is 3. The description doesn't add any parameter-specific information beyond what's in the schema, but doesn't need to given the complete schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Get full details') and resource ('a specific feedback item'), listing the included data types (comments, attachments, session data). It distinguishes from sibling tools like feedback_list (which presumably lists multiple items) and feedback_comment (which focuses on comments).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context by specifying 'a specific feedback item' (vs. listing multiple), but doesn't explicitly state when to use this tool versus alternatives like feedback_stats or feedback_resolve. It provides some guidance about screenshot handling but not about tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
feedback_listA
Fetch all feedback items from the Feedbucket project with intelligent filtering for AI consumption. Automatically optimizes data to prevent overwhelming responses. Each feedback item may include a screenshot URL in the "resource" field - use feedback_get to retrieve full details and view the screenshot for visual context.
| Name | Required | Description | Default |
|---|---|---|---|
| resolved | No | Filter by resolution status (true for resolved, false for unresolved) | |
| limit | No | Number of feedback items to retrieve (default: 10, max: 50 for AI optimization) | |
| offset | No | Number of feedback items to skip for pagination (default: 0) | |
| summary | No | Return condensed summary format optimized for AI analysis (default: true, recommended) | |
| page_filter | No | Filter by page URL (partial match supported) | |
| reporter_filter | No | Filter by reporter name (partial match supported) | |
| feedback_type | No | Filter by feedback type (screenshot, video, or text) | |
| created_after | No | Filter feedback created after this ISO date (e.g., 2025-01-01T00:00:00Z) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses that the tool 'automatically optimizes data to prevent overwhelming responses' and mentions screenshot URLs in the 'resource' field, which are useful behavioral insights. However, it doesn't cover important aspects like authentication requirements, rate limits, error conditions, or whether this is a read-only operation (though 'fetch' implies it).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized with two sentences that each earn their place. The first sentence states the core purpose and key features, while the second provides important usage guidance about sibling tools. It's front-loaded with the main functionality and avoids unnecessary repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 8 parameters, no annotations, and no output schema, the description provides adequate but incomplete context. It covers the purpose, filtering capabilities, and relationship to feedback_get, but doesn't address the return format, pagination behavior beyond the offset parameter, error handling, or authentication requirements. The lack of output schema means the description should ideally explain what the response contains.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, so the schema already documents all 8 parameters thoroughly. The description adds minimal parameter semantics beyond what's in the schema - it mentions 'intelligent filtering' and 'AI optimization' which relate to the parameters but don't provide additional syntax or format details. The baseline of 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool fetches feedback items with intelligent filtering for AI consumption, distinguishing it from sibling tools like feedback_get (which retrieves full details) and feedback_stats (which provides statistics). However, it doesn't explicitly differentiate from feedback_comment or feedback_resolve beyond the 'list' vs 'comment/resolve' distinction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool (fetching all feedback items with filtering) and explicitly mentions using feedback_get for retrieving full details and viewing screenshots. It doesn't specify when NOT to use it or compare with all sibling alternatives like feedback_stats or feedback_comment.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
feedback_resolveC
Mark a feedback item as resolved after actioning it
| Name | Required | Description | Default |
|---|---|---|---|
| feedback_id | Yes | The feedback ID to mark as resolved | |
| reporter_name | No | Name of the person resolving (optional, defaults to "Claude AI Assistant") | |
| reporter_email | No | Email of the person resolving (optional, defaults to "claude@anthropic.com") |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It states the tool marks feedback as resolved, implying a mutation, but lacks details on permissions, side effects (e.g., status changes), or error handling. The phrase 'after actioning it' hints at a workflow but doesn't clarify behavioral traits like idempotency or response format.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero waste—'Mark a feedback item as resolved after actioning it'—front-loading the core action. Every word earns its place, making it appropriately sized for a simple tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and no output schema, the description is incomplete for a mutation tool. It lacks details on what 'resolved' entails (e.g., status update, timestamp), potential errors, or return values. The context signals (3 params, 100% schema coverage) don't compensate for missing behavioral and output information.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents parameters (feedback_id, reporter_name, reporter_email). The description adds no parameter-specific details beyond implying feedback_id is required for resolution. Baseline 3 is appropriate as the schema handles semantics, with no extra value from the description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Mark as resolved') and resource ('a feedback item'), specifying the action and target. It distinguishes from siblings like feedback_comment (add comment) and feedback_get (retrieve), though not explicitly. However, it doesn't fully differentiate from all siblings (e.g., feedback_stats might involve resolution status).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides minimal guidance with 'after actioning it', implying this should be used post-resolution, but offers no explicit when-to-use vs. alternatives like feedback_comment for updates or feedback_list for viewing. No prerequisites or exclusions are mentioned, leaving usage context vague.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
feedback_statsA
Get a quick summary of project feedback statistics - total count, resolved/unresolved breakdown, feedback by type, and recent activity
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It indicates this is a read operation ('get') and describes the output content (statistics breakdowns), but doesn't cover aspects like performance characteristics, error conditions, or data freshness. The description doesn't contradict any annotations, but it's moderately informative given the lack of structured annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that efficiently conveys the tool's purpose and output scope. It's front-loaded with the core action ('get a quick summary') and lists key statistics without unnecessary elaboration. However, it could be slightly more concise by avoiding the dash list format, but overall it's highly efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (0 parameters, no output schema, no annotations), the description is reasonably complete for a read-only statistical tool. It specifies what statistics are returned, which compensates for the lack of output schema. However, it doesn't address potential behavioral nuances like data scope (e.g., all projects vs. current project) or update frequency, leaving some contextual gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters with 100% schema description coverage, so the schema already fully documents the absence of inputs. The description adds no parameter-specific information, which is appropriate here. Baseline for 0 parameters is 4, as the description doesn't need to compensate for any gaps in parameter documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('get a quick summary') and resources ('project feedback statistics'), including breakdowns by status, type, and recent activity. It distinguishes itself from siblings like feedback_get or feedback_list by focusing on aggregated statistics rather than individual feedback items or lists. However, it doesn't explicitly contrast with all siblings (e.g., api_status).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context through 'quick summary' and the statistical nature of the output, suggesting it's for overview purposes rather than detailed inspection. However, it lacks explicit guidance on when to use this tool versus alternatives like feedback_list (which might provide raw data) or feedback_get (for specific items), and doesn't mention prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
6 tool updates
v1.0.6- First observed
api_status - First observed
feedback_comment - First observed
feedback_get - First observed
feedback_list - First observed
feedback_resolve - First observed
feedback_stats
TDQS
Each tool has a clearly distinct purpose with no overlap: api_status checks connectivity, feedback_comment adds comments, feedback_get retrieves details, feedback_list fetches items, feedback_resolve marks items as resolved, and feedback_stats provides summaries. The tools target different actions on the feedback resource, making misselection unlikely.
All tools follow a consistent verb_noun pattern with 'feedback_' prefix for feedback-related operations (e.g., feedback_comment, feedback_get) and 'api_' for the status check. This predictable naming scheme enhances readability and agent usability.
With 6 tools, the server is well-scoped for managing feedback in a Feedbucket project. Each tool earns its place by covering essential operations like listing, getting, commenting, resolving, and checking stats, plus an API status tool, without being overwhelming or insufficient.
The tool set provides complete CRUD/lifecycle coverage for feedback management: list (feedback_list), read (feedback_get), update (feedback_comment, feedback_resolve), and delete is implied through resolution. Additional tools for stats and API status enhance functionality, leaving no obvious gaps for agents to handle feedback workflows.
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 Connectors
Connect your AI assistant to Produktly. Read changelogs, feedback responses, and roadmap items.
Create and publish online forms, read responses and add webhooks on formbuilder.com from AI agents.
Connect to a Sleekplan workspace for customer feedback, roadmap, changelog, and surveys. Feedback: search and filter posts, read threads with votes and voters, create and update, merge duplicates, check for similar requests, pull stats. Triage: apply tags and statuses, assign owners, reply in comments. Surveys: read NPS, CSAT, and multi-question responses and summaries. Changelog: draft and publish release notes for what you ship. Users: manage end users and segments! Find out more at https://sleekplan.com/mcp/
Capture feature requests and bug reports from chat into a searchable, AI-categorized backlog.
Related MCP Servers
- FlicenseAqualityNot gradedmaintenanceEnables interaction with Canny.io customer feedback platform through natural language. Supports board management, post creation/updating, search functionality, and comprehensive feedback management operations.63-
- AlicenseBqualityDmaintenanceEnables interaction with Featurebase API to manage feature requests, feedback posts, comments, and upvotes. Supports creating, updating, and organizing customer feedback through natural language commands.125058MIT
- AlicenseAqualityDmaintenanceEnables interaction with Fider customer feedback platforms, supporting post management, commenting, tagging, and status updates through natural language commands.161MIT
- FlicenseAqualityDmaintenanceEnables AI assistants to access TestFlight beta tester feedback, including screenshots, crash logs, and text comments from App Store Connect. It works across any platform without requiring Xcode, using official API keys and optional browser automation for full text feedback.8-
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/swiftcomza/feedbucket-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server