원클릭으로
gws-gmail-users-settings-filters-list
Gmail: List the existing message filters (rules) in the user's mailbox.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Gmail: List the existing message filters (rules) in the user's mailbox.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Gmail: Create a custom label in the user's mailbox.
Gmail: List all labels in the user's mailbox.
Gmail: Get a specific message by ID with configurable format.
Gmail: List messages in a user's mailbox with optional filtering.
Gmail: Modify the labels applied to a specific message.
Gmail: Create a server-side message filter (rule) that auto-labels matching mail.
| name | gws-gmail-users-settings-filters-list |
| description | Gmail: List the existing message filters (rules) in the user's mailbox. |
List all server-side message filters configured in the user's mailbox. Use this to discover what filters already exist before creating a new one (avoid duplicates).
gws gmail users settings filters list --params '<JSON_PARAMS>'
--params JSON)| Parameter | Required | Default | Description |
|---|---|---|---|
userId | ✓ | — | The user's email address or "me" for the authenticated user |
Returns { "filter": [ { "id", "criteria", "action" }, ... ] }:
{
"filter": [
{
"id": "ANe1Bmg...",
"criteria": { "from": "notifications@github.com" },
"action": { "addLabelIds": ["Label_42"] }
}
]
}
criteria fields include from, to, subject, query, negatedQuery,
hasAttachment, excludeChats, size, sizeComparison.action fields include addLabelIds, removeLabelIds, forward.gws gmail users settings filters list --params '{"userId": "me"}'