User Feedback
Created 5 months ago
User Feedback MCP Simple server for human-in-the-loop workflows.
development
location
documentation
public
What is User Feedback?
Simple MCP Server to enable a human-in-the-loop workflow in tools like Cline and Cursor.
Documentation
User Feedback MCP
Prompt Engineering
For the best results, add the following to your custom prompt:
Before completing the task, use the user_feedback MCP tool to ask the user for feedback.
.user-feedback.json
Hitting Save Configuration creates a .user-feedback.json file in your project directory that looks like this:
{ "command": "npm run dev", "execute_automatically": false }
Installation (Cline)
To install the MCP server in Cline, follow these steps:
- Install uv globally:
- Windows:
pip install uv - Linux/Mac:
curl -LsSf https://astral.sh/uv/install.sh | sh
- Clone this repository, for this example
C:\MCP\user-feedback-mcp. - Navigate to the Cline MCP Servers configuration.
- Click on the Installed tab.
- Click on Configure MCP Servers, which will open
cline_mcp_settings.json. - Add the
user-feedback-mcpserver:
{ "mcpServers": { "github.com/mrexodia/user-feedback-mcp": { "command": "uv", "args": [ "--directory", "c:\MCP\user-feedback-mcp", "run", "server.py" ], "timeout": 600, "autoApprove": [ "user_feedback" ] } } }
Development
uv run fastmcp dev server.py
This will open a web interface at http://localhost:5173 and allow you to interact with the MCP tools for testing.
Server Config
{
"mcpServers": {
"user-feedback-server": {
"command": "npx",
"args": [
"user-feedback"
]
}
}
}
Links & Status
Project Info
Hosted
Featured
Created At:
Jul 02, 2025
Updated At:
Aug 07, 2025
Author:
mrexodia
Category:
community
License:
MIT
Tags:
development
location
documentation