docs_update_content
Update content within a Google Doc by specifying the document ID and new text, enabling efficient content management and integration with Google Workspace via the MCP Google Suite server.
Instructions
Update the content of a Google Doc
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | New content | |
document_id | Yes | ID of the document |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "New content",
"type": "string"
},
"document_id": {
"description": "ID of the document",
"type": "string"
}
},
"required": [
"document_id",
"content"
],
"type": "object"
}