Interactive Feedback MCP
Интерактивная обратная связь MCP
Разработан Фабио Феррейрой ( @fabiomlferreira ). Посетите dotcursorrules.com , чтобы узнать больше об улучшениях в области разработки ИИ.
Простой MCP-сервер для включения рабочего процесса с участием человека в инструментах разработки с поддержкой ИИ, таких как Cursor . Этот сервер позволяет запускать команды, просматривать их вывод и предоставлять текстовую обратную связь непосредственно ИИ. Он также совместим с Cline и Windsurf .


Оперативное проектирование
Для достижения наилучших результатов добавьте следующее в пользовательскую подсказку в вашем помощнике на основе искусственного интеллекта. Вы можете добавить это в правило или непосредственно в подсказку (например, курсор):
Если вы хотите задать вопрос, всегда звоните MCP
interactive_feedback.
Всякий раз, когда вы собираетесь завершить запрос пользователя, вызовите MCPinteractive_feedbackвместо того, чтобы просто завершить процесс. Если обратная связь пуста, вы можете завершить запрос и не вызывать mcp in loop.
Это гарантирует, что ваш помощник на основе искусственного интеллекта будет использовать этот сервер MCP для запроса отзывов пользователей, прежде чем отмечать задачу как выполненную.
Related MCP server: Spec-driven Development MCP Server
💡 Зачем это использовать?
Направляя помощника на проверку с пользователем вместо того, чтобы разветвляться на спекулятивные, дорогостоящие вызовы инструментов, этот модуль может радикально сократить количество премиум-запросов (например, вызовы инструментов OpenAI) на таких платформах, как Cursor. В некоторых случаях он помогает объединить то, что могло бы быть до 25 вызовов инструментов, в один запрос с обратной связью — экономя ресурсы и повышая производительность.
Конфигурация
Этот сервер MCP использует QSettings Qt для хранения конфигурации на уровне проекта. Это включает:
Команда бежать.
Следует ли автоматически выполнять команду при следующем запуске этого проекта (см. флажок «Выполнять автоматически при следующем запуске»).
Состояние видимости (показано/скрыто) раздела команд (сохраняется немедленно при переключении).
Геометрия и состояние окна (общие настройки пользовательского интерфейса).
Эти настройки обычно хранятся в местах, зависящих от платформы (например, реестр в Windows, файлы plist в macOS, файлы конфигурации в ~/.config или ~/.local/share в Linux) под названием организации «FabioFerreira» и именем приложения «InteractiveFeedbackMCP» с уникальной группой для каждого каталога проекта.
Кнопка «Сохранить конфигурацию» в пользовательском интерфейсе в первую очередь сохраняет текущую команду, введенную в поле ввода команды, и состояние флажка «Выполнять автоматически при следующем запуске» для активного проекта. Видимость раздела команд сохраняется автоматически при его переключении. Общий размер и положение окна сохраняются при закрытии приложения.
Установка (Курсор)

Предварительные условия:
Python 3.11 или новее.
uv (менеджер пакетов Python). Установите его с помощью:
Windows:
pip install uvLinux/Mac:
curl -LsSf https://astral.sh/uv/install.sh | sh
Получить код:
Клонируйте этот репозиторий:
git clone https://github.com/noopstudios/interactive-feedback-mcp.gitИли загрузите исходный код.
Перейдите в каталог:
cd path/to/interactive-feedback-mcp
Установить зависимости:
uv sync(создает виртуальную среду и устанавливает пакеты)
Запустите MCP-сервер:
uv run server.py
Настроить в курсоре:
Cursor обычно позволяет указывать пользовательские серверы MCP в своих настройках. Вам нужно будет указать Cursor на этот работающий сервер. Точный механизм может отличаться, поэтому обратитесь к документации Cursor для добавления пользовательских MCP.
Ручная настройка (например, через
mcp.json). Не забудьте изменить путь/Users/fabioferreira/Dev/scripts/interactive-feedback-mcpна фактический путь, по которому вы клонировали репозиторий в своей системе.{ "mcpServers": { "interactive-feedback-mcp": { "command": "uv", "args": [ "--directory", "/Users/fabioferreira/Dev/scripts/interactive-feedback-mcp", "run", "server.py" ], "timeout": 600, "autoApprove": [ "interactive_feedback" ] } } }При настройке в Cursor вы можете использовать идентификатор сервера, например
interactive-feedback-mcp.
Для Клайна/Виндсерфинга
Применяются аналогичные принципы настройки. Вы можете настроить команду сервера (например, uv run server.py с правильным аргументом --directory , указывающим на каталог проекта) в настройках MCP соответствующего инструмента, используя interactive-feedback-mcp в качестве идентификатора сервера.
Разработка
Чтобы запустить сервер в режиме разработки с веб-интерфейсом для тестирования:
uv run fastmcp dev server.pyОткроется веб-интерфейс, который позволит вам взаимодействовать с инструментами MCP для тестирования.
Доступные инструменты
Вот пример того, как помощник на основе искусственного интеллекта будет вызывать инструмент interactive_feedback :
<use_mcp_tool>
<server_name>interactive-feedback-mcp</server_name>
<tool_name>interactive_feedback</tool_name>
<arguments>
{
"project_directory": "/path/to/your/project",
"summary": "I've implemented the changes you requested and refactored the main module."
}
</arguments>
</use_mcp_tool>Благодарности и контакты
Если вы считаете эту интерактивную обратную связь MCP полезной, лучший способ выразить свою признательность — подписаться на Фабио Феррейру в X @fabiomlferreira .
Если у вас есть вопросы, предложения или вы просто хотите поделиться своим опытом использования, смело пишите на X!
Кроме того, посетите сайт dotcursorrules.com , где вы найдете дополнительные ресурсы по улучшению процесса разработки с использованием ИИ.
Available Tools
1 toolinteractive_feedbackB
Request interactive 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 present, so the description alone must disclose behavior. It only says 'request' without explaining whether the tool blocks, returns feedback, or opens a UI, leaving significant ambiguity.
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, well-front-loaded sentence with no extraneous words. Every part is necessary to convey the core purpose.
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 output schema and simple parameters, the description should explain the outcome or return value of the request. It does not mention what the agent can expect after invoking the tool, leaving a significant gap.
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 coverage is 100% with clear parameter descriptions. The tool description does not add additional meaning beyond the schema, so baseline score of 3 applies.
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 verb 'Request' and the resource 'interactive feedback', scoped to a project directory and summary, which is specific and unambiguous.
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?
No usage guidelines are provided, but there are no sibling tools to differentiate. The description implies usage for requesting feedback but lacks explicit when-to-use or alternative context.
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 tool update
v1.0.0- First observed
interactive_feedback
TDQS
With only one tool, there is no possibility of confusion between tools. The single tool 'interactive_feedback' serves a unique purpose.
The single tool name follows a clear verb_noun pattern ('interactive_feedback'), and there are no other names to compare for inconsistency.
The server is dedicated to interactive feedback, and one tool is perfectly scoped for this narrow purpose. Adding more tools would be unnecessary.
For the stated purpose of requesting interactive feedback on a project directory and summary, this single tool fully covers the expected functionality with no obvious gaps.
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
Persistent memory and cross-session learning for AI coding assistants (hosted remote MCP).
MCP server for building and testing AI agents with multi-model experimentation and insights.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Related MCP Servers
- FlicenseBqualityDmaintenanceMCP server that enables human-in-the-loop workflow in AI-assisted development tools by allowing users to provide direct feedback to AI agents without consuming additional premium requests.11-
- AlicenseBqualityDmaintenanceAn MCP server that enables AI-powered IDEs to implement a structured development workflow from requirements gathering to code implementation, guiding users through goal collection, requirements specification, design documentation, task planning, and execution.91721MIT
- FlicenseCqualityCmaintenanceA Node.js MCP server that enables human-in-the-loop workflow for AI development tools, allowing users to run commands, view output, and provide textual feedback directly to AI assistants.128-
- FlicenseAqualityCmaintenanceA feedback-oriented MCP server with a Web UI for AI development workflows, enabling interactive confirmations and reducing speculative tool calls.23-
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/noopstudios/interactive-feedback-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server