@coldbirds/mcp-server 1.0.12 → 1.0.13
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/mcp.fallback.json +117 -0
- package/package.json +1 -1
package/dist/mcp.fallback.json
CHANGED
|
@@ -1388,6 +1388,123 @@
|
|
|
1388
1388
|
"path": "/api/v1/campaigns/{campaignId}/enrollments"
|
|
1389
1389
|
}
|
|
1390
1390
|
},
|
|
1391
|
+
{
|
|
1392
|
+
"name": "get_campaign_sync",
|
|
1393
|
+
"title": "Get Campaign Sync Overview",
|
|
1394
|
+
"description": "Returns the rolling-enrollment state of a campaign: the lists it draws from (each with its auto-sync toggle and live member count) and the review buffer — synced-list members awaiting validation that have not yet been auto-enrolled. Use to inspect which lists keep the sequence in sync and who is waiting.",
|
|
1395
|
+
"inputSchema": {
|
|
1396
|
+
"type": "object",
|
|
1397
|
+
"properties": {
|
|
1398
|
+
"id": {
|
|
1399
|
+
"type": "string",
|
|
1400
|
+
"description": "Campaign ID."
|
|
1401
|
+
}
|
|
1402
|
+
},
|
|
1403
|
+
"required": ["id"],
|
|
1404
|
+
"additionalProperties": false
|
|
1405
|
+
},
|
|
1406
|
+
"outputSchema": {
|
|
1407
|
+
"type": "object",
|
|
1408
|
+
"additionalProperties": true,
|
|
1409
|
+
"description": "Sync overview with `lists` (listId, name, autoSync, memberCount) and `pendingLeads` (contactId, email, firstName, lastName, status)."
|
|
1410
|
+
},
|
|
1411
|
+
"annotations": {
|
|
1412
|
+
"readOnlyHint": true,
|
|
1413
|
+
"destructiveHint": false,
|
|
1414
|
+
"idempotentHint": true,
|
|
1415
|
+
"openWorldHint": false
|
|
1416
|
+
},
|
|
1417
|
+
"_http": {
|
|
1418
|
+
"method": "GET",
|
|
1419
|
+
"path": "/api/v1/campaigns/{id}/sync"
|
|
1420
|
+
}
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
"name": "set_list_auto_sync",
|
|
1424
|
+
"title": "Toggle Rolling Enrollment for a List",
|
|
1425
|
+
"description": "Turns rolling enrollment (auto-sync) on or off for one of a campaign's lists. When on, new VALID members added to that list are enrolled into the campaign automatically by the sync cron; unverified members wait in the review buffer. When off, the list is a static snapshot.",
|
|
1426
|
+
"inputSchema": {
|
|
1427
|
+
"type": "object",
|
|
1428
|
+
"properties": {
|
|
1429
|
+
"id": {
|
|
1430
|
+
"type": "string",
|
|
1431
|
+
"description": "Campaign ID."
|
|
1432
|
+
},
|
|
1433
|
+
"listId": {
|
|
1434
|
+
"type": "string",
|
|
1435
|
+
"description": "Contact list ID to toggle."
|
|
1436
|
+
},
|
|
1437
|
+
"autoSync": {
|
|
1438
|
+
"type": "boolean",
|
|
1439
|
+
"description": "true to enable rolling enrollment, false to disable."
|
|
1440
|
+
}
|
|
1441
|
+
},
|
|
1442
|
+
"required": ["id", "listId", "autoSync"],
|
|
1443
|
+
"additionalProperties": false
|
|
1444
|
+
},
|
|
1445
|
+
"outputSchema": {
|
|
1446
|
+
"type": "object",
|
|
1447
|
+
"properties": {
|
|
1448
|
+
"autoSync": {
|
|
1449
|
+
"type": "boolean",
|
|
1450
|
+
"description": "The new auto-sync state for the list."
|
|
1451
|
+
}
|
|
1452
|
+
},
|
|
1453
|
+
"required": ["autoSync"],
|
|
1454
|
+
"additionalProperties": false
|
|
1455
|
+
},
|
|
1456
|
+
"annotations": {
|
|
1457
|
+
"readOnlyHint": false,
|
|
1458
|
+
"destructiveHint": false,
|
|
1459
|
+
"idempotentHint": true,
|
|
1460
|
+
"openWorldHint": false
|
|
1461
|
+
},
|
|
1462
|
+
"_http": {
|
|
1463
|
+
"method": "PATCH",
|
|
1464
|
+
"path": "/api/v1/campaigns/{id}/sync"
|
|
1465
|
+
}
|
|
1466
|
+
},
|
|
1467
|
+
{
|
|
1468
|
+
"name": "release_pending_lead",
|
|
1469
|
+
"title": "Release a Buffered Lead",
|
|
1470
|
+
"description": "Manually enrolls a contact sitting in a campaign's rolling-enrollment review buffer, regardless of validation status. Use to push an unverified-but-wanted lead into the sequence immediately instead of waiting for validation.",
|
|
1471
|
+
"inputSchema": {
|
|
1472
|
+
"type": "object",
|
|
1473
|
+
"properties": {
|
|
1474
|
+
"id": {
|
|
1475
|
+
"type": "string",
|
|
1476
|
+
"description": "Campaign ID."
|
|
1477
|
+
},
|
|
1478
|
+
"contactId": {
|
|
1479
|
+
"type": "string",
|
|
1480
|
+
"description": "Contact ID to release from the buffer and enroll."
|
|
1481
|
+
}
|
|
1482
|
+
},
|
|
1483
|
+
"required": ["id", "contactId"],
|
|
1484
|
+
"additionalProperties": false
|
|
1485
|
+
},
|
|
1486
|
+
"outputSchema": {
|
|
1487
|
+
"type": "object",
|
|
1488
|
+
"properties": {
|
|
1489
|
+
"enrolled": {
|
|
1490
|
+
"type": "boolean",
|
|
1491
|
+
"description": "True when a new enrollment was created."
|
|
1492
|
+
}
|
|
1493
|
+
},
|
|
1494
|
+
"required": ["enrolled"],
|
|
1495
|
+
"additionalProperties": false
|
|
1496
|
+
},
|
|
1497
|
+
"annotations": {
|
|
1498
|
+
"readOnlyHint": false,
|
|
1499
|
+
"destructiveHint": false,
|
|
1500
|
+
"idempotentHint": false,
|
|
1501
|
+
"openWorldHint": false
|
|
1502
|
+
},
|
|
1503
|
+
"_http": {
|
|
1504
|
+
"method": "POST",
|
|
1505
|
+
"path": "/api/v1/campaigns/{id}/sync/release"
|
|
1506
|
+
}
|
|
1507
|
+
},
|
|
1391
1508
|
{
|
|
1392
1509
|
"name": "get_enrollment",
|
|
1393
1510
|
"title": "Get Enrollment",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coldbirds/mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.13",
|
|
4
4
|
"description": "MCP server for ColdBirds Sequence — control campaigns, contacts, and mailboxes from AI assistants like Claude Desktop, Cursor, and Windsurf.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"coldbirds",
|