readGoogleDoc
Reads the content of a specific Google Document, optionally returning structured data.
Try it
appendToGoogleDoc
Appends text to the very end of a specific Google Document.
Try it
insertText
Inserts text at a specific index within the document body.
Try it
deleteRange
Deletes content within a specified range (start index inclusive, end index exclusive).
Try it
applyTextStyle
Applies character-level formatting (bold, color, font, etc.) to a specific range or found text.
Try it
applyParagraphStyle
Applies paragraph-level formatting (alignment, spacing, named styles like Heading 1) to the paragraph(s) containing specific text, an index, or a range.
Try it
insertTable
Inserts a new table with the specified dimensions at a given index.
Try it
editTableCell
Edits the content and/or basic style of a specific table cell. Requires knowing table start index.
Try it
insertPageBreak
Inserts a page break at the specified index.
Try it
fixListFormatting
EXPERIMENTAL: Attempts to detect paragraphs that look like lists (e.g., starting with -, *, 1.) and convert them to proper Google Docs bulleted or numbered lists. Best used on specific sections.
Try it
addComment
Adds a comment anchored to a specific text range. REQUIRES DRIVE API SCOPES/SETUP.
Try it
findElement
Finds elements (paragraphs, tables, etc.) based on various criteria. (Not Implemented)
Try it
formatMatchingText
Finds specific text within a Google Document and applies character formatting (bold, italics, color, etc.) to the specified instance.
Try it
listGoogleDocs
Lists Google Documents from your Google Drive with optional filtering.
Try it
searchGoogleDocs
Searches for Google Documents by name, content, or other criteria.
Try it
getRecentGoogleDocs
Gets the most recently modified Google Documents.
Try it
getDocumentInfo
Gets detailed information about a specific Google Document.
Try it
createFolder
Creates a new folder in Google Drive.
Try it
listFolderContents
Lists the contents of a specific folder in Google Drive.
Try it
getFolderInfo
Gets detailed information about a specific folder in Google Drive.
Try it
moveFile
Moves a file or folder to a different location in Google Drive.
Try it
copyFile
Creates a copy of a Google Drive file or document.
Try it
renameFile
Renames a file or folder in Google Drive.
Try it
deleteFile
Permanently deletes a file or folder from Google Drive.
Try it
createDocument
Creates a new Google Document.
Try it
createFromTemplate
Creates a new Google Document from an existing document template.
Try it
listPermissions
Lists all permissions for a Google Drive file.
Try it
createPermission
Creates a new permission for a Google Drive file (e.g., make file public).
Try it