The MCP tool directory.
Each row is one tool from one provider. Tools sharing a name across providers (e.g. search) are listed separately because they aren't interchangeable.
[ 2890 tools indexed ]
[ all tools ]
30 / 2890
GMAIL_LIST_LABELS
[ remote ]Retrieves a list of all system and user-created labels for the specified gmail account.
gmail_list_messages
[ remote ]List messages in the mailbox. Supports Gmail search syntax for filtering (e.g., from:, to:, subject:, is:unread, has:attachment).
GMAIL_LIST_THREADS
[ remote ]Retrieves a list of email threads from a gmail account, identified by `user id` (email address or 'me'), supporting filtering and pagination.
gmail_modify_message
[ remote ]Add or remove labels on a message. Use this to mark as read/unread, star/unstar, or apply custom labels.
gmail_modify_thread
[ remote ]Add or remove labels on all messages in a thread.
GMAIL_MODIFY_THREAD_LABELS
[ remote ]Adds or removes specified existing label ids from a gmail thread, affecting all its messages; ensure the thread id is valid.
GMAIL_MOVE_TO_TRASH
[ remote ]Moves an existing, non-deleted email message to the trash for the specified user.
GMAIL_PATCH_LABEL
[ remote ]Patches the specified label.
GMAIL_REMOVE_LABEL
[ remote ]Permanently deletes a specific, existing user-created gmail label by its id for a user; cannot delete system labels.
GMAIL_REPLY_TO_THREAD
[ remote ]Sends a reply within a specific gmail thread using the original thread's subject, requiring a valid `thread id` and correctly formatted email addresses. supports attachments via the `attachment` parameter with valid `s3key`, `mimetype`, and `name`.
gmail_send_draft
[ remote ]Send an existing draft. The draft is removed from the drafts list after sending.
gmail_send_message
[ remote ]Send an email message. Supports plain text and HTML body, CC, BCC, and replying to threads.
gmail_trash_message
[ remote ]Move a message to the trash. Can be undone with gmail_untrash_message.
gmail_trash_thread
[ remote ]Move all messages in a thread to the trash.
gmail_untrash_message
[ remote ]Remove a message from the trash, restoring it to its original location.
gmail_untrash_thread
[ remote ]Remove all messages in a thread from the trash.
gmail_update_draft
[ remote ]Update an existing draft with new content. Replaces the entire draft message.
gmail_update_label
[ remote ]Update a label name, visibility, or color.
gmail_update_vacation
[ remote ]Enable or disable vacation auto-reply (out of office) with custom response message.
GOOGLECALENDAR_ACL_PATCH
[ remote ]Updates an access control rule for a calendar using patch semantics (partial update). This allows modifying specific fields without affecting other properties. Note: Each patch request consumes three quota units. For domain-type ACL rules, if PATCH fails with 500 error, this action will automatically fallback to UPDATE method.
GOOGLECALENDAR_CALENDAR_LIST_INSERT
[ remote ]Inserts an existing calendar into the user's calendar list.
GOOGLECALENDAR_CALENDAR_LIST_UPDATE
[ remote ]Updates an existing entry on the user\'s calendar list.
GOOGLECALENDAR_CALENDARS_DELETE
[ remote ]Deletes a secondary calendar. Use calendars.clear for clearing all events on primary calendars.
GOOGLECALENDAR_CALENDARS_UPDATE
[ remote ]Updates metadata for a calendar.
GOOGLECALENDAR_CLEAR_CALENDAR
[ remote ]Clears a primary calendar. This operation deletes all events associated with the primary calendar of an account.
GOOGLECALENDAR_CREATE_EVENT
[ remote ]Create a Google Calendar event using `start_datetime` plus `event_duration_hour` and `event_duration_minutes` fields to derive the end time. Requires calendar write access. The organizer is added as an attendee unless `exclude_organizer` is True. Example request to create event for 1 hour 30 minutes: { "calendar_id": "primary", "start_datetime": "2025-01-16T13:00:00", "timezone": "America/New_York", "event_duration_hour": 1, "event_duration_minutes": 30, "summary": "Client sync", "attendees": [{"email": "[email protected]"}] }
GOOGLECALENDAR_DELETE_EVENT
[ remote ]Deletes a specified event by `event_id` from a Google Calendar (`calendar_id`); this action is idempotent and raises a 404 error if the event is not found.
GOOGLECALENDAR_DUPLICATE_CALENDAR
[ remote ]Creates a new, empty Google Calendar with the specified title (summary).
GOOGLECALENDAR_EVENTS_INSTANCES
[ remote ]Returns instances of the specified recurring event.
GOOGLECALENDAR_EVENTS_LIST
[ remote ]Returns events on the specified calendar.