User interaction and notifications
input_notify - Send terminal and desktop notificationsinput_prompt - Interactive text prompts (terminal or MCP)input_select - Selection menus (terminal or MCP)input_progress - Display progress barsinput_clipboard_read - Read from system clipboardinput_clipboard_write - Write to system clipboard{
"name": "input_notify",
"arguments": {
"title": "Build Complete",
"message": "Your project has been built successfully!",
"type": "both",
"urgency": "normal"
}
}
Sends both terminal and desktop notifications with configurable urgency levels.
{
"name": "input_clipboard_write",
"arguments": {
"content": "Hello from Poly MCP!"
}
}
{
"name": "input_clipboard_read",
"arguments": {}
}
{
"name": "input_prompt",
"arguments": {
"message": "Enter your name:",
"default": "User"
}
}
{
"name": "input_select",
"arguments": {
"message": "Choose an option:",
"options": ["Option 1", "Option 2", "Option 3"]
}
}
{
"name": "input_progress",
"arguments": {
"message": "Processing...",
"total": 100,
"current": 50
}
}
{
"name": "input_notify",
"arguments": {
"title": "Warning",
"message": "Disk space is running low",
"type": "desktop",
"urgency": "critical",
"icon": "warning"
}
}