├── .github ├── cursor-example.jpg ├── interactive_feedback_1.jpg └── interactive_feedback_2.jpg ├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── feedback_ui.py ├── images ├── attribution.txt └── feedback.png ├── pyproject.toml ├── server.py └── uv.lock /.github/cursor-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopstudios/interactive-feedback-mcp/HEAD/.github/cursor-example.jpg -------------------------------------------------------------------------------- /.github/interactive_feedback_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopstudios/interactive-feedback-mcp/HEAD/.github/interactive_feedback_1.jpg -------------------------------------------------------------------------------- /.github/interactive_feedback_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopstudios/interactive-feedback-mcp/HEAD/.github/interactive_feedback_2.jpg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopstudios/interactive-feedback-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopstudios/interactive-feedback-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopstudios/interactive-feedback-mcp/HEAD/README.md -------------------------------------------------------------------------------- /feedback_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopstudios/interactive-feedback-mcp/HEAD/feedback_ui.py -------------------------------------------------------------------------------- /images/attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopstudios/interactive-feedback-mcp/HEAD/images/attribution.txt -------------------------------------------------------------------------------- /images/feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopstudios/interactive-feedback-mcp/HEAD/images/feedback.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopstudios/interactive-feedback-mcp/HEAD/pyproject.toml -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopstudios/interactive-feedback-mcp/HEAD/server.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopstudios/interactive-feedback-mcp/HEAD/uv.lock --------------------------------------------------------------------------------