AskUserQuestionPlus vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
AskUserQuestionPlus by JoJoJotarou | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 37 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 43 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具沟通协作效率工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | HTML | TypeScript |
| 最近提交 | 3 个月前 | 本月 |
AskUserQuestionPlus · 概述
MCP服务器提供网页问卷界面,支持键盘快捷键和多种选项类型
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
AskUserQuestionPlus · 使用场景
- 在对话式界面中收集用户偏好
- 从AI辅助的开发工作流程中收集反馈
- 为AI训练或分析进行交互式数据收集
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
AskUserQuestionPlus · 安装
# 通过 npm 安装
npm install -g ask-user-question-plus
# 直接运行
npx ask-user-question-plus
# 使用自定义参数
npx ask-user-question-plus -- --port=8080 --timeout=300000
# Claude Desktop 配置
{
"mcpServers": {
"AskUserQuestionPlus": {
"command": "npx",
"args": ["ask-user-question-plus"],
"env": {}
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything