
Security News
PyPI Expands Trusted Publishing to GitLab Self-Managed as Adoption Passes 25 Percent
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads
@ver0/mcp-question
Advanced tools
MCP tools allowing agents to ask user questions and get answers in situations of unclear context or decision making.
An MCP (Model Context Protocol) server that enables AI agents to ask users questions through an interactive terminal interface. Perfect for gathering user input, preferences, and feedback during AI-assisted workflows.
Add to your MCP client configuration:
{
"mcpServers": {
"question": {
"command": "npx",
"args": ["-y", "@ver0/mcp-question"]
}
}
}
The server provides a single tool: ask-question
Open-ended Question:
{
"questions": [
{
"type": "open",
"id": "user_name",
"prompt": "What is your name?",
"description": "Please enter your full name",
"placeholder": "John Doe",
"minLength": 2,
"maxLength": 50
}
]
}
Multiple Choice Question:
{
"questions": [
{
"type": "multiple_choice",
"id": "favorite_language",
"prompt": "What is your favorite programming language?",
"options": [
{
"id": "typescript",
"label": "TypeScript",
"description": "Typed superset of JavaScript"
},
{
"id": "python",
"label": "Python",
"description": "High-level, interpreted language"
}
],
"defaultOptionID": "typescript"
}
]
}
Multi-select with Custom Option:
{
"questions": [
{
"type": "multiple_choice",
"id": "technologies",
"prompt": "Which technologies do you use?",
"allowMultiple": true,
"allowOwnVariant": true,
"minSelections": 1,
"maxSelections": 3,
"options": [
{"id": "react", "label": "React"},
{"id": "vue", "label": "Vue.js"},
{"id": "angular", "label": "Angular"}
]
}
]
}
"open"placeholder: Optional placeholder textminLength: Minimum character length (default: 0)maxLength: Maximum character length (default: 1000)"multiple_choice"options: Array of choice optionsdefaultOptionID: Pre-selected option IDallowMultiple: Enable multi-select (default: false)allowOwnVariant: Show "Other" option (default: true)minSelections: Minimum selections requiredmaxSelections: Maximum selections allowed{
"responses": [
{
"questionId": "user_name",
"response": ["John Doe"],
"customText": "Custom answer when Other was selected"
}
],
"cancelled": false,
"timedOut": false
}
FAQs
MCP tools allowing agents to ask user questions and get answers in situations of unclear context or decision making.
We found that @ver0/mcp-question demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.

Security News
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.