mcp-ask-user
v1.0.0
Published
MCP App for asking users questions with interactive form UI
Downloads
28
Maintainers
Readme
mcp-ask-user
An MCP App that allows LLMs to ask users questions.
Installation
npm install -g mcp-ask-userConfiguration
Add to claude_desktop_config.json.
stdio
{
"mcpServers": {
"ask-user": {
"command": "mcp-ask-user",
"args": ["--stdio"]
}
}
}HTTP (requires mcp-ask-user running on localhost)
{
"mcpServers": {
"ask-user": {
"command": "npx",
"args": ["-y", "mcp-remote", "http://localhost:54217/mcp"]
}
}
}Troubleshooting
If the command is not found, specify the full path or set PATH in env.
{
"mcpServers": {
"ask-user": {
"command": "/Users/username/.local/share/pnpm/mcp-ask-user",
"args": ["--stdio"],
"env": {
"PATH": "/Users/username/.local/share/mise/installs/node/24.13.0/bin:/usr/bin:/bin"
}
}
}
}