User Feedback
The User Feedback MCP server facilitates human-in-the-loop workflows by integrating user feedback into AI-powered tools like Cline and Cursor.
Capabilities:
Request User Feedback: Prompts users for input during task execution, particularly for reviewing project changes
Automatic Task Execution: Executes pre-configured commands based on the
.user-feedback.jsonconfigurationConfiguration Management: Saves and loads settings via configuration files for customizable behavior
Testing Environment: Provides a web interface for testing interactions requiring user feedback
Seamless Integration: Integrates with AI tools through JSON configuration specifying commands, arguments, and timeouts
Hosts the MCP server repository where users can access the code and installation instructions.
Used as part of the default command configuration to run development environments that can be tested via the user feedback interface.
Recommended for handling multi-step commands in the configuration, allowing for complex execution workflows when testing user interfaces.
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., "@User Feedbackask the user if the new login screen looks correct"
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.
User Feedback MCP
Simple MCP Server to enable a human-in-the-loop workflow in tools like Cline and Cursor. This is especially useful for developing desktop applications that require complex user interactions to test.

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.
This will ensure Cline uses this MCP server to request user feedback before marking the task as completed.
Related MCP server: mcp-connect
.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
}This configuration will be loaded on startup and if execute_automatically is enabled your command will be instantly executed (you will not have to click Run manually). For multi-step commands you should use something like Task.
Installation (Cline)
To install the MCP server in Cline, follow these steps (see screenshot):

Install uv globally:
Windows:
pip install uvLinux/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 (see screenshot).
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.pyThis will open a web interface at http://localhost:5173 and allow you to interact with the MCP tools for testing.
Available tools
<use_mcp_tool>
<server_name>github.com/mrexodia/user-feedback-mcp</server_name>
<tool_name>user_feedback</tool_name>
<arguments>
{
"project_directory": "C:/MCP/user-feedback-mcp",
"summary": "I've implemented the changes you requested."
}
</arguments>
</use_mcp_tool>Available Tools
1 tooluser_feedbackC
Request user feedback for a given project directory and summary
| Name | Required | Description | Default |
|---|---|---|---|
| project_directory | Yes | Full path to the project directory | |
| summary | Yes | Short, one-line summary of the changes |
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 states the tool 'requests' feedback but doesn't explain how this is done (e.g., via UI prompt, email, logging), what permissions are needed, whether it's interactive or automated, or what happens after the request. This leaves critical behavioral aspects unspecified.
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 unnecessary words. It is front-loaded and appropriately sized, making it easy 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 no annotations and no output schema, the description is incomplete. It doesn't cover behavioral aspects like how feedback is requested or what the tool returns, leaving gaps in understanding the tool's operation and results. This is inadequate for a tool with potential complexity in feedback mechanisms.
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%, with clear descriptions for both parameters (project directory path and summary). The description adds no additional meaning beyond the schema, such as format examples or constraints, so it meets the baseline for high schema coverage without compensating further.
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 ('Request user feedback') and specifies the target ('for a given project directory and summary'), making the purpose understandable. However, it doesn't distinguish from siblings since none exist, and 'request' could be interpreted as initiating a feedback collection process rather than retrieving existing feedback, which is somewhat ambiguous.
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, such as the context for requesting feedback, prerequisites, or alternatives. With no sibling tools, this isn't a major issue, but it lacks any usage context, leaving the agent to infer appropriate scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
With only one tool, there is no possibility of ambiguity or overlap between tools. The tool 'user_feedback' has a singular, clear purpose, so an agent cannot misselect among alternatives.
The single tool name 'user_feedback' follows a consistent snake_case pattern. Since there is only one tool, there is no inconsistency in naming conventions to evaluate.
A single tool is too few for most server purposes, as it limits functionality and suggests a thin or incomplete surface. For a server named 'User Feedback', one tool may not adequately cover potential operations like viewing, managing, or analyzing feedback.
The tool set is severely incomplete for a 'User Feedback' domain. It only provides a way to request feedback, missing essential operations such as retrieving, updating, deleting, or listing feedback, which are necessary for a full CRUD lifecycle.
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
MCP server to assist with JxBrowser development.
Remote MCP server for supportsheep: run AI interviews and manage support content for your blog.
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
MCP server for progressive tool usage at any scale (see https://klavis.ai)
Related MCP Servers
- AlicenseAqualityBmaintenanceMCP Server that enables LLMs to interact with the local filesystem.1379614MIT
- AlicenseNot gradedqualityBmaintenanceA dead simple MCP server for exposing your app functions to AI agents like Claude Desktop.215MIT
- AlicenseBqualityBmaintenanceLocal + remote terminal interaction control MCP Server. Lets AI agents control interactive TUI programs the way a human would.2913MIT
- AlicenseBqualityCmaintenanceMCP server for reading and responding to local macOS Messages from clients like Claude Desktop and Codex.5MIT
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/mrexodia/user-feedback-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server