forked from mvanhorn/printing-press-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspec.yaml
More file actions
453 lines (445 loc) · 13.1 KB
/
Copy pathspec.yaml
File metadata and controls
453 lines (445 loc) · 13.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
name: google-photos
display_name: Google Photos
description: Google Photos Library and Picker APIs for app-created media, albums, uploads, and user-selected media.
cli_description: Manage Google Photos app-created albums and media, upload files, and work with Picker sessions from the terminal.
version: "0.1.0"
spec_source: official
category: media-and-entertainment
website_url: https://developers.google.com/photos
base_url: https://photoslibrary.googleapis.com
http_transport: standard
auth:
type: oauth2
header: Authorization
format: Bearer {token}
env_vars:
- GOOGLE_PHOTOS_TOKEN
authorization_url: https://accounts.google.com/o/oauth2/v2/auth
token_url: https://oauth2.googleapis.com/token
scopes:
- https://www.googleapis.com/auth/photoslibrary.appendonly
- https://www.googleapis.com/auth/photoslibrary.readonly.appcreateddata
- https://www.googleapis.com/auth/photoslibrary.edit.appcreateddata
- https://www.googleapis.com/auth/photospicker.mediaitems.readonly
key_url: https://console.cloud.google.com/apis/credentials
verify_path: /v1/albums?pageSize=1
config:
format: toml
path: ~/.config/google-photos-pp-cli/config.toml
mcp:
transport:
- stdio
- http
extra_commands:
- name: upload file
description: Upload raw photo or video bytes and print the upload token for media-items batch-create.
args: "<path>"
- name: picker wait
description: Poll a Picker session until selected media items are ready.
args: "<session-id>"
resources:
albums:
description: Manage app-created Google Photos albums.
endpoints:
create:
method: POST
path: /v1/albums
description: Create an album in the user's Google Photos library.
body:
- name: album
type: object
required: true
description: Album JSON object, for example '{"title":"Trip"}'.
response:
type: object
item: Album
get:
method: GET
path: /v1/albums/{albumId}
description: Get an app-created album by ID.
params:
- name: albumId
type: string
required: true
positional: true
description: Album ID.
response:
type: object
item: Album
meta:
mcp:read-only: "true"
list:
method: GET
path: /v1/albums
description: List albums created by this app.
params:
- name: pageSize
type: int
default: 20
description: Maximum albums to return, up to 50.
- name: pageToken
type: string
description: Continuation token from nextPageToken.
response:
type: array
item: Album
response_path: albums
pagination:
type: page_token
cursor_param: pageToken
next_cursor_path: nextPageToken
meta:
mcp:read-only: "true"
patch:
method: PATCH
path: /v1/albums/{id}
description: Update title or cover photo on an app-created album.
params:
- name: id
type: string
required: true
positional: true
description: Album ID.
- name: updateMask
type: string
required: true
description: Comma-separated fields to update, such as title or coverPhotoMediaItemId.
body:
- name: title
type: string
description: New album title.
- name: coverPhotoMediaItemId
type: string
description: Media item ID to use as the album cover.
response:
type: object
item: Album
add_enrichment:
method: POST
path: /v1/albums/{albumId}:addEnrichment
description: Add text, location, or map enrichment to an app-created album.
params:
- name: albumId
type: string
required: true
positional: true
description: Album ID.
body:
- name: newEnrichmentItem
type: object
required: true
description: Enrichment JSON object.
- name: albumPosition
type: object
required: true
description: Album position JSON object.
response:
type: object
item: AddEnrichmentToAlbumResponse
batch_add_media_items:
method: POST
path: /v1/albums/{albumId}:batchAddMediaItems
description: Add app-created media items to an app-created album.
params:
- name: albumId
type: string
required: true
positional: true
description: Album ID.
body:
- name: mediaItemIds
type: array
required: true
description: JSON array of media item IDs.
response:
type: object
item: BatchAddMediaItemsToAlbumResponse
batch_remove_media_items:
method: POST
path: /v1/albums/{albumId}:batchRemoveMediaItems
description: Remove app-created media items from an app-created album.
params:
- name: albumId
type: string
required: true
positional: true
description: Album ID.
body:
- name: mediaItemIds
type: array
required: true
description: JSON array of media item IDs.
response:
type: object
item: BatchRemoveMediaItemsFromAlbumResponse
media_items:
description: Manage app-created Google Photos media items.
endpoints:
batch_create:
method: POST
path: /v1/mediaItems:batchCreate
description: Create media items from upload tokens.
body:
- name: albumId
type: string
description: Optional app-created album ID to add items to.
- name: newMediaItems
type: array
required: true
description: JSON array of new media items containing uploadToken and simpleMediaItem.
- name: albumPosition
type: object
description: Optional album position JSON object.
response:
type: object
item: BatchCreateMediaItemsResponse
batch_get:
method: GET
path: /v1/mediaItems:batchGet
description: Get multiple app-created media items by ID.
params:
- name: mediaItemIds
type: string
required: true
description: Media item IDs. Repeat with comma-separated IDs when using shell wrappers.
response:
type: array
item: MediaItemResult
response_path: mediaItemResults
meta:
mcp:read-only: "true"
get:
method: GET
path: /v1/mediaItems/{mediaItemId}
description: Get an app-created media item by ID.
params:
- name: mediaItemId
type: string
required: true
positional: true
description: Media item ID.
response:
type: object
item: MediaItem
meta:
mcp:read-only: "true"
list:
method: GET
path: /v1/mediaItems
description: List media items created by this app.
params:
- name: pageSize
type: int
default: 25
description: Maximum media items to return.
- name: pageToken
type: string
description: Continuation token from nextPageToken.
response:
type: array
item: MediaItem
response_path: mediaItems
pagination:
type: page_token
cursor_param: pageToken
next_cursor_path: nextPageToken
meta:
mcp:read-only: "true"
patch:
method: PATCH
path: /v1/mediaItems/{id}
description: Update the description on an app-created media item.
params:
- name: id
type: string
required: true
positional: true
description: Media item ID.
- name: updateMask
type: string
required: true
default: description
description: Fields to update. Google Photos currently supports description.
body:
- name: description
type: string
required: true
description: New media item description.
response:
type: object
item: MediaItem
search:
method: POST
path: /v1/mediaItems:search
description: Search app-created media items by album or filters.
body:
- name: albumId
type: string
description: Optional app-created album ID.
- name: filters
type: object
description: Filters JSON object.
- name: orderBy
type: string
description: Sort expression.
- name: pageSize
type: int
default: 25
description: Maximum media items to return.
- name: pageToken
type: string
description: Continuation token from nextPageToken.
response:
type: array
item: MediaItem
response_path: mediaItems
meta:
mcp:read-only: "true"
picker:
description: Create, poll, clean up, and read Google Photos Picker sessions.
base_url: https://photospicker.googleapis.com
endpoints:
create_session:
method: POST
path: /v1/sessions
description: Create a Picker session and return the picker URI.
body:
- name: pickingConfig
type: object
description: Optional picking configuration JSON object.
response:
type: object
item: PickingSession
get_session:
method: GET
path: /v1/sessions/{sessionId}
description: Get Picker session status.
params:
- name: sessionId
type: string
required: true
positional: true
description: Picker session ID.
response:
type: object
item: PickingSession
meta:
mcp:read-only: "true"
delete_session:
method: DELETE
path: /v1/sessions/{sessionId}
description: Delete a Picker session after selected media bytes have been retrieved.
params:
- name: sessionId
type: string
required: true
positional: true
description: Picker session ID.
response:
type: object
item: Empty
list_media_items:
method: GET
path: /v1/mediaItems
description: List media items picked by the user during a Picker session.
params:
- name: sessionId
type: string
required: true
description: Picker session ID.
- name: pageSize
type: int
default: 25
description: Maximum selected media items to return.
- name: pageToken
type: string
description: Continuation token from nextPageToken.
response:
type: array
item: PickedMediaItem
response_path: mediaItems
pagination:
type: page_token
cursor_param: pageToken
next_cursor_path: nextPageToken
meta:
mcp:read-only: "true"
types:
Empty:
fields: []
Album:
fields:
- name: id
type: string
- name: title
type: string
- name: productUrl
type: string
- name: mediaItemsCount
type: string
- name: coverPhotoBaseUrl
type: string
- name: coverPhotoMediaItemId
type: string
- name: isWriteable
type: bool
MediaItem:
fields:
- name: id
type: string
- name: description
type: string
- name: productUrl
type: string
- name: baseUrl
type: string
- name: mimeType
type: string
- name: filename
type: string
- name: mediaMetadata
type: object
- name: contributorInfo
type: object
MediaItemResult:
fields:
- name: status
type: object
- name: mediaItem
type: object
BatchCreateMediaItemsResponse:
fields:
- name: newMediaItemResults
type: array
BatchAddMediaItemsToAlbumResponse:
fields: []
BatchRemoveMediaItemsFromAlbumResponse:
fields: []
AddEnrichmentToAlbumResponse:
fields:
- name: enrichmentItem
type: object
PickingSession:
fields:
- name: id
type: string
- name: pickerUri
type: string
- name: pollingConfig
type: object
- name: expireTime
type: string
- name: pickingConfig
type: object
- name: mediaItemsSet
type: bool
PickedMediaItem:
fields:
- name: id
type: string
- name: createTime
type: string
- name: type
type: string
- name: mediaFile
type: object