home / mcp / feedback collector mcp server

Feedback Collector MCP Server

Feedback MCP for AI

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "ceciliomichael-feedbackjs-mcp": {
      "command": "node",
      "args": [
        "/absolute/path/to/mcp-server.js"
      ]
    }
  }
}

You run the Feedback Collector MCP Tool to gather user feedback via text and images from an Electron app, integrated into your MCP workflow for centralized management and routing.

How to use

To use this MCP server with an MCP client, you connect the client to the Feedback Collector server so users can submit feedback with text and image support. You can configure the MCP client to point to the server, then use the client’s UI to collect feedback, view responses, and manage quick actions.

Add the MCP server configuration into your client setup so the client knows how to reach the server. The server runs as a local process and is invoked by the MCP client using a stdio channel.

Example MCP configuration for a local server (stdio):

{
  "mcpServers": {
    "feedback_collector": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-server.js"]
    }
  }
}

How to install

Prerequisites: Node.js and npm must be installed on your development machine.

Step-by-step commands to set up the server locally:

git clone https://github.com/ceciliomichael/feedback-js.git
cd feedbackjs-mcp
npm install
npm run make

Additional notes

Cross-platform building lets you target Windows, macOS, and Linux. You can build for the current platform or for all platforms in one command.

# Build for the current platform only
npm run make

# Build for specific platforms
npm run make:win
npm run make:mac
npm run make:linux

# Build for all platforms
npm run make:all

Security and build notes

macOS builds from non-macOS systems require additional setup for code signing and compatibility. If you need macOS builds from Windows or Linux, consider using a CI service like GitHub Actions to sign and package the app.