search_user_messages
Find messages from specific Mattermost users by name or username, with optional keyword filtering to locate relevant conversations and content.
Instructions
특정 사용자의 메시지를 이름이나 username으로 검색합니다. '박찬우', 'cwpark' 등으로 검색 가능.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keyword | No | 추가로 검색할 키워드 (선택사항) | |
user_name | Yes | 검색할 사용자의 이름 또는 username (예: '박찬우', 'cwpark') |
Input Schema (JSON Schema)
{
"properties": {
"keyword": {
"description": "추가로 검색할 키워드 (선택사항)",
"type": "string"
},
"user_name": {
"description": "검색할 사용자의 이름 또는 username (예: '박찬우', 'cwpark')",
"type": "string"
}
},
"required": [
"user_name"
],
"type": "object"
}