Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -717,13 +717,25 @@ cp .env.oauth21 .env
| `send_gmail_message` | **Core** | Send emails |
| `get_gmail_thread_content` | Extended | Get full thread content |
| `modify_gmail_message_labels` | Extended | Modify message labels |
| `modify_gmail_thread_labels` | Extended | Modify labels for all messages in a thread |
| `list_gmail_labels` | Extended | List available labels |
| `manage_gmail_label` | Extended | Create/update/delete labels |
| `draft_gmail_message` | Extended | Create drafts |
| `get_gmail_threads_content_batch` | Complete | Batch retrieve thread content |
| `batch_modify_gmail_message_labels` | Complete | Batch modify labels |
| `batch_modify_gmail_thread_labels` | Complete | Batch modify labels for all messages in threads |
| `start_google_auth` | Complete | Initialize authentication |

**Gmail Message Format Options:**

Both `get_gmail_thread_content` and `get_gmail_threads_content_batch` support an optional `format` parameter (defaults to `"full"`):

| Format | Description |
|--------|-------------|
| `"minimal"` | Returns only the `id` and `threadId` of each message. |
| `"metadata"` | Returns message metadata such as headers, labels, and snippet, but *not* the full body. |
| `"full"` | Returns the full email message data, including headers and body (Base64 encoded). This is the default and most commonly used for reading messages. |

</td>
<td width="50%" valign="top">

Expand Down
2 changes: 2 additions & 0 deletions core/tool_tiers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@ gmail:
extended:
- get_gmail_thread_content
- modify_gmail_message_labels
- modify_gmail_thread_labels
- list_gmail_labels
- manage_gmail_label
- draft_gmail_message

complete:
- get_gmail_threads_content_batch
- batch_modify_gmail_message_labels
- batch_modify_gmail_thread_labels
- start_google_auth

drive:
Expand Down
Loading