@apteva/integrations 0.3.39 → 0.3.43

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.
@@ -1,119 +0,0 @@
1
- {
2
- "slug": "pushover-notifications",
3
- "name": "Pushover",
4
- "description": "MCP server for sending push notifications via Pushover",
5
- "logo": "https://www.google.com/s2/favicons?domain=pushover.net&sz=128",
6
- "categories": [
7
- "notifications",
8
- "pushover",
9
- "messaging"
10
- ],
11
- "base_url": "",
12
- "auth": {
13
- "types": [
14
- "bearer"
15
- ],
16
- "headers": {
17
- "Authorization": "Bearer {{token}}"
18
- },
19
- "credential_fields": [
20
- {
21
- "name": "appToken",
22
- "label": "App Token",
23
- "description": "Application API Token from your Pushover app"
24
- },
25
- {
26
- "name": "userKey",
27
- "label": "User Key",
28
- "description": "Your Pushover User Key or Group Key"
29
- }
30
- ]
31
- },
32
- "tools": [
33
- {
34
- "name": "send_notification",
35
- "description": "Send a push notification to a user or device via Pushover",
36
- "method": "POST",
37
- "path": "/send-notification",
38
- "input_schema": {
39
- "type": "object",
40
- "properties": {
41
- "message": {
42
- "type": "string",
43
- "description": "The notification message to send"
44
- },
45
- "title": {
46
- "type": "string",
47
- "description": "Optional title for the notification",
48
- "default": "Notification"
49
- },
50
- "priority": {
51
- "type": "integer",
52
- "description": "Message priority (-2 to 2)",
53
- "enum": [
54
- -2,
55
- -1,
56
- 0,
57
- 1,
58
- 2
59
- ],
60
- "default": 0
61
- },
62
- "sound": {
63
- "type": "string",
64
- "description": "Notification sound",
65
- "default": "pushover"
66
- },
67
- "url": {
68
- "type": "string",
69
- "description": "Optional URL to include"
70
- },
71
- "url_title": {
72
- "type": "string",
73
- "description": "Title for the URL"
74
- },
75
- "device": {
76
- "type": "string",
77
- "description": "Target device name"
78
- }
79
- },
80
- "required": [
81
- "message"
82
- ]
83
- }
84
- },
85
- {
86
- "name": "send_priority_alert",
87
- "description": "Send a high-priority alert that requires acknowledgment",
88
- "method": "POST",
89
- "path": "/send-priority-alert",
90
- "input_schema": {
91
- "type": "object",
92
- "properties": {
93
- "message": {
94
- "type": "string",
95
- "description": "The alert message"
96
- },
97
- "title": {
98
- "type": "string",
99
- "description": "Alert title",
100
- "default": "PRIORITY ALERT"
101
- },
102
- "expire": {
103
- "type": "integer",
104
- "description": "How long to keep sending alerts (seconds)",
105
- "default": 3600
106
- },
107
- "retry": {
108
- "type": "integer",
109
- "description": "How often to retry (seconds)",
110
- "default": 60
111
- }
112
- },
113
- "required": [
114
- "message"
115
- ]
116
- }
117
- }
118
- ]
119
- }
@@ -1,275 +0,0 @@
1
- {
2
- "slug": "sendgrid-email",
3
- "name": "SendGrid",
4
- "description": "MCP server for SendGrid email delivery, template management, and email analytics",
5
- "logo": "https://www.google.com/s2/favicons?domain=sendgrid.com&sz=128",
6
- "categories": [
7
- "sendgrid",
8
- "email",
9
- "delivery",
10
- "templates",
11
- "marketing"
12
- ],
13
- "base_url": "",
14
- "auth": {
15
- "types": [
16
- "bearer"
17
- ],
18
- "headers": {
19
- "Authorization": "Bearer {{token}}"
20
- },
21
- "credential_fields": [
22
- {
23
- "name": "api_key",
24
- "label": "Api_key",
25
- "description": "Your SendGrid API Key"
26
- }
27
- ]
28
- },
29
- "tools": [
30
- {
31
- "name": "send_email",
32
- "description": "Send an email via SendGrid",
33
- "method": "POST",
34
- "path": "/send-email",
35
- "input_schema": {
36
- "type": "object",
37
- "properties": {
38
- "to": {
39
- "type": "array",
40
- "description": "Recipient email addresses",
41
- "items": {
42
- "type": "object",
43
- "properties": {
44
- "email": {
45
- "type": "string"
46
- },
47
- "name": {
48
- "type": "string"
49
- }
50
- }
51
- }
52
- },
53
- "from": {
54
- "type": "object",
55
- "description": "Sender information",
56
- "properties": {
57
- "email": {
58
- "type": "string"
59
- },
60
- "name": {
61
- "type": "string"
62
- }
63
- }
64
- },
65
- "subject": {
66
- "type": "string",
67
- "description": "Email subject"
68
- },
69
- "content": {
70
- "type": "array",
71
- "description": "Email content",
72
- "items": {
73
- "type": "object",
74
- "properties": {
75
- "type": {
76
- "type": "string"
77
- },
78
- "value": {
79
- "type": "string"
80
- }
81
- }
82
- }
83
- },
84
- "html": {
85
- "type": "string",
86
- "description": "HTML content"
87
- },
88
- "text": {
89
- "type": "string",
90
- "description": "Plain text content"
91
- },
92
- "template_id": {
93
- "type": "string",
94
- "description": "SendGrid template ID"
95
- },
96
- "dynamic_template_data": {
97
- "type": "object",
98
- "description": "Template variables"
99
- }
100
- },
101
- "required": [
102
- "to",
103
- "from",
104
- "subject"
105
- ]
106
- }
107
- },
108
- {
109
- "name": "create_template",
110
- "description": "Create a new email template in SendGrid",
111
- "method": "POST",
112
- "path": "/create-template",
113
- "input_schema": {
114
- "type": "object",
115
- "properties": {
116
- "name": {
117
- "type": "string",
118
- "description": "Template name"
119
- },
120
- "generation": {
121
- "type": "string",
122
- "description": "Template generation",
123
- "enum": [
124
- "legacy",
125
- "dynamic"
126
- ],
127
- "default": "dynamic"
128
- }
129
- },
130
- "required": [
131
- "name"
132
- ]
133
- }
134
- },
135
- {
136
- "name": "get_templates",
137
- "description": "Retrieve email templates from SendGrid",
138
- "method": "GET",
139
- "path": "/get-templates",
140
- "input_schema": {
141
- "type": "object",
142
- "properties": {
143
- "generations": {
144
- "type": "string",
145
- "description": "Template generation filter",
146
- "enum": [
147
- "legacy",
148
- "dynamic"
149
- ]
150
- },
151
- "page_size": {
152
- "type": "integer",
153
- "description": "Number of templates per page",
154
- "default": 200,
155
- "maximum": 200
156
- }
157
- }
158
- }
159
- },
160
- {
161
- "name": "add_contact",
162
- "description": "Add a contact to SendGrid",
163
- "method": "GET",
164
- "path": "/add-contact",
165
- "input_schema": {
166
- "type": "object",
167
- "properties": {
168
- "contacts": {
169
- "type": "array",
170
- "description": "Contact information",
171
- "items": {
172
- "type": "object",
173
- "properties": {
174
- "email": {
175
- "type": "string"
176
- },
177
- "first_name": {
178
- "type": "string"
179
- },
180
- "last_name": {
181
- "type": "string"
182
- },
183
- "custom_fields": {
184
- "type": "object"
185
- }
186
- }
187
- }
188
- },
189
- "list_ids": {
190
- "type": "array",
191
- "description": "List IDs to add contacts to",
192
- "items": {
193
- "type": "string"
194
- }
195
- }
196
- },
197
- "required": [
198
- "contacts"
199
- ]
200
- }
201
- },
202
- {
203
- "name": "get_stats",
204
- "description": "Retrieve email delivery statistics from SendGrid",
205
- "method": "GET",
206
- "path": "/get-stats",
207
- "input_schema": {
208
- "type": "object",
209
- "properties": {
210
- "start_date": {
211
- "type": "string",
212
- "description": "Start date (YYYY-MM-DD)"
213
- },
214
- "end_date": {
215
- "type": "string",
216
- "description": "End date (YYYY-MM-DD)"
217
- },
218
- "aggregated_by": {
219
- "type": "string",
220
- "description": "Aggregation method",
221
- "enum": [
222
- "day",
223
- "week",
224
- "month"
225
- ]
226
- }
227
- },
228
- "required": [
229
- "start_date"
230
- ]
231
- }
232
- }
233
- ],
234
- "webhooks": {
235
- "signature_header": "x-sendgrid-signature",
236
- "events": [
237
- {
238
- "name": "email.processed",
239
- "description": "Email accepted for delivery"
240
- },
241
- {
242
- "name": "email.delivered",
243
- "description": "Email delivered to recipient"
244
- },
245
- {
246
- "name": "email.opened",
247
- "description": "Email opened by recipient"
248
- },
249
- {
250
- "name": "email.clicked",
251
- "description": "Link clicked in email"
252
- },
253
- {
254
- "name": "email.bounced",
255
- "description": "Email bounced"
256
- },
257
- {
258
- "name": "email.dropped",
259
- "description": "Email dropped (suppressed)"
260
- },
261
- {
262
- "name": "email.deferred",
263
- "description": "Email delivery deferred"
264
- },
265
- {
266
- "name": "email.spam_report",
267
- "description": "Email marked as spam"
268
- },
269
- {
270
- "name": "email.unsubscribe",
271
- "description": "Recipient unsubscribed"
272
- }
273
- ]
274
- }
275
- }