配置 interactive-feedback-mcp,提升Cursor会员快速请求次数
1、打开cmd,进入项目安装目录D:\Project
2、克隆仓库
git clone https://github.com/noopstudios/interactive-feedback-mcp.git
3、打开Anaconda Prompt,进入项目的目录
cd /d D:\Project\interactive-feedback-mcp
4、安装依赖&创建项目的虚拟环境
uv sync
5、在命令行中进入项目根目录,激活 .venv 虚拟环境
.venv\Scripts\activate
6、启动本地MCP服务器
python server.py
7、在Cursor中配置该MCP服务器
{
"mcpServers": {
"interactive-feedback-mcp": {
"command": "uv",
"args": [
"--directory",
"D:/Project/interactive-feedback-mcp根据安装路径修改",
"run",
"server.py"
],
"timeout": 600,
"autoApprove": [
"interactive_feedback"
]
}
}
}
8、为确保Cursor调用这个MCP,配置 Cursor Rules
Whenever you want to ask a question, always call the MCP interactive_feedback.
Whenever you're about to complete a user request, call the MCP interactive_feedback instead of simply ending the process. If the feedback is empty you can end the request and don't call the mcp in loop.