# Ask User Questions

> Ask clarifying questions to users via interactive TUI. Use when you need user input on preferences, implementation choices, or ambiguous instructions.

- **Type:** Skill
- **Install:** `agentstack add skill-paulp-o-ask-user-questions-mcp-ask-user-questions`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [paulp-o](https://agentstack.voostack.com/s/paulp-o)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [paulp-o](https://github.com/paulp-o)
- **Source:** https://github.com/paulp-o/ask-user-questions-mcp/tree/master/skills/ask-user-questions

## Install

```sh
agentstack add skill-paulp-o-ask-user-questions-mcp-ask-user-questions
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Ask User Questions

Use this tool when you need to ask the user questions during execution. This allows you to:

Gather user preferences or requirements
Clarify ambiguous instructions
Get decisions on implementation choices as you work
Offer choices to the user about what direction to take.
Usage notes:

Users will always be able to select "Other" to provide custom text input
Use multiSelect: true to allow multiple answers to be selected for a question
Recommend an option unless absolutely necessary, make it the first option in the list and add "(Recommended)" at the end of the label
For multiSelect questions, you MAY mark multiple options as "(Recommended)" if several choices are advisable
Do NOT use this tool to ask "Is my plan ready?" or "Should I proceed?"

## Usage

```bash
# Ask questions via CLI
npx auq ask '{"questions": [...]}'

# Or pipe JSON input
echo '{"questions": [...]}' | npx auq ask
```

## Parameters

```json
{
  "questions": [
    {
      "prompt": "Which authentication method would you like to use?",
      "title": "Auth",
      "options": [
        {"label": "JWT (Recommended)", "description": "Stateless, scalable"},
        {"label": "Session cookies", "description": "Traditional, server-side"}
      ],
      "multiSelect": false
    }
  ]
}
```

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `questions` | array | Yes | 1-5 question objects |
| `questions[].prompt` | string | Yes | Full question text |
| `questions[].title` | string | Yes | Short label (max 12 chars) |
| `questions[].options` | array | Yes | 2-5 options with `label` and optional `description` |
| `questions[].multiSelect` | boolean | Yes | Allow multiple selections |

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [paulp-o](https://github.com/paulp-o)
- **Source:** [paulp-o/ask-user-questions-mcp](https://github.com/paulp-o/ask-user-questions-mcp)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-paulp-o-ask-user-questions-mcp-ask-user-questions
- Seller: https://agentstack.voostack.com/s/paulp-o
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
