forked from mvanhorn/printing-press-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools-manifest.json
More file actions
375 lines (375 loc) · 9.58 KB
/
Copy pathtools-manifest.json
File metadata and controls
375 lines (375 loc) · 9.58 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
{
"api_name": "etherpad",
"base_url": "{{ETHERPAD_URL}}/api/1.3.1",
"description": "Etherpad is a real-time collaborative editor.",
"mcp_ready": "full",
"http_transport": "standard",
"auth": {
"type": "bearer_token",
"header": "Authorization",
"env_vars": [
"ETHERPAD_OPENID"
],
"env_var_specs": [
{
"name": "ETHERPAD_OPENID",
"kind": "per_call",
"required": true,
"sensitive": true,
"inferred": false
}
]
},
"tools": [
{
"name": "create-group",
"description": "creates a new group",
"method": "POST",
"path": "/createGroup",
"params": []
},
{
"name": "create-group-if-not-exists-for",
"description": "this functions helps you to map your application group ids to Etherpad group ids",
"method": "POST",
"path": "/createGroupIfNotExistsFor",
"params": []
},
{
"name": "delete-group",
"description": "deletes a group",
"method": "POST",
"path": "/deleteGroup",
"params": []
},
{
"name": "list-pads",
"description": "returns all pads of this group",
"method": "POST",
"path": "/listPads",
"params": []
},
{
"name": "create-pad",
"description": "creates a new (non-group) pad",
"method": "POST",
"path": "/createPad",
"params": []
},
{
"name": "create-group-pad",
"description": "creates a new pad in this group",
"method": "POST",
"path": "/createGroupPad",
"params": []
},
{
"name": "create-author",
"description": "creates a new author",
"method": "POST",
"path": "/createAuthor",
"params": []
},
{
"name": "create-author-if-not-exists-for",
"description": "this functions helps you to map your application author ids to Etherpad author ids",
"method": "POST",
"path": "/createAuthorIfNotExistsFor",
"params": []
},
{
"name": "list-pads-of-author",
"description": "returns an array of all pads this author contributed to",
"method": "POST",
"path": "/listPadsOfAuthor",
"params": []
},
{
"name": "create-session",
"description": "creates a new session. validUntil is an unix timestamp in seconds",
"method": "POST",
"path": "/createSession",
"params": []
},
{
"name": "delete-session",
"description": "deletes a session",
"method": "POST",
"path": "/deleteSession",
"params": []
},
{
"name": "get-session-info",
"description": "returns information about a session",
"method": "POST",
"path": "/getSessionInfo",
"params": []
},
{
"name": "list-sessions-of-group",
"description": "returns all sessions of a group",
"method": "POST",
"path": "/listSessionsOfGroup",
"params": []
},
{
"name": "list-sessions-of-author",
"description": "returns all sessions of an author",
"method": "POST",
"path": "/listSessionsOfAuthor",
"params": []
},
{
"name": "get-text",
"description": "returns the text of a pad",
"method": "POST",
"path": "/getText",
"params": []
},
{
"name": "set-text",
"description": "sets the text of a pad",
"method": "POST",
"path": "/setText",
"params": []
},
{
"name": "get-html",
"description": "returns the text of a pad formatted as HTML",
"method": "POST",
"path": "/getHTML",
"params": []
},
{
"name": "set-html",
"description": "sets the text of a pad with HTML",
"method": "POST",
"path": "/setHTML",
"params": []
},
{
"name": "get-revisions-count",
"description": "returns the number of revisions of this pad",
"method": "POST",
"path": "/getRevisionsCount",
"params": []
},
{
"name": "get-last-edited",
"description": "returns the timestamp of the last revision of the pad",
"method": "POST",
"path": "/getLastEdited",
"params": []
},
{
"name": "delete-pad",
"description": "deletes a pad",
"method": "POST",
"path": "/deletePad",
"params": []
},
{
"name": "get-read-only-id",
"description": "returns the read only link of a pad",
"method": "POST",
"path": "/getReadOnlyID",
"params": []
},
{
"name": "set-public-status",
"description": "sets a boolean for the public status of a pad",
"method": "POST",
"path": "/setPublicStatus",
"params": []
},
{
"name": "get-public-status",
"description": "return true of false",
"method": "POST",
"path": "/getPublicStatus",
"params": []
},
{
"name": "list-authors-of-pad",
"description": "returns an array of authors who contributed to this pad",
"method": "POST",
"path": "/listAuthorsOfPad",
"params": []
},
{
"name": "pad-users-count",
"description": "returns the number of user that are currently editing this pad",
"method": "POST",
"path": "/padUsersCount",
"params": []
},
{
"name": "get-author-name",
"description": "Returns the Author Name of the author",
"method": "POST",
"path": "/getAuthorName",
"params": []
},
{
"name": "pad-users",
"description": "returns the list of users that are currently editing this pad",
"method": "POST",
"path": "/padUsers",
"params": []
},
{
"name": "send-clients-message",
"description": "sends a custom message of type msg to the pad",
"method": "POST",
"path": "/sendClientsMessage",
"params": []
},
{
"name": "list-all-groups",
"description": "returns the IDs of all groups on this server",
"method": "POST",
"path": "/listAllGroups",
"params": []
},
{
"name": "check-token",
"description": "returns ok when the current API token is valid",
"method": "POST",
"path": "/checkToken",
"params": []
},
{
"name": "list-all-pads",
"description": "list all the pads",
"method": "POST",
"path": "/listAllPads",
"params": []
},
{
"name": "create-diff-html",
"description": "returns an HTML diff between two revisions of a pad",
"method": "POST",
"path": "/createDiffHTML",
"params": []
},
{
"name": "get-chat-history",
"description": "returns the chat history",
"method": "POST",
"path": "/getChatHistory",
"params": []
},
{
"name": "get-chat-head",
"description": "returns the chatHead (chat-message) of the pad",
"method": "POST",
"path": "/getChatHead",
"params": []
},
{
"name": "get-attribute-pool",
"description": "returns the attribute pool of a pad",
"method": "POST",
"path": "/getAttributePool",
"params": []
},
{
"name": "get-revision-changeset",
"description": "returns the changeset at a given revision of a pad",
"method": "POST",
"path": "/getRevisionChangeset",
"params": []
},
{
"name": "copy-pad",
"description": "copies a pad with full history and chat",
"method": "POST",
"path": "/copyPad",
"params": []
},
{
"name": "move-pad",
"description": "moves a pad — copy then delete the original",
"method": "POST",
"path": "/movePad",
"params": []
},
{
"name": "get-pad-id",
"description": "returns the read-write pad ID for a given read-only pad ID",
"method": "POST",
"path": "/getPadID",
"params": []
},
{
"name": "get-saved-revisions-count",
"description": "returns the number of saved revisions of a pad",
"method": "POST",
"path": "/getSavedRevisionsCount",
"params": []
},
{
"name": "list-saved-revisions",
"description": "returns the list of saved revisions of a pad",
"method": "POST",
"path": "/listSavedRevisions",
"params": []
},
{
"name": "save-revision",
"description": "saves a revision of a pad",
"method": "POST",
"path": "/saveRevision",
"params": []
},
{
"name": "restore-revision",
"description": "restores a pad to a specific revision",
"method": "POST",
"path": "/restoreRevision",
"params": []
},
{
"name": "append-chat-message",
"description": "appends a chat message",
"method": "POST",
"path": "/appendChatMessage",
"params": []
},
{
"name": "append-text",
"description": "appends text to a pad",
"method": "POST",
"path": "/appendText",
"params": []
},
{
"name": "get-stats",
"description": "returns server-wide statistics",
"method": "POST",
"path": "/getStats",
"params": []
},
{
"name": "copy-pad-without-history",
"description": "copies a pad without history or chat",
"method": "POST",
"path": "/copyPadWithoutHistory",
"params": []
},
{
"name": "compact-pad",
"description": "compacts a pad's revision history, keeping recent revisions only",
"method": "POST",
"path": "/compactPad",
"params": []
},
{
"name": "anonymize-author",
"description": "anonymizes an author across all their edits",
"method": "POST",
"path": "/anonymizeAuthor",
"params": []
}
]
}