Skip to main content
Glama

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:

  1. A Feedbucket account

  2. Feedbucket installed on your website

  3. 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-mcp

2. Run the setup wizard

# For protected projects:
feedbucket-setup https://your-website.com YOUR_FEEDBUCKET_SECRET

# For public projects:
feedbucket-setup https://your-website.com

The 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_SECRET

Available Tools

Tool

Description

feedback_list

List and filter feedback with smart summarization

feedback_get

Get full details of a specific feedback item

feedback_stats

Quick project overview (total, resolved, by type, recent activity)

feedback_comment

Add comments to feedback items

feedback_resolve

Mark feedback as resolved

api_status

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 filter

feedback_get

Get complete details for a single feedback item:

Parameters:
- feedback_id (number, required): The feedback ID

Returns 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 feedback

feedback_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 ID

Setup Options

# 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.com

Manual 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_SECRET

Configure 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 --cursor

Extract credentials without configuring

npm run setup -- https://your-website.com YOUR_SECRET --extract

Full help

npm run setup -- --help

Manual 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.js

Cursor

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

FEEDBUCKET_PROJECT_ID

Yes

Project ID from the data-feedbucket attribute

FEEDBUCKET_PRIVATE_KEY

Yes

Private key for commenting/resolving (auto-fetched by setup)

FEEDBUCKET_API_KEY

No*

API key for protected projects (feedbucketKey from URL)

*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 build

Architecture

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

/projects/{id}

Fetch project with all feedback

POST

/feedback/{id}/comments

Add comment to feedback

PUT

/feedback/{id}/resolve

Mark feedback as resolved


License

MIT

Available Tools

6 tools
api_statusB

Check Feedbucket API connection status and configuration

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.2/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters4/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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

ParametersJSON Schema
NameRequiredDescriptionDefault
feedback_idYesThe feedback ID to comment on
commentYesThe comment text to add
reporter_nameNoName to use for the comment (optional, defaults to "Claude AI Assistant")
reporter_emailNoEmail to use for the comment (optional, defaults to "claude@anthropic.com")
resolveNoWhether this comment resolves the feedback (optional, defaults to false)

TDQS

C2.9/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
feedback_idYesThe feedback ID to retrieve

TDQS

A4.1/5.0
Behavior4/5

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.

Conciseness4/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
resolvedNoFilter by resolution status (true for resolved, false for unresolved)
limitNoNumber of feedback items to retrieve (default: 10, max: 50 for AI optimization)
offsetNoNumber of feedback items to skip for pagination (default: 0)
summaryNoReturn condensed summary format optimized for AI analysis (default: true, recommended)
page_filterNoFilter by page URL (partial match supported)
reporter_filterNoFilter by reporter name (partial match supported)
feedback_typeNoFilter by feedback type (screenshot, video, or text)
created_afterNoFilter feedback created after this ISO date (e.g., 2025-01-01T00:00:00Z)

TDQS

A3.6/5.0
Behavior3/5

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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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

ParametersJSON Schema
NameRequiredDescriptionDefault
feedback_idYesThe feedback ID to mark as resolved
reporter_nameNoName of the person resolving (optional, defaults to "Claude AI Assistant")
reporter_emailNoEmail of the person resolving (optional, defaults to "claude@anthropic.com")

TDQS

C2.9/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.5/5.0
Behavior3/5

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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters4/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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.

  1. 6 tool updatesv1.0.6
    • First observedapi_status
    • First observedfeedback_comment
    • First observedfeedback_get
    • First observedfeedback_list
    • First observedfeedback_resolve
    • First observedfeedback_stats

TDQS

A3.7/5.0
Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count5/5

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.

Completeness5/5

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

ActivityInactive
ResponsivenessNo issues

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

Related MCP Servers

Latest Blog Posts

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