Skip to main content

Docs Get Document

Snapshot Catalog Entry

This page is generated from broker tools/list snapshot data.

POSTgoogle.docs_get_document

Fetch a Google Doc document.

Request Body

{
"jsonrpc": "2.0",
"id": "google-docs-get-document-example",
"method": "tools/call",
"params": {
"name": "google.docs_get_document",
"arguments": {
"document_id": "document_id_123",
"fields": "fields_example"
}
}
}

Arguments Schema

{
"properties": {
"document_id": {
"type": "string"
},
"fields": {
"type": "string"
}
},
"required": [
"document_id"
],
"type": "object"
}

Code Examples

curl -X POST 'https://madpanda3d.com/lab/mad-mcps/portal/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "google-docs-get-document-example",
"method": "tools/call",
"params": {
"name": "google.docs_get_document",
"arguments": {
"document_id": "document_id_123",
"fields": "fields_example"
}
}
}'

Example Responses

{
"ok": true,
"message": "Tool google.docs_get_document executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}