read_google_document
Extract content from a Google Docs document using its unique document ID. Enables AI models to retrieve text and data for processing or analysis through the Google Docs MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
documentId | Yes | 読み取るGoogle DocsドキュメントのID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"documentId": {
"description": "読み取るGoogle DocsドキュメントのID",
"type": "string"
}
},
"required": [
"documentId"
],
"type": "object"
}