Skip to main content

Slides Replace Text

Snapshot Catalog Entry

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

POSTgoogle.slides_replace_text

Replace text across a Slides presentation.

Request Body

{
"jsonrpc": "2.0",
"id": "google-slides-replace-text-example",
"method": "tools/call",
"params": {
"name": "google.slides_replace_text",
"arguments": {
"presentation_id": "presentation_id_123",
"contains_text": "contains_text_example",
"replace_text": "replace_text_example",
"match_case": false
}
}
}

Arguments Schema

{
"properties": {
"presentation_id": {
"type": "string"
},
"contains_text": {
"type": "string"
},
"replace_text": {
"type": "string"
},
"match_case": {
"type": "boolean"
}
},
"required": [
"presentation_id",
"contains_text",
"replace_text"
],
"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-slides-replace-text-example",
"method": "tools/call",
"params": {
"name": "google.slides_replace_text",
"arguments": {
"presentation_id": "presentation_id_123",
"contains_text": "contains_text_example",
"replace_text": "replace_text_example",
"match_case": false
}
}
}'

Example Responses

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