AskUserQuestionPlus vs everything
Side-by-side comparison to help you pick between these two MCP servers.
AskUserQuestionPlus by JoJoJotarou | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 37 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsCommunicationProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | HTML | TypeScript |
| Last commit | 3 mo ago | this month |
AskUserQuestionPlus · Summary
MCP server providing a web interface for user questionnaires with keyboard shortcuts and multi-option support.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
AskUserQuestionPlus · Use cases
- Collecting user preferences in conversational interfaces
- Gathering feedback from AI-assisted development workflows
- Interactive data collection for AI training or analysis
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
AskUserQuestionPlus · Install
# Install via npm
npm install -g ask-user-question-plus
# Run directly
npx ask-user-question-plus
# With custom parameters
npx ask-user-question-plus -- --port=8080 --timeout=300000
# Claude Desktop configuration
{
"mcpServers": {
"AskUserQuestionPlus": {
"command": "npx",
"args": ["ask-user-question-plus"],
"env": {}
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything