jotae-mcp 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +24 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -217,6 +217,7 @@ const TOOLS = [
|
|
|
217
217
|
destination: { type: 'string', enum: ['individual', 'group'], description: 'Destino WhatsApp (padrão: individual)' },
|
|
218
218
|
media_url: { type: 'string', description: 'URL de mídia opcional (WhatsApp)' },
|
|
219
219
|
media_type: { type: 'string', enum: ['image', 'video', 'document'], description: 'Tipo de mídia (WhatsApp)' },
|
|
220
|
+
folder_id: { type: 'string', description: 'ID da pasta (use list_folders ou create_folder)' },
|
|
220
221
|
},
|
|
221
222
|
required: ['channel', 'name', 'body'],
|
|
222
223
|
},
|
|
@@ -239,6 +240,23 @@ const TOOLS = [
|
|
|
239
240
|
required: ['template_id'],
|
|
240
241
|
},
|
|
241
242
|
},
|
|
243
|
+
// ── Pastas de templates ──
|
|
244
|
+
{
|
|
245
|
+
name: 'list_folders',
|
|
246
|
+
description: 'Lista as pastas de templates criadas pelo produtor.',
|
|
247
|
+
inputSchema: { type: 'object', properties: {} },
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
name: 'create_folder',
|
|
251
|
+
description: 'Cria uma pasta para organizar templates. Retorna o folder_id para usar em create_template.',
|
|
252
|
+
inputSchema: {
|
|
253
|
+
type: 'object',
|
|
254
|
+
properties: {
|
|
255
|
+
name: { type: 'string', description: 'Nome da pasta (ex: "Aquecimento", "Pós-live")' },
|
|
256
|
+
},
|
|
257
|
+
required: ['name'],
|
|
258
|
+
},
|
|
259
|
+
},
|
|
242
260
|
// ── Dados ──
|
|
243
261
|
{
|
|
244
262
|
name: 'list_contacts',
|
|
@@ -399,6 +417,12 @@ server.setRequestHandler(types_js_1.CallToolRequestSchema, async (req) => {
|
|
|
399
417
|
result = await api('PATCH', `/templates/${template_id}`, patch);
|
|
400
418
|
break;
|
|
401
419
|
}
|
|
420
|
+
case 'list_folders':
|
|
421
|
+
result = await api('GET', '/folders');
|
|
422
|
+
break;
|
|
423
|
+
case 'create_folder':
|
|
424
|
+
result = await api('POST', '/folders', { name: a.name });
|
|
425
|
+
break;
|
|
402
426
|
case 'list_contacts':
|
|
403
427
|
result = await api('GET', `/contacts?limit=${a.limit ?? 100}&offset=${a.offset ?? 0}`);
|
|
404
428
|
break;
|