google_drive_get_file_content
Retrieve file content from Google Drive by providing the file ID. Integrates with AI clients via the Google MCP server for streamlined data access.
Instructions
Get the content of a file from Google Drive
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fileId | Yes | ID of the file to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"fileId": {
"description": "ID of the file to retrieve",
"type": "string"
}
},
"required": [
"fileId"
],
"type": "object"
}