MCP Catalogs
Home

AskUserQuestionPlus vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

AskUserQuestionPlus
by JoJoJotarou
filesystem
by modelcontextprotocol
Stars★ 37★ 85,748
30d uses
Score4377
Official
Categories
AI / LLM ToolsCommunicationProductivity
File SystemDeveloper ToolsProductivity
LanguageHTMLTypeScript
Last commit3 mo agothis month

AskUserQuestionPlus · Summary

MCP server providing a web interface for user questionnaires with keyboard shortcuts and multi-option support.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

AskUserQuestionPlus · Use cases

  • Collecting user preferences in conversational interfaces
  • Gathering feedback from AI-assisted development workflows
  • Interactive data collection for AI training or analysis

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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": {}
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.