Google Docs
gdoc_insert_text
Insert text at a specific position in the document. Use index 1 to insert at the beginning of the body.
Remote node2flow/google-docs
Other tools also called gdoc_insert_text?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"text": {
"type": "string",
"description": "Text to insert"
},
"index": {
"type": "number",
"description": "The 0-based index to insert at (1 = start of body content)"
},
"segment_id": {
"type": "string",
"description": "Segment ID (header/footer ID). Omit for body content"
},
"document_id": {
"type": "string",
"description": "The document ID"
}
}
}