@coldbirds/mcp-server 1.0.9 → 1.0.12

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.
@@ -102,6 +102,219 @@
102
102
  "path": "/api/v1/dashboard"
103
103
  }
104
104
  },
105
+ {
106
+ "name": "get_contact_list_analytics",
107
+ "title": "Get Contact List Analytics",
108
+ "description": "Returns deliverability, segmentation, and hygiene analytics for a contact list — the same multi-deck snapshot the in-app list dashboard shows. Includes the stoplight (sendable / risky / unsendable / unverified), validation status breakdown, provider mix (Google / Microsoft / other / unknown), validation freshness, top sending domains and free-mail count, suppression count, campaigns currently enrolling these contacts elsewhere (collision warning), standard + custom field coverage, top job titles, and contact-age cohorts. Use this to answer 'is this list ready to send?' or 'what does this list look like?' questions.",
109
+ "inputSchema": {
110
+ "type": "object",
111
+ "properties": {
112
+ "listId": {
113
+ "type": "string",
114
+ "description": "Contact list ID."
115
+ }
116
+ },
117
+ "required": ["listId"],
118
+ "additionalProperties": false
119
+ },
120
+ "outputSchema": {
121
+ "type": "object",
122
+ "properties": {
123
+ "listId": { "type": "string" },
124
+ "listName": { "type": "string" },
125
+ "total": { "type": "integer", "description": "Total non-deleted contacts in the list." },
126
+ "stoplight": {
127
+ "type": "object",
128
+ "description": "High-level decision-driving counts.",
129
+ "properties": {
130
+ "total": { "type": "integer" },
131
+ "sendable": { "type": "integer", "description": "VALID contacts." },
132
+ "risky": { "type": "integer", "description": "CATCH_ALL + ROLE + DISPOSABLE." },
133
+ "unsendable": { "type": "integer", "description": "INVALID + BOUNCED + FAILED + UNSUBSCRIBED + COMPLAINED." },
134
+ "unverified": { "type": "integer", "description": "UNKNOWN + PENDING." }
135
+ },
136
+ "required": ["total", "sendable", "risky", "unsendable", "unverified"]
137
+ },
138
+ "validationStatus": {
139
+ "type": "array",
140
+ "items": {
141
+ "type": "object",
142
+ "properties": {
143
+ "status": { "type": "string", "description": "ContactStatus enum value." },
144
+ "count": { "type": "integer" }
145
+ },
146
+ "required": ["status", "count"]
147
+ }
148
+ },
149
+ "providers": {
150
+ "type": "array",
151
+ "description": "Email provider mix derived from MX lookups.",
152
+ "items": {
153
+ "type": "object",
154
+ "properties": {
155
+ "provider": { "type": "string", "enum": ["GOOGLE", "MICROSOFT", "OTHER", "UNKNOWN"] },
156
+ "count": { "type": "integer" }
157
+ },
158
+ "required": ["provider", "count"]
159
+ }
160
+ },
161
+ "freshness": {
162
+ "type": "array",
163
+ "description": "How recently each contact's email was validated.",
164
+ "items": {
165
+ "type": "object",
166
+ "properties": {
167
+ "bucket": { "type": "string", "enum": ["LT_30D", "D30_90", "GT_90D", "NEVER"] },
168
+ "count": { "type": "integer" }
169
+ },
170
+ "required": ["bucket", "count"]
171
+ }
172
+ },
173
+ "topDomains": {
174
+ "type": "array",
175
+ "description": "Top 10 email domains by contact count.",
176
+ "items": {
177
+ "type": "object",
178
+ "properties": {
179
+ "domain": { "type": "string" },
180
+ "count": { "type": "integer" }
181
+ },
182
+ "required": ["domain", "count"]
183
+ }
184
+ },
185
+ "freeMailCount": { "type": "integer", "description": "Contacts on free providers (gmail/yahoo/outlook/...)." },
186
+ "suppressedCount": { "type": "integer", "description": "Suppressed (UNSUBSCRIBED / COMPLAINED / global suppression)." },
187
+ "activeEnrollmentsElsewhere": {
188
+ "type": "array",
189
+ "description": "Campaigns currently enrolling some of this list's contacts — useful to avoid collision.",
190
+ "items": {
191
+ "type": "object",
192
+ "properties": {
193
+ "campaignId": { "type": "string" },
194
+ "campaignName": { "type": "string" },
195
+ "status": { "type": "string", "description": "CampaignStatus enum (DRAFT, ACTIVE, PAUSED)." },
196
+ "dailyLimit": { "type": "integer" },
197
+ "contactCount": { "type": "integer" }
198
+ },
199
+ "required": ["campaignId", "campaignName", "status", "dailyLimit", "contactCount"]
200
+ }
201
+ },
202
+ "fieldCoverage": {
203
+ "type": "array",
204
+ "description": "Standard field population counts.",
205
+ "items": {
206
+ "type": "object",
207
+ "properties": {
208
+ "field": { "type": "string", "enum": ["firstName", "lastName", "company", "title"] },
209
+ "populated": { "type": "integer" }
210
+ },
211
+ "required": ["field", "populated"]
212
+ }
213
+ },
214
+ "customFields": {
215
+ "type": "array",
216
+ "description": "Custom field coverage and value distribution.",
217
+ "items": {
218
+ "type": "object",
219
+ "properties": {
220
+ "key": { "type": "string" },
221
+ "populated": { "type": "integer" },
222
+ "distinct": { "type": "integer" },
223
+ "topValues": {
224
+ "type": "array",
225
+ "items": {
226
+ "type": "object",
227
+ "properties": {
228
+ "value": { "type": "string" },
229
+ "count": { "type": "integer" }
230
+ },
231
+ "required": ["value", "count"]
232
+ }
233
+ },
234
+ "categorical": { "type": "boolean", "description": "True when distinct <= 20." },
235
+ "numeric": {
236
+ "type": "object",
237
+ "nullable": true,
238
+ "description": "Set when >= 80% of values parse as numbers.",
239
+ "properties": {
240
+ "min": { "type": "number" },
241
+ "max": { "type": "number" },
242
+ "median": { "type": "number" },
243
+ "bins": {
244
+ "type": "array",
245
+ "items": {
246
+ "type": "object",
247
+ "properties": {
248
+ "from": { "type": "number" },
249
+ "to": { "type": "number" },
250
+ "count": { "type": "integer" }
251
+ },
252
+ "required": ["from", "to", "count"]
253
+ }
254
+ }
255
+ },
256
+ "required": ["min", "max", "median", "bins"]
257
+ }
258
+ },
259
+ "required": ["key", "populated", "distinct", "topValues", "categorical", "numeric"]
260
+ }
261
+ },
262
+ "topTitles": {
263
+ "type": "array",
264
+ "description": "Top 20 job titles by contact count.",
265
+ "items": {
266
+ "type": "object",
267
+ "properties": {
268
+ "title": { "type": "string" },
269
+ "count": { "type": "integer" }
270
+ },
271
+ "required": ["title", "count"]
272
+ }
273
+ },
274
+ "addedAt": {
275
+ "type": "array",
276
+ "description": "When contacts were added to the list.",
277
+ "items": {
278
+ "type": "object",
279
+ "properties": {
280
+ "bucket": { "type": "string", "enum": ["THIS_WEEK", "THIS_MONTH", "M1_3", "M3_6", "GT_6M"] },
281
+ "count": { "type": "integer" }
282
+ },
283
+ "required": ["bucket", "count"]
284
+ }
285
+ },
286
+ "computedAt": { "type": "string", "description": "ISO timestamp when this snapshot was computed (cached for 5 minutes)." }
287
+ },
288
+ "required": [
289
+ "listId",
290
+ "listName",
291
+ "total",
292
+ "stoplight",
293
+ "validationStatus",
294
+ "providers",
295
+ "freshness",
296
+ "topDomains",
297
+ "freeMailCount",
298
+ "suppressedCount",
299
+ "activeEnrollmentsElsewhere",
300
+ "fieldCoverage",
301
+ "customFields",
302
+ "topTitles",
303
+ "addedAt",
304
+ "computedAt"
305
+ ]
306
+ },
307
+ "annotations": {
308
+ "readOnlyHint": true,
309
+ "destructiveHint": false,
310
+ "idempotentHint": true,
311
+ "openWorldHint": false
312
+ },
313
+ "_http": {
314
+ "method": "GET",
315
+ "path": "/api/v1/lists/{listId}/analytics"
316
+ }
317
+ },
105
318
  {
106
319
  "name": "get_account",
107
320
  "title": "Get Account",
@@ -3423,6 +3636,459 @@
3423
3636
  "method": "GET",
3424
3637
  "path": "/api/v1/campaigns/{campaignId}/variables"
3425
3638
  }
3639
+ },
3640
+ {
3641
+ "name": "list_inbox_messages",
3642
+ "title": "List Inbox Messages",
3643
+ "description": "Lists inbound email messages across all connected mailboxes. Supports folder filtering (inbox, replies, auto-replies, bounces, spam, starred, archived, all, warmup), free-text search, sender filter, mailbox/label filtering, read/unread state, starred flag, and date range. Cursor-paginated by receivedAt.",
3644
+ "inputSchema": {
3645
+ "type": "object",
3646
+ "properties": {
3647
+ "folder": {
3648
+ "type": "string",
3649
+ "enum": ["inbox", "replies", "auto-replies", "bounces", "spam", "starred", "archived", "all", "warmup"],
3650
+ "default": "inbox",
3651
+ "description": "Folder to list. Virtual folders (starred, archived, all, warmup) filter across real folders."
3652
+ },
3653
+ "cursor": {
3654
+ "type": "string",
3655
+ "format": "date-time",
3656
+ "description": "ISO-8601 cursor from the previous page's nextCursor."
3657
+ },
3658
+ "limit": {
3659
+ "type": "integer",
3660
+ "minimum": 1,
3661
+ "maximum": 100,
3662
+ "default": 50,
3663
+ "description": "Number of messages per page."
3664
+ },
3665
+ "q": {
3666
+ "type": "string",
3667
+ "description": "Free-text search across subject, snippet, body, and sender."
3668
+ },
3669
+ "from": {
3670
+ "type": "string",
3671
+ "description": "Filter by sender name or email (substring match)."
3672
+ },
3673
+ "mailboxIds": {
3674
+ "type": "string",
3675
+ "description": "Comma-separated mailbox IDs to restrict results."
3676
+ },
3677
+ "labelIds": {
3678
+ "type": "string",
3679
+ "description": "Comma-separated label IDs to filter by (OR semantics)."
3680
+ },
3681
+ "read": {
3682
+ "type": "string",
3683
+ "enum": ["read", "unread"],
3684
+ "description": "Filter by read status."
3685
+ },
3686
+ "starred": {
3687
+ "type": "string",
3688
+ "enum": ["true"],
3689
+ "description": "When 'true', only return starred messages."
3690
+ },
3691
+ "dateFrom": {
3692
+ "type": "string",
3693
+ "format": "date-time",
3694
+ "description": "Inclusive lower bound on receivedAt (ISO-8601)."
3695
+ },
3696
+ "dateTo": {
3697
+ "type": "string",
3698
+ "format": "date-time",
3699
+ "description": "Inclusive upper bound on receivedAt (ISO-8601)."
3700
+ }
3701
+ },
3702
+ "additionalProperties": false
3703
+ },
3704
+ "annotations": {
3705
+ "readOnlyHint": true,
3706
+ "destructiveHint": false,
3707
+ "idempotentHint": true,
3708
+ "openWorldHint": false
3709
+ },
3710
+ "_http": {
3711
+ "method": "GET",
3712
+ "path": "/api/v1/inbox/messages"
3713
+ }
3714
+ },
3715
+ {
3716
+ "name": "get_inbox_message",
3717
+ "title": "Get Inbox Message",
3718
+ "description": "Returns full details of a single inbound message including HTML/text body, headers, and a presigned download URL for the raw RFC822. Automatically marks the message as read on first access.",
3719
+ "inputSchema": {
3720
+ "type": "object",
3721
+ "properties": {
3722
+ "id": {
3723
+ "type": "string",
3724
+ "description": "Inbound message ID."
3725
+ }
3726
+ },
3727
+ "required": ["id"],
3728
+ "additionalProperties": false
3729
+ },
3730
+ "annotations": {
3731
+ "readOnlyHint": false,
3732
+ "destructiveHint": false,
3733
+ "idempotentHint": true,
3734
+ "openWorldHint": false
3735
+ },
3736
+ "_http": {
3737
+ "method": "GET",
3738
+ "path": "/api/v1/inbox/messages/{id}"
3739
+ }
3740
+ },
3741
+ {
3742
+ "name": "update_inbox_message",
3743
+ "title": "Update Inbox Message",
3744
+ "description": "Updates mutable fields on an inbound message: mark as read/unread, star/unstar, archive/unarchive, or assign/clear a label. Only provided fields are changed.",
3745
+ "inputSchema": {
3746
+ "type": "object",
3747
+ "properties": {
3748
+ "id": {
3749
+ "type": "string",
3750
+ "description": "Inbound message ID."
3751
+ },
3752
+ "read": {
3753
+ "type": "boolean",
3754
+ "description": "Set true to mark as read, false to mark unread."
3755
+ },
3756
+ "starred": {
3757
+ "type": "boolean",
3758
+ "description": "Set true to star, false to unstar."
3759
+ },
3760
+ "archived": {
3761
+ "type": "boolean",
3762
+ "description": "Set true to archive, false to unarchive."
3763
+ },
3764
+ "labelId": {
3765
+ "type": ["string", "null"],
3766
+ "description": "Inbox label ID to assign, or null to clear the label."
3767
+ }
3768
+ },
3769
+ "required": ["id"],
3770
+ "additionalProperties": false
3771
+ },
3772
+ "annotations": {
3773
+ "readOnlyHint": false,
3774
+ "destructiveHint": false,
3775
+ "idempotentHint": true,
3776
+ "openWorldHint": false
3777
+ },
3778
+ "_http": {
3779
+ "method": "PATCH",
3780
+ "path": "/api/v1/inbox/messages/{id}"
3781
+ }
3782
+ },
3783
+ {
3784
+ "name": "reply_to_message",
3785
+ "title": "Reply to Inbox Message",
3786
+ "description": "Sends a reply to an inbound message using the mailbox that originally received it. Automatically threads via In-Reply-To/References headers and includes quoted context.",
3787
+ "inputSchema": {
3788
+ "type": "object",
3789
+ "properties": {
3790
+ "id": {
3791
+ "type": "string",
3792
+ "description": "Inbound message ID to reply to."
3793
+ },
3794
+ "body": {
3795
+ "type": "string",
3796
+ "minLength": 1,
3797
+ "maxLength": 50000,
3798
+ "description": "Reply body in HTML."
3799
+ },
3800
+ "subject": {
3801
+ "type": "string",
3802
+ "maxLength": 998,
3803
+ "description": "Optional subject override. Defaults to 'Re: <original subject>'."
3804
+ }
3805
+ },
3806
+ "required": ["id", "body"],
3807
+ "additionalProperties": false
3808
+ },
3809
+ "annotations": {
3810
+ "readOnlyHint": false,
3811
+ "destructiveHint": false,
3812
+ "idempotentHint": false,
3813
+ "openWorldHint": true
3814
+ },
3815
+ "_http": {
3816
+ "method": "POST",
3817
+ "path": "/api/v1/inbox/messages/{id}/reply"
3818
+ }
3819
+ },
3820
+ {
3821
+ "name": "list_message_replies",
3822
+ "title": "List Message Replies",
3823
+ "description": "Lists all outbound replies sent for a specific inbound message, ordered chronologically. Useful for viewing the full reply thread.",
3824
+ "inputSchema": {
3825
+ "type": "object",
3826
+ "properties": {
3827
+ "id": {
3828
+ "type": "string",
3829
+ "description": "Inbound message ID."
3830
+ }
3831
+ },
3832
+ "required": ["id"],
3833
+ "additionalProperties": false
3834
+ },
3835
+ "annotations": {
3836
+ "readOnlyHint": true,
3837
+ "destructiveHint": false,
3838
+ "idempotentHint": true,
3839
+ "openWorldHint": false
3840
+ },
3841
+ "_http": {
3842
+ "method": "GET",
3843
+ "path": "/api/v1/inbox/messages/{id}/replies"
3844
+ }
3845
+ },
3846
+ {
3847
+ "name": "list_sent_messages",
3848
+ "title": "List Sent Messages",
3849
+ "description": "Lists outbound replies and composed emails sent by the user, collapsed by thread (toEmail + normalized subject). Cursor-paginated by sentAt.",
3850
+ "inputSchema": {
3851
+ "type": "object",
3852
+ "properties": {
3853
+ "cursor": {
3854
+ "type": "string",
3855
+ "format": "date-time",
3856
+ "description": "ISO-8601 cursor from the previous page's nextCursor."
3857
+ },
3858
+ "limit": {
3859
+ "type": "integer",
3860
+ "minimum": 1,
3861
+ "maximum": 100,
3862
+ "default": 50,
3863
+ "description": "Number of threads per page."
3864
+ },
3865
+ "q": {
3866
+ "type": "string",
3867
+ "description": "Free-text search across subject, body, and recipient."
3868
+ }
3869
+ },
3870
+ "additionalProperties": false
3871
+ },
3872
+ "annotations": {
3873
+ "readOnlyHint": true,
3874
+ "destructiveHint": false,
3875
+ "idempotentHint": true,
3876
+ "openWorldHint": false
3877
+ },
3878
+ "_http": {
3879
+ "method": "GET",
3880
+ "path": "/api/v1/inbox/sent"
3881
+ }
3882
+ },
3883
+ {
3884
+ "name": "compose_email",
3885
+ "title": "Compose Email",
3886
+ "description": "Compose and send a new email from a connected mailbox. Not a reply — creates a fresh thread. The email is sent immediately via the mailbox's configured transport (SMTP / Google / Microsoft).",
3887
+ "inputSchema": {
3888
+ "type": "object",
3889
+ "properties": {
3890
+ "mailboxId": {
3891
+ "type": "string",
3892
+ "description": "ID of the sender mailbox to use."
3893
+ },
3894
+ "to": {
3895
+ "type": "string",
3896
+ "format": "email",
3897
+ "description": "Recipient email address."
3898
+ },
3899
+ "subject": {
3900
+ "type": "string",
3901
+ "minLength": 1,
3902
+ "maxLength": 998,
3903
+ "description": "Email subject line."
3904
+ },
3905
+ "body": {
3906
+ "type": "string",
3907
+ "minLength": 1,
3908
+ "maxLength": 50000,
3909
+ "description": "Email body in HTML."
3910
+ },
3911
+ "cc": {
3912
+ "type": "array",
3913
+ "items": { "type": "string", "format": "email" },
3914
+ "description": "CC recipients."
3915
+ },
3916
+ "bcc": {
3917
+ "type": "array",
3918
+ "items": { "type": "string", "format": "email" },
3919
+ "description": "BCC recipients."
3920
+ }
3921
+ },
3922
+ "required": ["mailboxId", "to", "subject", "body"],
3923
+ "additionalProperties": false
3924
+ },
3925
+ "annotations": {
3926
+ "readOnlyHint": false,
3927
+ "destructiveHint": false,
3928
+ "idempotentHint": false,
3929
+ "openWorldHint": true
3930
+ },
3931
+ "_http": {
3932
+ "method": "POST",
3933
+ "path": "/api/v1/inbox/compose"
3934
+ }
3935
+ },
3936
+ {
3937
+ "name": "get_inbox_counts",
3938
+ "title": "Get Inbox Counts",
3939
+ "description": "Returns total and unread message counts per folder (inbox, replies, auto-replies, bounces, spam, starred, archived, all, warmup, sent) plus per-label message counts. Powers the sidebar badges.",
3940
+ "inputSchema": {
3941
+ "type": "object",
3942
+ "additionalProperties": false
3943
+ },
3944
+ "annotations": {
3945
+ "readOnlyHint": true,
3946
+ "destructiveHint": false,
3947
+ "idempotentHint": true,
3948
+ "openWorldHint": false
3949
+ },
3950
+ "_http": {
3951
+ "method": "GET",
3952
+ "path": "/api/v1/inbox/counts"
3953
+ }
3954
+ },
3955
+ {
3956
+ "name": "trigger_inbox_scan",
3957
+ "title": "Trigger Inbox Scan",
3958
+ "description": "Triggers an immediate IMAP scan to check for new messages. Optionally scope to a single mailbox by passing mailboxId; omit to scan all eligible mailboxes.",
3959
+ "inputSchema": {
3960
+ "type": "object",
3961
+ "properties": {
3962
+ "mailboxId": {
3963
+ "type": "string",
3964
+ "description": "Optional mailbox ID to scan. Omit to scan all mailboxes."
3965
+ }
3966
+ },
3967
+ "additionalProperties": false
3968
+ },
3969
+ "annotations": {
3970
+ "readOnlyHint": false,
3971
+ "destructiveHint": false,
3972
+ "idempotentHint": true,
3973
+ "openWorldHint": false
3974
+ },
3975
+ "_http": {
3976
+ "method": "POST",
3977
+ "path": "/api/v1/inbox/scan"
3978
+ }
3979
+ },
3980
+ {
3981
+ "name": "list_inbox_labels",
3982
+ "title": "List Inbox Labels",
3983
+ "description": "Lists the user's inbox message labels (Auto-reply, OOO, Opportunity, Positive reply, Negative reply, custom labels) with message counts and classification rule counts.",
3984
+ "inputSchema": {
3985
+ "type": "object",
3986
+ "additionalProperties": false
3987
+ },
3988
+ "annotations": {
3989
+ "readOnlyHint": true,
3990
+ "destructiveHint": false,
3991
+ "idempotentHint": true,
3992
+ "openWorldHint": false
3993
+ },
3994
+ "_http": {
3995
+ "method": "GET",
3996
+ "path": "/api/v1/inbox/labels"
3997
+ }
3998
+ },
3999
+ {
4000
+ "name": "create_inbox_label",
4001
+ "title": "Create Inbox Label",
4002
+ "description": "Creates a new inbox message label. Names must be unique per account.",
4003
+ "inputSchema": {
4004
+ "type": "object",
4005
+ "properties": {
4006
+ "name": {
4007
+ "type": "string",
4008
+ "minLength": 1,
4009
+ "maxLength": 100,
4010
+ "description": "Label name."
4011
+ },
4012
+ "color": {
4013
+ "type": "string",
4014
+ "description": "Hex color code (e.g. '#6b7280'). Defaults to gray."
4015
+ }
4016
+ },
4017
+ "required": ["name"],
4018
+ "additionalProperties": false
4019
+ },
4020
+ "annotations": {
4021
+ "readOnlyHint": false,
4022
+ "destructiveHint": false,
4023
+ "idempotentHint": false,
4024
+ "openWorldHint": false
4025
+ },
4026
+ "_http": {
4027
+ "method": "POST",
4028
+ "path": "/api/v1/inbox/labels"
4029
+ }
4030
+ },
4031
+ {
4032
+ "name": "update_inbox_label",
4033
+ "title": "Update Inbox Label",
4034
+ "description": "Renames or recolors an inbox message label.",
4035
+ "inputSchema": {
4036
+ "type": "object",
4037
+ "properties": {
4038
+ "id": {
4039
+ "type": "string",
4040
+ "description": "Label ID."
4041
+ },
4042
+ "name": {
4043
+ "type": "string",
4044
+ "minLength": 1,
4045
+ "maxLength": 100,
4046
+ "description": "New label name."
4047
+ },
4048
+ "color": {
4049
+ "type": "string",
4050
+ "description": "New hex color code."
4051
+ }
4052
+ },
4053
+ "required": ["id"],
4054
+ "additionalProperties": false
4055
+ },
4056
+ "annotations": {
4057
+ "readOnlyHint": false,
4058
+ "destructiveHint": false,
4059
+ "idempotentHint": true,
4060
+ "openWorldHint": false
4061
+ },
4062
+ "_http": {
4063
+ "method": "PATCH",
4064
+ "path": "/api/v1/inbox/labels/{id}"
4065
+ }
4066
+ },
4067
+ {
4068
+ "name": "delete_inbox_label",
4069
+ "title": "Delete Inbox Label",
4070
+ "description": "Deletes an inbox message label. Messages tagged with this label will have their label cleared.",
4071
+ "inputSchema": {
4072
+ "type": "object",
4073
+ "properties": {
4074
+ "id": {
4075
+ "type": "string",
4076
+ "description": "Label ID to delete."
4077
+ }
4078
+ },
4079
+ "required": ["id"],
4080
+ "additionalProperties": false
4081
+ },
4082
+ "annotations": {
4083
+ "readOnlyHint": false,
4084
+ "destructiveHint": true,
4085
+ "idempotentHint": true,
4086
+ "openWorldHint": false
4087
+ },
4088
+ "_http": {
4089
+ "method": "DELETE",
4090
+ "path": "/api/v1/inbox/labels/{id}"
4091
+ }
3426
4092
  }
3427
4093
  ]
3428
4094
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coldbirds/mcp-server",
3
- "version": "1.0.9",
3
+ "version": "1.0.12",
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",