interactive-choice-mcp

interactive-choice-mcp

Enables AI to present options and launch an interactive web or terminal interface for user selection, then return the results to the AI.

Category
Visit Server

README

Interactive Choice MCP

<div align="left"> <p> <a href="README.zh.md">δΈ­ζ–‡</a> | <a href="README.md">English</a> </p> </div>

An MCP Server that enables AI to provide options and launch an interactive interface for user selection when facing choice problems, then return the results. Inspired by mcp-feedback-enhanced, built with FastMCP.

  • Showcase: Showcase

Similar Projects

  • imhuso/cunzhi - A Rust + Tauri desktop application that intercepts AI from ending conversations prematurely. Features memory management for project-specific preferences and includes code search capabilities. More comprehensive but heavier than this project.

  • paulp-o/ask-user-questions-mcp - A lightweight TypeScript + Node.js MCP server focused on CLI-based interaction. Designed for multi-agent parallel coding workflows with question queuing and SSH support. More lightweight but only supports terminal interface.

  • fhyfhy17/panel-feedback - Panel Feedback brings AI interaction directly into your IDE's sidebar - seamlessly integrated, always accessible, never intrusive.

Differences: This project provides dual interface support (Web + Terminal) with balanced complexity, focusing on interactive selection scenarios.

(I discovered these projects after completing this one. I hope these excellent projects receive more visibility.)

πŸ“‹ Table of Contents

✨ Key Features

🎯 Core Capabilities

  • Interactive Choice Interface: AI presents options, users make selections through intuitive interfaces
  • Dual Interface Support: Web-based UI and Terminal UI (experimental)
  • Selection Modes: Single-select and multi-select modes
  • Option Annotations: Users can add annotations to options to provide correct feedback to AI
  • Automation Ready: AI can mark recommended options with timeout auto-submit

πŸ“¦ Installation

Prerequisites

  • Python 3.12 or higher
  • uv package manager (recommended) or pip

πŸš€ Quick Start

Add the following configuration:

{
  "mcpServers": {
    "interactive-choice": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/Sighthesia/interactive-choice-mcp",
        "interactive-choice-mcp"
      ]
    }
  }
}
  • This will automatically clone the project repository and install dependencies.

  • For best results, it is recommended to add the following content to your global prompt (still being adjusted, prompts are from cunzhi, currently focusing on optimization for pay-per-use AI assistants, suggestions are welcome):

    - When the requirements are not clear, use `provide_choice` to ask for clarification and provide predefined options.
    - When there are multiple solutions, use `provide_choice` to ask instead of making assumptions on your own.
    - When there is a need to update a solution or strategy, use `provide_choice` to ask instead of making assumptions on your own.
    - Before completing a request, you must call `provide_choice` to request feedback.
    - Without a clear confirmation through the use of `provide_choice` to ask and receive permission to complete the task or end the conversation, it is prohibited to end the dialogue or request on your own initiative.
    

Environment Variables (Optional)

You can override saved configurations by adding the following environment variables to the env section in your MCP configuration:

Environment Variable Description Possible Values Default
CHOICE_WEB_HOST Web server host Any valid IP or hostname 127.0.0.1
CHOICE_WEB_PORT Web server port Any available port number 9999
CHOICE_LANG Interface language en, zh Auto-detected by system language
CHOICE_LOG_LEVEL Log level DEBUG, INFO, WARNING, ERROR INFO
CHOICE_LOG_FILE Log file path Any valid file path Optional
CHOICE_MCP_DATA_DIR Data storage dir Any valid directory path .mcp-data/
Configuration Example

Here is a complete MCP configuration example with environment variables:

{
  "mcpServers": {
    "interactive-choice": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/Sighthesia/interactive-choice-mcp",
        "interactive-choice-mcp"
      ],
      "env": {
        "CHOICE_WEB_HOST": "127.0.0.1",
        "CHOICE_WEB_PORT": "8080",
        "CHOICE_LANG": "en",
        "CHOICE_LOG_LEVEL": "DEBUG",
        "CHOICE_LOG_FILE": "~/.mcp-data/interactive-choice.log",
        "CHOICE_MCP_DATA_DIR": "~/.mcp-data/interactive-choice"
      }
    }
  }
}

🀝 Contributing

Contributions are welcome! Whether it's reporting issues, requesting features, or submitting PRs, it's all greatly appreciated!

For AI-driven development, refer to AGENTS.md and openspec.

πŸ“ Local Development Environment Setup

# Clone the repository
git clone https://github.com/Sighthesia/interactive-choice-mcp.git
cd interactive-choice-mcp

# Install dependencies
uv sync

# Verify installation
uv run pytest
  • You can configure to use a local development environment to run the MCP Server:

    {
      "mcpServers": {
        "interactive-choice": {
          "command": "uv",
          "args": [
            "--directory",
            "/path/to/interactive-choice-mcp",
            "run",
            "server.py"
          ]
        }
      }
    }
    

    Tip: Replace /path/to/interactive-choice-mcp with the actual path, such as ~/interactive-choice-mcp.

πŸ§ͺ Testing

For detailed testing information, please refer to tests/README.md.

The following are common test commands for development and debugging:

Running Interactive Tests

Temporarily run the Web server for interactive testing to verify user-side interaction effects:

  1. Open Web interaction interface and test the default single-select mode
uv run pytest tests/integration/test_interaction_web.py::TestWebInteractionManual::test_web_e2e_manual_interaction --interactive -v -s
  1. Open terminal interaction interface and test the default single-select mode
uv run pytest tests/integration/test_interaction_terminal.py::TestTerminalInteractionManual::test_terminal_e2e_manual_interaction --interactive -v -s

Running MCP Server Debugging

Run MCP Inspector to verify MCP Server tool input/output effects:

uv run mcp dev server.py

πŸ—οΈ Project Architecture

src/
β”œβ”€β”€ core/                    # Core orchestration and business logic
β”‚   β”œβ”€β”€ models.py           # Data models and schemas
β”‚   β”œβ”€β”€ orchestrator.py     # Main orchestration logic
β”‚   β”œβ”€β”€ validation.py       # Input validation
β”‚   └── response.py         # Response generation
β”œβ”€β”€ mcp/                    # MCP tool bindings
β”‚   β”œβ”€β”€ tools.py           # MCP tool definitions
β”‚   └── response_formatter.py
β”œβ”€β”€ web/                    # Web interface
β”‚   β”œβ”€β”€ server.py          # FastAPI web server
β”‚   β”œβ”€β”€ bundler.py         # Asset bundling
β”‚   └── templates.py       # HTML templates
β”œβ”€β”€ terminal/               # Terminal interface
β”‚   β”œβ”€β”€ ui.py              # Questionary-based UI
β”‚   └── session.py         # Terminal session management
β”œβ”€β”€ store/                  # Data persistence
β”‚   └── interaction_store.py
└── infra/                  # Infrastructure
    β”œβ”€β”€ logging.py         # Logging configuration
    β”œβ”€β”€ i18n.py            # Internationalization
    └── storage.py         # File system operations

Future Considerations

  • Since various AI IDEs and CLIs tend to silently run AI commands, the terminal mode interaction experience may be limited and requires further consideration for feasibility

πŸ’– Acknowledgments

πŸ“„ License

MIT License.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured