discord_read_inbox
Retrieve Discord messages collected by the monitoring daemon to check user communications and notifications from Discord Decision MCP server.
Instructions
Discord inbox에 저장된 메시지를 조회한다.
감시 데몬(discord-watch)이 수집한 Discord 메시지를 조회합니다. Claude Code는 이 Tool을 호출하여 사용자가 Discord에서 보낸 메시지를 확인할 수 있습니다.
Returns: { "success": true, "messages": [ { "message_id": "1234567890", "channel_id": "1234567890", "thread_id": null, "author": "username", "author_id": "1234567890", "content": "메시지 내용", "timestamp": "2024-01-01T00:00:00Z", "read": false } ], "count": 1, "unread_count": 1 }
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| unread_only | No | true면 읽지 않은 메시지만 반환, false면 모든 메시지 반환 | |
| mark_read | No | true면 조회한 메시지를 읽음으로 표시 |