AskUserQuestion Plus
A MCP server (Streamable HTTP) for asking user questions via a web interface, inspired by the Claude Code AskUserQuestion Tool.
What is AskUserQuestion Plus?
AskUserQuestion Plus is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to mcp server (streamable http) for asking user questions via a web interface, inspired by the claude code askuserquestion tool.
A MCP server (Streamable HTTP) for asking user questions via a web interface, inspired by the Claude Code AskUserQuestion Tool.
This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.
Features
- A MCP server (Streamable HTTP) for asking user questions via
Use Cases
Maintainer
Works with
Installation
Manual Installation
npx askuserquestionplusConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
How to Set Up and Use AskUserQuestion Plus
AskUserQuestion Plus is a Streamable HTTP MCP server that lets AI coding assistants like Claude Code, Codex, and Gemini CLI pause execution and ask the user structured questions through a web interface. When triggered, it automatically opens a browser tab with a polished questionnaire supporting single-choice, multiple-choice, and custom text input, then returns the answers to the AI model to continue the task. It is inspired by Claude Code's native AskUserQuestion tool but works across multiple AI clients.
Prerequisites
- Node.js 18 or higher with npm available
- Claude Code, OpenAI Codex, or Gemini CLI as your AI client
- A web browser for viewing the question interface
- Port 3456 available on localhost (configurable)
Start the AskUserQuestion Plus server
Run the server using npx, which downloads and starts it without a global installation. The server listens on port 3456 by default and opens a browser tab when questions are requested.
npx ask-user-question-plusOptionally customize port and timeout
Pass custom port and timeout values if the defaults conflict with other services. Timeout is in milliseconds; the default 600000ms is 10 minutes.
npx ask-user-question-plus -- --port=3456 --timeout=600000Run the server persistently with pm2
For long-running sessions, use pm2 to keep the server running in the background even after your terminal closes.
npm install -g pm2
pm2 start "npx ask-user-question-plus" --name ask-user-question-plus-serviceConfigure Claude Code to connect to the server
Register the server with Claude Code using the mcp add command with the HTTP transport type pointing to the local endpoint.
claude mcp add -s user -t http AskUserQuestionPlus http://localhost:3456/mcpAsk your AI to use the tool
In your Claude Code, Codex, or Gemini CLI session, instruct the AI to use the ask_user_question_plus tool to gather structured input before proceeding with a task.
AskUserQuestion Plus Examples
Client configuration
Claude Desktop configuration for connecting to the locally-running AskUserQuestion Plus HTTP server.
{
"mcpServers": {
"AskUserQuestionPlus": {
"type": "http",
"url": "http://localhost:3456/mcp"
}
}
}Prompts to try
Example prompts that instruct the AI to use ask_user_question_plus to gather user preferences before executing tasks.
- "Before creating the component, use ask_user_question_plus to ask me which framework I prefer: React, Vue, or Svelte"
- "Use ask_user_question_plus to ask me 3 questions about my API design preferences before writing the code"
- "Ask me whether I want dark or light theme, TypeScript or JavaScript, and which CSS framework to use"
- "Use the question tool to confirm my deployment target before running the deploy script"Troubleshooting AskUserQuestion Plus
Browser tab does not open automatically when questions are requested
The server attempts to open the default browser automatically. If this fails, open http://localhost:3456 manually in your browser after the AI triggers the tool. Check if a firewall or browser policy is blocking localhost navigation.
Claude Code shows connection refused when adding the MCP server
Make sure the ask-user-question-plus server is running before registering it with Claude Code. Run npx ask-user-question-plus first, confirm it shows a listening message, then run the claude mcp add command.
Session timeout before the user submits answers
Increase the timeout with the --timeout flag (value in milliseconds). For complex questionnaires, set --timeout=1800000 for a 30-minute window. The session expires if the user does not submit within the configured duration.
Frequently Asked Questions about AskUserQuestion Plus
What is AskUserQuestion Plus?
AskUserQuestion Plus is a Model Context Protocol (MCP) server that mcp server (streamable http) for asking user questions via a web interface, inspired by the claude code askuserquestion tool. It connects AI assistants to external tools and data sources through a standardized interface.
How do I install AskUserQuestion Plus?
Follow the installation instructions on the AskUserQuestion Plus GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.
Which AI clients work with AskUserQuestion Plus?
AskUserQuestion Plus works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.
Is AskUserQuestion Plus free to use?
Yes, AskUserQuestion Plus is open source and available under the MIT license. You can use it freely in both personal and commercial projects.
AskUserQuestion Plus Alternatives — Similar Developer Tools Servers
Looking for alternatives to AskUserQuestion Plus? Here are other popular developer tools servers you can use with Claude, Cursor, and VS Code.
Ecc
★ 188.2kThe agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
Javaguide
★ 155.8kJava 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
Gemini CLI
★ 104.5kA secure MCP server that wraps the Google Gemini CLI, allowing clients to query Gemini models using local OAuth sessions without requiring an API key. It provides tools for model interaction and diagnostics with built-in protection against command in
Awesome MCP Servers
★ 87.3k⭐ Curated list of Model Context Protocol (MCP) servers - tools that extend Claude Desktop, Cursor, Windsurf, and other MCP clients with custom capabilities.
MCP Servers
★ 86.0kModel Context Protocol Servers
CC Switch
★ 77.5kA cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io
Browse More Developer Tools MCP Servers
Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.
Set Up AskUserQuestion Plus in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
Ready to use AskUserQuestion Plus?
Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.