Call a Google Photos endpoint directly
rawSend custom Google Photos API requests with your existing access token to access endpoints not yet covered by dedicated tools.
Instructions
Escape hatch for an endpoint this server does not wrap. Give a path relative to the API root and it is sent with the current access token.
Prefer a named tool where one exists: they shape the response, handle pagination and explain their errors. Reach for this when the API has something the tools do not cover yet.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| api | Yes | Which host: 'library' for photoslibrary.googleapis.com/v1, 'picker' for photospicker.googleapis.com/v1. | |
| body | No | JSON body, for POST and PATCH. | |
| path | Yes | Path under the v1 root, starting with a slash. For example '/albums'. | |
| query | No | Query string parameters. | |
| method | No | HTTP method. Default GET. | |
| account | No | Which connected Google account to act as, by the name it was configured under (or its email). Defaults to the first one. Call list_accounts to see them. |