npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@iflow-mcp/paulp-o-ask-user-questions-mcp

v2.0.1

Published

An MCP server that provides a tool to ask a user questions via the terminal

Readme

AUQ Demo

AUQ - Ask User Questions

AskUserQuestion pushed to the max

npm version License: MIT Install MCP Server

A complete toolset that enables maximum level of human-(intention-)in-the-loop onto any long-running, multi-agentic AI workflows (like Ralph Loop!).

Single/multiple choice questions, custom options, multi-agent interoperability, question queueing, question rejection with explanation, elaboration requesting, quick recommendations auto-selection, themes, native OS notification, terminal progress bar, multi-language support, agent skills support... and more. You can customize them all too!

Can be used via MCP server / OpenCode plugin / Agent Skills.

SetupUsage

🤔 I already have question tool in CC/OC/Cursor. Why use this?


What does it do?

AUQ lets your AI assistants ask clarifying questions consisting of multiple-choice/single-choice questions (with an "Other" option for custom input / rejection / ask for elaboration) while coding or working, and wait for your answers through a separate CLI window without messing up your workflow.

This lets you inject your intent into long-running autonomous AI tasks—no more switching windows or babysitting AIs. Turn on the CLI anytime, even remotely via SSH!

In AI-assisted coding, guiding LLMs to ask clarifying questions have been widely recognized as a powerful prompt engineering technique to overcome LLM hallucination and generate more contextually appropriate code [1].

On October 18th, Claude Code 2.0.21 introduced an internal AskUserQuestion tool. Inspired by it, I decided to build a similar tool that is:

  • Integration-flexible - Works with MCP clients (Claude Desktop, Cursor, etc.) and has official OpenCode plugin support
  • Non-invasive - Doesn't heavily integrate with your coding CLI workflow or occupy UI space
  • Multi-agent friendly - Supports receiving questions from multiple agents simultaneously in parallel workflows

✨ Demo

https://github.com/user-attachments/assets/3a135a13-fcb1-4795-9a6b-f426fa079674


Setup Instructions

🚀 Install CLI Tool

First, install the AUQ CLI:

Global Installation (Recommended)

# Install globally
bun add -g auq-mcp-server

This serves as the 'answering interface' for you, the human.

Note: Other package managers (npm, pnpm..) also work but not recommended.

# Install in your project
bun add auq-mcp-server

Sessions are stored globally regardless of installation method. See Troubleshooting for session locations.


🔌 Integrate to your AI

AUQ supports multiple AI environments. Choose between OpenCode plugin and MCP server.

Option A: MCP Server

Note: Due to differences in how some MCP clients are implemented, AUQ may be forcibly cancelled in tools that do not allow extending the global MCP timeout. If that's the case, consider using Agent Skills. Use OpenCode plugin if you use OpenCode.

Install MCP Server

Method 1: Using CLI (Recommended)

claude mcp add --transport stdio ask-user-questions -- bunx -y auq-mcp-server server

Note: npx also works if you prefer npm.

Method 2: Manual Configuration

Add to .mcp.json in your project root (for team-wide sharing):

{
  "mcpServers": {
    "ask-user-questions": {
      "type": "stdio",
      "command": "bunx",
      "args": ["-y", "auq-mcp-server", "server"]
    }
  }
}

Or add to ~/.claude.json for global access across all projects.

Note: Replace bunx if you don't use bun.

Verify setup: Type /mcp in Claude Code to check server status.

Add to ~/.codex/config.toml:

[mcp_servers.ask-user-questions]
command = "bunx"
args = ["-y", "auq-mcp-server", "server"]
tool_timeout_sec = 99999  // Extend timeout for long sessions

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "ask-user-questions": {
      "command": "bunx",
      "args": ["-y", "auq-mcp-server", "server"]
    }
  }
}

Replace bunx if you don't use bun.

Restart Claude Desktop after saving.

Option B: OpenCode Plugin

Direct integration for OpenCode users. Adds working directory viewability feature exclusively.

Configuration

Add to opencode.json:

{
  "plugin": ["@paulp-o/opencode-auq@latest"]
}

Option C: Agent Skills (Experimental)

Usage with Skills-Compatible Agents

Copy the skills/ask-user-questions/ folder to your agent's skills directory.

This skill guides the AI to use AUQ CLI's hidden command, auq ask with raw JSON as parameters. Unlike MCP or proper tool harness systems, malformed JSON healing/schema enforcement aren't supported natively; therefore a less capable model could struggle to call properly.


💻 Usage

Starting the CLI tool

auq       # if installed globally (bun add -g)
# bunx auq
# npx auq

Start by defining your workflow to use AUQ tool for clarifying questions, on AGENTS.md (or CLAUDE.md), like:

Whenever you need clarification on what you are working on, never guess, and call AUQ(ask-user-questions).

When the AI asks questions, you'll see them appear in the AUQ TUI. Answer them at your convenience.

Note: AUQ is an unopinionated tool and doesn't include prompts on HOW AI should leverage it. It is expected that you do your own prompt engineering to make the most out of it in your own workflows. I personally enjoy prompting it to ask at least 30 questions repeatedly before action!

Recommended Setups

It is recommended to disable the built-in questioning tool in your harness (like the question tool in OpenCode or AskUserQuestion in Claude Code) to avoid AI from mixing them up.

Useful Keyboard Shortcuts

| Key | Action | Description | | -------- | ------------- | ------------------------------------------------------------------ | | Space | Select | Select/toggle option without advancing | | Enter | Select & Next | Select option and advance to next question | | R | Recommended | Select recommended option(s) for current question | | Ctrl+R | Quick Submit | Auto-select recommended options for all questions and go to review | | Esc | Reject | Reject the whole question set and optionally explain why to the AI | | Ctrl+T | Theme | Cycle through available color themes |

# you won't likely need these at all
auq server       # Start MCP server
auq --version    # Show version
auq --help       # Show help

🎨 Themes

AUQ supports 16 built-in color themes with automatic persistence. Press Ctrl+T to cycle through themes.

| Theme | Style | | ---------------- | ------------------------ | | AUQ dark | Default dark theme | | AUQ light | Default light theme | | Nord | Arctic, bluish | | Dracula | Dark purple/pink | | Catppuccin Mocha | Warm dark pastels | | Catppuccin Latte | Warm light pastels | | Solarized Dark | Low contrast dark | | Solarized Light | Low contrast light | | Gruvbox Dark | Retro groove dark | | Gruvbox Light | Retro groove light | | Tokyo Night | Dark with vibrant colors | | One Dark | Atom-inspired dark | | Monokai | Classic vibrant dark | | GitHub Dark | GitHub's dark mode | | GitHub Light | GitHub's light mode | | Rosé Pine | Warm, cozy pinks |

Your selected theme is automatically saved to ~/.config/auq/config.json and restored on next launch.

Create custom themes by placing .theme.json files in:

  • macOS/Linux: ~/.config/auq/themes/

Example custom theme (~/.config/auq/themes/my-theme.theme.json):

{
  "name": "my-theme",
  "colors": {
    "primary": "#ff6b6b",
    "success": "#51cf66",
    "text": "#f8f9fa"
  }
}

Custom themes inherit from the default dark theme—only override the colors you want to change. See the JSON schema for all available properties.


Manual session cleanup

Sessions auto-clean after retention period. However, you can manually clean them up if you want to.

rm -rf ~/Library/Application\ Support/auq/sessions/*  # macOS
rm -rf ~/.local/share/auq/sessions/*                  # Linux

To test the MCP server and CLI locally during development:

1. Start the MCP Server (Terminal 1)

# Option A: Run with tsx (recommended for development)
bun run start

# Option B: Run with fastmcp dev mode (includes web inspector at http://localhost:6274)
bun run dev

# Option C: Run the built version
bun run build && bun run server

2. Create a Test Session (Terminal 2)

Use the auq ask command to create a session and wait for answers:

# Run directly with bun during development
bun run bin/auq.tsx ask '{"questions": [{"prompt": "Which language?", "title": "Lang", "options": [{"label": "TypeScript"}, {"label": "Python"}], "multiSelect": false}]}'

# Or pipe JSON to stdin
echo '{"questions": [{"prompt": "Which database?", "title": "DB", "options": [{"label": "PostgreSQL"}, {"label": "MongoDB"}], "multiSelect": false}]}' | bun run bin/auq.tsx ask

This will create a session and wait for the TUI to provide answers.

3. Answer with the TUI (Terminal 3)

# Run the TUI to answer pending questions
bun run bin/auq.tsx

Create Mock Sessions for TUI Testing

To test the TUI with multiple pending sessions:

# Create 3 mock sessions (default)
bun run scripts/create-mock-session.ts

# Create a specific number of sessions
bun run scripts/create-mock-session.ts 5

Then run the TUI to see and answer them:

bun run bin/auq.tsx

Verify MCP and CLI Use Same Session Directory

Both components should report the same session directory path. Check the logs:

  • MCP server logs session directory on startup
  • auq ask prints [AUQ] Session directory: <path> to stderr

On macOS, both should use: ~/Library/Application Support/auq/sessions

Development Commands

# Regenerate the skill from source
bun run generate:skill

# Validate skill structure and content
bun run validate:skill

Session Storage

Sessions are stored in platform-specific global locations:

  • macOS: ~/Library/Application Support/auq/sessions
  • Linux: ~/.local/share/auq/sessions (or $XDG_DATA_HOME/auq/sessions)
  • Windows: %APPDATA%\auq\sessions

Can be customized with AUQ_SESSION_DIR environment variable.

AUQ can be configured via a .auqrc.json file. Settings are loaded from (in priority order):

  1. Local: ./.auqrc.json (project directory)
  2. Global: ~/.config/auq/.auqrc.json (or $XDG_CONFIG_HOME/auq/.auqrc.json)
  3. Defaults: Built-in values

Settings from local config override global config, which overrides defaults.

Default Configuration

{
  "maxOptions": 5,
  "maxQuestions": 5,
  "recommendedOptions": 4,
  "recommendedQuestions": 4,
  "sessionTimeout": 0,
  "retentionPeriod": 604800000, // 7 days
  "language": "auto",
  "theme": "system",
  "autoSelectRecommended": true,
  "notifications": {
    "enabled": true,
    "sound": true
  }
}

| Setting | Type | Default | Range/Values | Description | | ----------------------- | ------- | --------- | ------------------------------- | ----------------------------------------------------- | | maxOptions | number | 5 | 2-10 | Maximum options per question | | maxQuestions | number | 5 | 1-10 | Maximum questions per session | | recommendedOptions | number | 4 | 1-10 | Suggested number of options (for AI guidance) | | recommendedQuestions | number | 4 | 1-10 | Suggested number of questions (for AI guidance) | | language | string | "auto" | "auto", "en", "ko" | UI language (auto-detects from system if "auto") | | theme | string | "system" | "system", "dark", "light", etc. | Color theme for TUI | | sessionTimeout | number | 0 | 0+ (milliseconds) | Session timeout (0 = no timeout) | | retentionPeriod | number | 604800000 | 0+ (milliseconds) | How long to keep completed sessions (default: 7 days) | | notifications.enabled | boolean | true | true/false | Enable desktop notifications for new questions | | notifications.sound | boolean | true | true/false | Play sound with notifications |

Language Support

AUQ supports multiple languages for the TUI interface:

  • English (en) - Default
  • Korean (ko) - 한국어

Language is auto-detected from system locale (LANG, LC_ALL, LC_MESSAGES environment variables) when set to "auto".

Desktop Notifications

AUQ uses native desktop notifications to alert you when new questions arrive.

Platform Requirements

| Platform | Status | Notes | | -------- | ----------------------- | --------------------------------------------- | | macOS | ✅ Works out of the box | Uses Notification Center | | Windows | ✅ Works out of the box | Uses Action Center | | Linux | ⚠️ Requires libnotify | Install: sudo apt-get install libnotify-bin |

Notifications can be disabled in configuration if needed.

Features:

  • Batched Notifications: Rapid session arrivals are batched into a single notification
  • Progress Bar: Shows question completion progress in terminal dock icon (supported terminals like iTerm2 and WezTerm)
  • Native Integration: Uses system-native notification centers

Configuration:

{
  "notifications": {
    "enabled": true,
    "sound": true
  }
}
  • notifications.enabled (default: true): Enable desktop notifications
  • notifications.sound (default: true): Play sound with notifications

Set notifications.enabled to false to disable all notifications.


🤔 Why AUQ vs. Built-in Questioning Tools?

A clean decision inbox so you & AI stay in flow.

You're an AI power user, running multiple agents on multiple instances. Highly parallelized, the AIs ask questions to you simultaneously, on multiple threads—scattered across different windows. AUQ enables them to ask anytime, collects everything in one inbox, and lets you respond on your terms—then elegantly routes answers back to each agent.

       Claude Code    Cursor    OpenCode
            │           │           │
            ▼           ▼           ▼
          ┌─────────────────────────────┐
          │        📥 AUQ Inbox         │
          └─────────────────────────────┘
                        │
                        ▼
                      🖥️ TUI
                        │
                        ▼
          ┌─────────────────────────────┐
          │       Your Answers          │
          └─────────────────────────────┘
            │           │           │
            ▼           ▼           ▼
       Claude Code    Cursor    OpenCode

📥 One Inbox for All Agents — Multiple agents ask in one place. One queue, one source of truth.

🧠 Teach the AI — Reject bad questions and tell it why. Turn "no" into better follow-ups.

Fix the Question First — Can't answer because it's vague? Request elaboration before you guess.

Blast Through the ObviousCtrl+R accepts all recommended options. Focus on the hard decisions.

🔔 Pinged When It Matters — Native notifications, batched so you're not spammed.

🌐 Works Where You Work — SSH into a remote server? AUQ runs there too.

  • 🎨 16 built-in themes + custom theme support
  • 🌍 i18n (English, Korean) with auto-detection
  • 📊 Dock progress bar (iTerm2, WezTerm, Ghostty)
  • 🔤 Full CJK character support

Power Moves

| Shortcut | What it does | | -------- | -------------------------------------------------- | | Space | Select option without advancing | | Enter | Select option and advance to next question | | R | Select recommended option(s) for current question | | Ctrl+R | Quick submit — auto-fill recommended, go to review | | Esc | Reject question set — optionally explain why | | Ctrl+T | Cycle through 16 themes |


📄 License

MIT License - see LICENSE file for details.


[1] arXiv:2308.13507 https://arxiv.org/abs/2308.13507