Google Docs

GOOGLEDOCS_UPDATE_DOCUMENT_SECTION_MARKDOWN

Tool to insert or replace a section of a Google Docs document with Markdown content. Use when you need to update only a section of a document by specifying start and optional end indices. Supports full Markdown formatting.

Remote googledocs

Other tools also called GOOGLEDOCS_UPDATE_DOCUMENT_SECTION_MARKDOWN? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "end_index": {
      "type": "integer",
      "title": "End Index",
      "default": null,
      "minimum": 1,
      "nullable": true,
      "description": "Optional one-based end index of the content to replace; must be greater than or equal to start_index if provided. If end_index is not provided, the content is inserted at the start_index. The index is 1-based to match the Google Docs API."
    },
    "document_id": {
      "type": "string",
      "title": "Document Id",
      "examples": [
        "1ABcDeFGhIjKlMnOpQRsT"
      ],
      "description": "The ID of the Google Docs document to update."
    },
    "start_index": {
      "type": "integer",
      "title": "Start Index",
      "minimum": 1,
      "description": "One-based UTF-16 code unit index where to insert or start replacement. The index is 1-based to match the Google Docs API."
    },
    "markdown_text": {
      "type": "string",
      "title": "Markdown Text",
      "description": "Markdown content to insert or replace in the document section."
    }
  }
}