@adminide-stack/form-builder-core 5.1.4-alpha.263 → 5.1.4-alpha.267
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/lib/config/connectorsConfig.d.ts +1 -2
- package/lib/config/connectorsConfig.d.ts.map +1 -1
- package/lib/config/connectorsConfig.js +2667 -2403
- package/lib/config/connectorsConfig.js.map +1 -1
- package/lib/config/mcpConnectorConfig.d.ts +3 -5
- package/lib/config/mcpConnectorConfig.d.ts.map +1 -1
- package/lib/config/mcpConnectorConfig.js +190 -459
- package/lib/config/mcpConnectorConfig.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,152 +1,20 @@
|
|
|
1
|
-
const mcpProvidersConfig = [
|
|
2
|
-
// ──────────────────────────────────────────────────────────────────────
|
|
3
|
-
// Hand-curated MCP providers (with verified mcpUrls, scopes, colors)
|
|
4
|
-
// ──────────────────────────────────────────────────────────────────────
|
|
5
|
-
{
|
|
6
|
-
id: 'linear',
|
|
7
|
-
title: 'Linear',
|
|
8
|
-
description: 'Project management and issue tracking',
|
|
9
|
-
scopes: ['read', 'write'],
|
|
10
|
-
mcpUrl: 'https://mcp.linear.app/mcp',
|
|
11
|
-
// Base URL for OAuth discovery
|
|
12
|
-
icon: {
|
|
13
|
-
name: 'AiOutlineProject'
|
|
14
|
-
},
|
|
15
|
-
logo: '_side/thirdparty/logos/linear.svg',
|
|
16
|
-
color: '#5E6AD2',
|
|
17
|
-
authMethods: ['oauth2']
|
|
18
|
-
}, {
|
|
19
|
-
id: 'notion',
|
|
20
|
-
title: 'Notion',
|
|
21
|
-
description: 'All-in-one workspace for notes and docs',
|
|
22
|
-
mcpUrl: 'https://mcp.notion.com',
|
|
23
|
-
scopes: ['read:consent'],
|
|
24
|
-
icon: {
|
|
25
|
-
name: 'AiOutlineFileText'
|
|
26
|
-
},
|
|
27
|
-
logo: '_side/thirdparty/logos/notion.svg',
|
|
28
|
-
color: '#000000',
|
|
29
|
-
authMethods: ['oauth2']
|
|
30
|
-
}, {
|
|
31
|
-
id: 'github',
|
|
32
|
-
title: 'GitHub',
|
|
33
|
-
description: 'Code hosting and collaboration',
|
|
34
|
-
scopes: ['repo', 'read:org', 'read:user'],
|
|
35
|
-
mcpUrl: 'https://api.githubcopilot.com/mcp',
|
|
36
|
-
icon: {
|
|
37
|
-
name: 'AiOutlineGithub'
|
|
38
|
-
},
|
|
39
|
-
logo: '_side/thirdparty/logos/github.svg',
|
|
40
|
-
color: '#24292E',
|
|
41
|
-
authMethods: ['oauth2']
|
|
42
|
-
}, {
|
|
43
|
-
id: 'slack',
|
|
44
|
-
title: 'Slack',
|
|
45
|
-
description: 'Team communication and messaging',
|
|
46
|
-
scopes: ['channels:read', 'chat:write', 'users:read'],
|
|
47
|
-
mcpUrl: 'https://mcp.slack.com',
|
|
48
|
-
icon: {
|
|
49
|
-
name: 'AiOutlineSlack'
|
|
50
|
-
},
|
|
51
|
-
logo: '_side/thirdparty/logos/slack.svg',
|
|
52
|
-
color: '#4A154B',
|
|
53
|
-
authMethods: ['oauth2']
|
|
54
|
-
}, {
|
|
55
|
-
id: 'jira',
|
|
56
|
-
title: 'Jira',
|
|
57
|
-
description: 'Issue and project tracking',
|
|
58
|
-
scopes: ['read:jira-work', 'write:jira-work'],
|
|
59
|
-
mcpUrl: 'https://mcp.atlassian.com/v1',
|
|
60
|
-
icon: {
|
|
61
|
-
name: 'AiOutlineBug'
|
|
62
|
-
},
|
|
63
|
-
logo: '_side/thirdparty/logos/jira.svg',
|
|
64
|
-
color: '#0052CC',
|
|
65
|
-
authMethods: ['oauth2']
|
|
66
|
-
}, {
|
|
67
|
-
id: 'hugging-face',
|
|
68
|
-
title: 'Hugging Face',
|
|
69
|
-
description: 'AI models and machine learning platform',
|
|
70
|
-
scopes: ['read'],
|
|
71
|
-
mcpUrl: 'https://huggingface.co',
|
|
72
|
-
icon: {
|
|
73
|
-
name: 'AiOutlineApi'
|
|
74
|
-
},
|
|
75
|
-
logo: '_side/thirdparty/logos/huggingface.svg',
|
|
76
|
-
color: '#FFD21E',
|
|
77
|
-
authMethods: ['api_key']
|
|
78
|
-
}, {
|
|
1
|
+
const mcpProvidersConfig = [{
|
|
79
2
|
id: 'airtable',
|
|
80
3
|
title: 'AirTable',
|
|
81
4
|
description: 'Spreadsheet-database hybrid',
|
|
82
5
|
scopes: ['data.records:read', 'data.records:write', 'schema.bases:read'],
|
|
83
|
-
mcpUrl: '',
|
|
6
|
+
mcpUrl: 'https://mcp.airtable.com/mcp',
|
|
84
7
|
icon: {
|
|
85
8
|
name: 'AiOutlineFileText'
|
|
86
9
|
},
|
|
87
10
|
logo: '_side/thirdparty/logos/airtable.svg',
|
|
88
11
|
color: '#7B68EE',
|
|
89
|
-
authMethods: ['api_key', 'oauth2']
|
|
90
|
-
}, {
|
|
91
|
-
id: 'posthog',
|
|
92
|
-
title: 'PostHog',
|
|
93
|
-
description: 'Product analytics and feature flags',
|
|
94
|
-
scopes: ['read', 'write'],
|
|
95
|
-
mcpUrl: 'https://mcp.posthog.com',
|
|
96
|
-
icon: {
|
|
97
|
-
name: 'AiOutlineSearch'
|
|
98
|
-
},
|
|
99
|
-
logo: '_side/thirdparty/logos/posthog.svg',
|
|
100
|
-
color: '#F9BD2B',
|
|
101
12
|
authMethods: ['api_key']
|
|
102
13
|
}, {
|
|
103
|
-
id: 'todoist',
|
|
104
|
-
title: 'Todoist',
|
|
105
|
-
description: 'Task management and to-do lists',
|
|
106
|
-
scopes: ['task:add', 'data:read', 'data:read_write'],
|
|
107
|
-
mcpUrl: 'https://ai.todoist.net',
|
|
108
|
-
icon: {
|
|
109
|
-
name: 'AiOutlineCheckSquare'
|
|
110
|
-
},
|
|
111
|
-
logo: '_side/thirdparty/logos/todoist.svg',
|
|
112
|
-
color: '#E44332',
|
|
113
|
-
authMethods: ['api_key', 'oauth2']
|
|
114
|
-
}, {
|
|
115
|
-
id: 'monday',
|
|
116
|
-
title: 'Monday',
|
|
117
|
-
description: 'Work management and collaboration',
|
|
118
|
-
scopes: ['read', 'write'],
|
|
119
|
-
mcpUrl: 'https://mcp.monday.com',
|
|
120
|
-
icon: {
|
|
121
|
-
name: 'AiOutlineCalendar'
|
|
122
|
-
},
|
|
123
|
-
logo: '_side/thirdparty/logos/monday.svg',
|
|
124
|
-
color: '#FF3D57',
|
|
125
|
-
authMethods: ['api_key']
|
|
126
|
-
}, {
|
|
127
|
-
id: 'cloudflare',
|
|
128
|
-
title: 'Cloudflare',
|
|
129
|
-
description: 'Cloudflare is a global network that secures and accelerates web traffic',
|
|
130
|
-
scopes: [],
|
|
131
|
-
mcpUrl: 'https://mcp.cloudflare.com',
|
|
132
|
-
icon: {
|
|
133
|
-
name: 'AiOutlineCode',
|
|
134
|
-
style: {
|
|
135
|
-
fontSize: 'large'
|
|
136
|
-
}
|
|
137
|
-
},
|
|
138
|
-
logo: '_side/thirdparty/logos/cloudflare.svg',
|
|
139
|
-
color: '#F38020',
|
|
140
|
-
authMethods: ['api_key']
|
|
141
|
-
},
|
|
142
|
-
// ──────────────────────────────────────────────────────────────────────
|
|
143
|
-
// Auto-generated MCP providers from TrustClaw/Composio catalog
|
|
144
|
-
// ──────────────────────────────────────────────────────────────────────
|
|
145
|
-
{
|
|
146
14
|
id: 'apify-mcp',
|
|
147
|
-
title: 'Apify
|
|
15
|
+
title: 'Apify',
|
|
148
16
|
description: 'Apify MCP connector',
|
|
149
|
-
scopes: [],
|
|
17
|
+
scopes: ['actors:read', 'actors:run'],
|
|
150
18
|
mcpUrl: 'https://mcp.apify.com',
|
|
151
19
|
icon: {
|
|
152
20
|
name: 'AiOutlineApi',
|
|
@@ -154,137 +22,9 @@ const mcpProvidersConfig = [
|
|
|
154
22
|
fontSize: 'large'
|
|
155
23
|
}
|
|
156
24
|
},
|
|
157
|
-
logo: '_side/thirdparty/logos/
|
|
158
|
-
authMethods: ['unknown']
|
|
159
|
-
}, {
|
|
160
|
-
id: 'context7-mcp',
|
|
161
|
-
title: 'Context7 MCP',
|
|
162
|
-
description: 'Context7 MCP delivers live, version-specific code docs and examples right fro...',
|
|
163
|
-
scopes: [],
|
|
164
|
-
mcpUrl: 'https://mcp.context7.com',
|
|
165
|
-
icon: {
|
|
166
|
-
name: 'AiOutlineCode',
|
|
167
|
-
style: {
|
|
168
|
-
fontSize: 'large'
|
|
169
|
-
}
|
|
170
|
-
},
|
|
171
|
-
logo: '_side/thirdparty/logos/context7_mcp.svg',
|
|
172
|
-
authMethods: ['api_key']
|
|
173
|
-
}, {
|
|
174
|
-
id: 'deepwiki-mcp',
|
|
175
|
-
title: 'DeepWiki MCP',
|
|
176
|
-
description: 'DeepWiki MCP connector',
|
|
177
|
-
scopes: [],
|
|
178
|
-
mcpUrl: 'https://mcp.deepwiki.com',
|
|
179
|
-
icon: {
|
|
180
|
-
name: 'AiOutlineApi',
|
|
181
|
-
style: {
|
|
182
|
-
fontSize: 'large'
|
|
183
|
-
}
|
|
184
|
-
},
|
|
185
|
-
logo: '_side/thirdparty/logos/deepwiki_mcp.svg',
|
|
186
|
-
authMethods: ['none']
|
|
187
|
-
}, {
|
|
188
|
-
id: 'devin-mcp',
|
|
189
|
-
title: 'Devin MCP',
|
|
190
|
-
description: 'Devin MCP is an AI-powered integration for accessing and analyzing GitHub rep...',
|
|
191
|
-
scopes: [],
|
|
192
|
-
mcpUrl: 'https://mcp.devin.ai',
|
|
193
|
-
icon: {
|
|
194
|
-
name: 'AiOutlineCode',
|
|
195
|
-
style: {
|
|
196
|
-
fontSize: 'large'
|
|
197
|
-
}
|
|
198
|
-
},
|
|
199
|
-
logo: '_side/thirdparty/logos/devin_mcp.svg',
|
|
200
|
-
authMethods: ['api_key']
|
|
201
|
-
}, {
|
|
202
|
-
id: 'granola-mcp',
|
|
203
|
-
title: 'Granola MCP',
|
|
204
|
-
description: 'Granola MCP connector',
|
|
205
|
-
scopes: [],
|
|
206
|
-
mcpUrl: 'https://mcp.granola.ai',
|
|
207
|
-
icon: {
|
|
208
|
-
name: 'AiOutlineApi',
|
|
209
|
-
style: {
|
|
210
|
-
fontSize: 'large'
|
|
211
|
-
}
|
|
212
|
-
},
|
|
213
|
-
logo: '_side/thirdparty/logos/granola_mcp.svg',
|
|
214
|
-
authMethods: ['unknown']
|
|
215
|
-
}, {
|
|
216
|
-
id: 'monday-mcp',
|
|
217
|
-
title: 'Monday MCP',
|
|
218
|
-
description: 'Monday MCP connector',
|
|
219
|
-
scopes: [],
|
|
220
|
-
mcpUrl: 'https://mcp.monday.com',
|
|
221
|
-
icon: {
|
|
222
|
-
name: 'AiOutlineApi',
|
|
223
|
-
style: {
|
|
224
|
-
fontSize: 'large'
|
|
225
|
-
}
|
|
226
|
-
},
|
|
227
|
-
logo: '_side/thirdparty/logos/monday_mcp.svg',
|
|
228
|
-
authMethods: ['unknown']
|
|
229
|
-
}, {
|
|
230
|
-
id: 'postiz-mcp',
|
|
231
|
-
title: 'Postiz',
|
|
232
|
-
description: 'Postiz is an agentic social media scheduling tool for managing and growing yo...',
|
|
233
|
-
scopes: [],
|
|
234
|
-
mcpUrl: 'https://mcp.postiz.com',
|
|
235
|
-
icon: {
|
|
236
|
-
name: 'AiOutlineShareAlt',
|
|
237
|
-
style: {
|
|
238
|
-
fontSize: 'large'
|
|
239
|
-
}
|
|
240
|
-
},
|
|
241
|
-
logo: '_side/thirdparty/logos/postiz_mcp.svg',
|
|
25
|
+
logo: '_side/thirdparty/logos/apify.svg',
|
|
242
26
|
authMethods: ['api_key']
|
|
243
27
|
}, {
|
|
244
|
-
id: 'tavily-mcp',
|
|
245
|
-
title: 'Tavily MCP',
|
|
246
|
-
description: 'Tavily MCP connector',
|
|
247
|
-
scopes: [],
|
|
248
|
-
mcpUrl: 'https://mcp.tavily.com',
|
|
249
|
-
icon: {
|
|
250
|
-
name: 'AiOutlineApi',
|
|
251
|
-
style: {
|
|
252
|
-
fontSize: 'large'
|
|
253
|
-
}
|
|
254
|
-
},
|
|
255
|
-
logo: '_side/thirdparty/logos/tavily_mcp.svg',
|
|
256
|
-
authMethods: ['unknown']
|
|
257
|
-
}, {
|
|
258
|
-
id: 'tinyfish-mcp',
|
|
259
|
-
title: 'TinyFish MCP',
|
|
260
|
-
description: 'TinyFish MCP connector',
|
|
261
|
-
scopes: [],
|
|
262
|
-
mcpUrl: 'https://mcp.tinyfish.io',
|
|
263
|
-
icon: {
|
|
264
|
-
name: 'AiOutlineApi',
|
|
265
|
-
style: {
|
|
266
|
-
fontSize: 'large'
|
|
267
|
-
}
|
|
268
|
-
},
|
|
269
|
-
logo: '_side/thirdparty/logos/tinyfish_mcp.svg',
|
|
270
|
-
authMethods: ['unknown']
|
|
271
|
-
}, {
|
|
272
|
-
id: 'wix-mcp',
|
|
273
|
-
title: 'Wix MCP',
|
|
274
|
-
description: 'Wix MCP connector',
|
|
275
|
-
scopes: [],
|
|
276
|
-
mcpUrl: 'https://mcp.wix.com',
|
|
277
|
-
icon: {
|
|
278
|
-
name: 'AiOutlineApi',
|
|
279
|
-
style: {
|
|
280
|
-
fontSize: 'large'
|
|
281
|
-
}
|
|
282
|
-
},
|
|
283
|
-
logo: '_side/thirdparty/logos/wix_mcp.svg',
|
|
284
|
-
authMethods: ['unknown']
|
|
285
|
-
},
|
|
286
|
-
// new ones
|
|
287
|
-
{
|
|
288
28
|
id: 'asana',
|
|
289
29
|
title: 'Asana',
|
|
290
30
|
description: 'Organize tasks, track projects, and collaborate with your team',
|
|
@@ -315,9 +55,9 @@ const mcpProvidersConfig = [
|
|
|
315
55
|
},
|
|
316
56
|
logo: '_side/thirdparty/logos/cal.svg',
|
|
317
57
|
enabled: true,
|
|
318
|
-
scopes: [],
|
|
58
|
+
scopes: ['bookings:read', 'bookings:write', 'availability:read'],
|
|
319
59
|
mcpUrl: 'https://mcp.cal.com',
|
|
320
|
-
authMethods: ['api_key'
|
|
60
|
+
authMethods: ['api_key'],
|
|
321
61
|
categories: ['scheduling & booking'],
|
|
322
62
|
fields: [{
|
|
323
63
|
name: 'cal-api-key',
|
|
@@ -354,7 +94,7 @@ const mcpProvidersConfig = [
|
|
|
354
94
|
enabled: true,
|
|
355
95
|
scopes: ['task:read', 'task:write'],
|
|
356
96
|
mcpUrl: 'https://mcp.clickup.com',
|
|
357
|
-
authMethods: ['api_key'
|
|
97
|
+
authMethods: ['api_key'],
|
|
358
98
|
categories: ['productivity & project management'],
|
|
359
99
|
fields: [{
|
|
360
100
|
name: 'clickup-api-key',
|
|
@@ -376,6 +116,21 @@ const mcpProvidersConfig = [
|
|
|
376
116
|
readOnly: false,
|
|
377
117
|
iconType: ''
|
|
378
118
|
}]
|
|
119
|
+
}, {
|
|
120
|
+
id: 'cloudflare',
|
|
121
|
+
title: 'Cloudflare',
|
|
122
|
+
description: 'Cloudflare is a global network that secures and accelerates web traffic',
|
|
123
|
+
scopes: ['account:read', 'workers:write', 'dns:read'],
|
|
124
|
+
mcpUrl: 'https://mcp.cloudflare.com',
|
|
125
|
+
icon: {
|
|
126
|
+
name: 'AiOutlineCode',
|
|
127
|
+
style: {
|
|
128
|
+
fontSize: 'large'
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
logo: '_side/thirdparty/logos/cloudflare.svg',
|
|
132
|
+
color: '#F38020',
|
|
133
|
+
authMethods: ['api_key']
|
|
379
134
|
}, {
|
|
380
135
|
id: 'confluence',
|
|
381
136
|
title: 'Confluence',
|
|
@@ -458,6 +213,48 @@ const mcpProvidersConfig = [
|
|
|
458
213
|
readOnly: true,
|
|
459
214
|
iconType: 'info'
|
|
460
215
|
}]
|
|
216
|
+
}, {
|
|
217
|
+
id: 'context7-mcp',
|
|
218
|
+
title: 'Context7',
|
|
219
|
+
description: 'Context7 MCP delivers live, version-specific code docs and examples right fro...',
|
|
220
|
+
scopes: ['docs:read'],
|
|
221
|
+
mcpUrl: 'https://mcp.context7.com',
|
|
222
|
+
icon: {
|
|
223
|
+
name: 'AiOutlineCode',
|
|
224
|
+
style: {
|
|
225
|
+
fontSize: 'large'
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
logo: '_side/thirdparty/logos/context7_mcp.svg',
|
|
229
|
+
authMethods: ['api_key']
|
|
230
|
+
}, {
|
|
231
|
+
id: 'deepwiki-mcp',
|
|
232
|
+
title: 'DeepWiki',
|
|
233
|
+
description: 'DeepWiki MCP connector',
|
|
234
|
+
scopes: ['wiki:read'],
|
|
235
|
+
mcpUrl: 'https://mcp.deepwiki.com/mcp',
|
|
236
|
+
icon: {
|
|
237
|
+
name: 'AiOutlineApi',
|
|
238
|
+
style: {
|
|
239
|
+
fontSize: 'large'
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
logo: '_side/thirdparty/logos/deepwiki_mcp.svg',
|
|
243
|
+
authMethods: ['api_key']
|
|
244
|
+
}, {
|
|
245
|
+
id: 'devin-mcp',
|
|
246
|
+
title: 'Devin',
|
|
247
|
+
description: 'Devin MCP is an AI-powered integration for accessing and analyzing GitHub rep...',
|
|
248
|
+
scopes: ['repos:read', 'repos:analyze'],
|
|
249
|
+
mcpUrl: 'https://mcp.devin.ai',
|
|
250
|
+
icon: {
|
|
251
|
+
name: 'AiOutlineCode',
|
|
252
|
+
style: {
|
|
253
|
+
fontSize: 'large'
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
logo: '_side/thirdparty/logos/devin_mcp.svg',
|
|
257
|
+
authMethods: ['api_key']
|
|
461
258
|
}, {
|
|
462
259
|
id: 'figma',
|
|
463
260
|
title: 'Figma',
|
|
@@ -473,7 +270,7 @@ const mcpProvidersConfig = [
|
|
|
473
270
|
enabled: true,
|
|
474
271
|
scopes: ['file_read'],
|
|
475
272
|
mcpUrl: 'https://mcp.figma.com',
|
|
476
|
-
authMethods: ['api_key'
|
|
273
|
+
authMethods: ['api_key'],
|
|
477
274
|
categories: ['design & creative tools'],
|
|
478
275
|
fields: [{
|
|
479
276
|
name: 'figmaAccessToken',
|
|
@@ -509,37 +306,6 @@ const mcpProvidersConfig = [
|
|
|
509
306
|
enumValues: [],
|
|
510
307
|
readOnly: true,
|
|
511
308
|
iconType: 'info'
|
|
512
|
-
}],
|
|
513
|
-
resources: [{
|
|
514
|
-
name: 'figma',
|
|
515
|
-
label: 'figma',
|
|
516
|
-
type: 'rest-api',
|
|
517
|
-
config: {
|
|
518
|
-
restApi: {
|
|
519
|
-
httpMethod: 'GET',
|
|
520
|
-
url: 'https://api.figma.com/v1/me',
|
|
521
|
-
urlParams: [],
|
|
522
|
-
headers: [{
|
|
523
|
-
key: 'X-FIGMA-TOKEN',
|
|
524
|
-
value: '{{step1.figmaAccessToken}}'
|
|
525
|
-
}],
|
|
526
|
-
body: {
|
|
527
|
-
format: 'JSON',
|
|
528
|
-
data: [],
|
|
529
|
-
rawData: ''
|
|
530
|
-
},
|
|
531
|
-
cookies: [],
|
|
532
|
-
runBehavior: 'automatic',
|
|
533
|
-
transformResults: '({ data }) => {\n return data;\n}'
|
|
534
|
-
}
|
|
535
|
-
}
|
|
536
|
-
}],
|
|
537
|
-
customButtons: [{
|
|
538
|
-
id: 'cd481051-b9ca-4018-93ac-aee5bd56776c',
|
|
539
|
-
title: 'Test token',
|
|
540
|
-
action: 'trigger-resource',
|
|
541
|
-
resourceId: 'figma',
|
|
542
|
-
inngestId: ''
|
|
543
309
|
}]
|
|
544
310
|
}, {
|
|
545
311
|
id: 'github',
|
|
@@ -574,7 +340,7 @@ const mcpProvidersConfig = [
|
|
|
574
340
|
enabled: true,
|
|
575
341
|
scopes: ['https://www.googleapis.com/auth/documents', 'openid', 'email'],
|
|
576
342
|
mcpUrl: 'https://mcp.google.com',
|
|
577
|
-
authMethods: ['
|
|
343
|
+
authMethods: ['oauth2'],
|
|
578
344
|
categories: ['document & file management']
|
|
579
345
|
}, {
|
|
580
346
|
id: 'google-drive',
|
|
@@ -611,6 +377,20 @@ const mcpProvidersConfig = [
|
|
|
611
377
|
mcpUrl: 'https://mcp.google.com',
|
|
612
378
|
authMethods: ['oauth2'],
|
|
613
379
|
categories: ['productivity & project management']
|
|
380
|
+
}, {
|
|
381
|
+
id: 'granola-mcp',
|
|
382
|
+
title: 'Granola',
|
|
383
|
+
description: 'Granola MCP connector',
|
|
384
|
+
scopes: ['notes:read'],
|
|
385
|
+
mcpUrl: 'https://mcp.granola.ai',
|
|
386
|
+
icon: {
|
|
387
|
+
name: 'AiOutlineApi',
|
|
388
|
+
style: {
|
|
389
|
+
fontSize: 'large'
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
logo: '_side/thirdparty/logos/granola_mcp.svg',
|
|
393
|
+
authMethods: ['api_key']
|
|
614
394
|
}, {
|
|
615
395
|
id: 'hubspot',
|
|
616
396
|
title: 'HubSpot',
|
|
@@ -626,7 +406,7 @@ const mcpProvidersConfig = [
|
|
|
626
406
|
enabled: true,
|
|
627
407
|
scopes: ['crm.objects.contacts.read', 'crm.objects.contacts.write'],
|
|
628
408
|
mcpUrl: 'https://api.hubspot.com/mcp',
|
|
629
|
-
authMethods: ['
|
|
409
|
+
authMethods: ['api_key'],
|
|
630
410
|
categories: ['crm'],
|
|
631
411
|
fields: [{
|
|
632
412
|
name: 'hubspot-api-key',
|
|
@@ -648,66 +428,46 @@ const mcpProvidersConfig = [
|
|
|
648
428
|
readOnly: false,
|
|
649
429
|
iconType: ''
|
|
650
430
|
}]
|
|
431
|
+
}, {
|
|
432
|
+
id: 'hugging-face',
|
|
433
|
+
title: 'Hugging Face',
|
|
434
|
+
description: 'AI models and machine learning platform',
|
|
435
|
+
scopes: ['read'],
|
|
436
|
+
mcpUrl: 'https://huggingface.co',
|
|
437
|
+
icon: {
|
|
438
|
+
name: 'AiOutlineApi'
|
|
439
|
+
},
|
|
440
|
+
logo: '_side/thirdparty/logos/hugging_face.svg',
|
|
441
|
+
color: '#FFD21E',
|
|
442
|
+
authMethods: ['api_key']
|
|
651
443
|
}, {
|
|
652
444
|
id: 'jira',
|
|
653
445
|
title: 'Jira',
|
|
654
446
|
description: 'Issue and project tracking',
|
|
655
|
-
|
|
447
|
+
scopes: ['read:jira-work', 'write:jira-work'],
|
|
448
|
+
mcpUrl: 'https://mcp.atlassian.com/v1',
|
|
656
449
|
icon: {
|
|
657
|
-
name: '
|
|
658
|
-
style: {
|
|
659
|
-
fontSize: 'large'
|
|
660
|
-
}
|
|
450
|
+
name: 'AiOutlineBug'
|
|
661
451
|
},
|
|
662
452
|
logo: '_side/thirdparty/logos/jira.svg',
|
|
663
453
|
color: '#0052CC',
|
|
664
|
-
|
|
665
|
-
scopes: ['read:jira-work', 'write:jira-work'],
|
|
666
|
-
mcpUrl: 'https://mcp.atlassian.com/v1',
|
|
667
|
-
authMethods: ['oauth2'],
|
|
668
|
-
categories: ['productivity & project management']
|
|
454
|
+
authMethods: ['oauth2']
|
|
669
455
|
}, {
|
|
670
456
|
id: 'linear',
|
|
671
457
|
title: 'Linear',
|
|
672
|
-
description: '
|
|
673
|
-
|
|
458
|
+
description: 'Project management and issue tracking',
|
|
459
|
+
scopes: ['read', 'write'],
|
|
460
|
+
mcpUrl: 'https://mcp.linear.app/mcp',
|
|
674
461
|
icon: {
|
|
675
|
-
name: '
|
|
676
|
-
style: {
|
|
677
|
-
fontSize: 'large'
|
|
678
|
-
}
|
|
462
|
+
name: 'AiOutlineProject'
|
|
679
463
|
},
|
|
680
464
|
logo: '_side/thirdparty/logos/linear.svg',
|
|
681
465
|
color: '#5E6AD2',
|
|
682
|
-
|
|
683
|
-
scopes: ['read', 'write'],
|
|
684
|
-
mcpUrl: 'https://mcp.linear.app',
|
|
685
|
-
authMethods: ['oauth2'],
|
|
686
|
-
categories: ['productivity & project management'],
|
|
687
|
-
fields: [{
|
|
688
|
-
name: 'linear-api-key',
|
|
689
|
-
label: 'Linear API Key',
|
|
690
|
-
type: 'string',
|
|
691
|
-
placeholder: '',
|
|
692
|
-
description: 'Your Linear API key for authentication. Obtain it from your Linear settings.',
|
|
693
|
-
required: true,
|
|
694
|
-
defaultValue: '',
|
|
695
|
-
isConfigField: true,
|
|
696
|
-
isSecret: true,
|
|
697
|
-
secretSource: {
|
|
698
|
-
type: 'vault',
|
|
699
|
-
secretType: 'ENVIRONMENT_VAR',
|
|
700
|
-
secretKey: 'LINEAR_API_KEY'
|
|
701
|
-
},
|
|
702
|
-
uiWidget: 'password',
|
|
703
|
-
enumValues: [],
|
|
704
|
-
readOnly: false,
|
|
705
|
-
iconType: ''
|
|
706
|
-
}]
|
|
466
|
+
authMethods: ['oauth2']
|
|
707
467
|
}, {
|
|
708
468
|
id: 'monday',
|
|
709
469
|
title: 'Monday',
|
|
710
|
-
description: 'Monday.com is a customizable work management platform for project planning
|
|
470
|
+
description: 'Monday.com is a customizable work management platform for project planning',
|
|
711
471
|
providerUrl: 'https://auth.monday.com',
|
|
712
472
|
icon: {
|
|
713
473
|
name: 'AiOutlineProject',
|
|
@@ -761,78 +521,41 @@ const mcpProvidersConfig = [
|
|
|
761
521
|
}, {
|
|
762
522
|
id: 'notion',
|
|
763
523
|
title: 'Notion',
|
|
764
|
-
description: '
|
|
765
|
-
|
|
524
|
+
description: 'All-in-one workspace for notes and docs',
|
|
525
|
+
mcpUrl: 'https://mcp.notion.com',
|
|
526
|
+
scopes: ['read:consent'],
|
|
766
527
|
icon: {
|
|
767
|
-
name: 'AiOutlineFileText'
|
|
768
|
-
style: {
|
|
769
|
-
fontSize: 'large'
|
|
770
|
-
}
|
|
528
|
+
name: 'AiOutlineFileText'
|
|
771
529
|
},
|
|
772
530
|
logo: '_side/thirdparty/logos/notion.svg',
|
|
773
531
|
color: '#000000',
|
|
774
|
-
|
|
775
|
-
scopes: ['read:consent'],
|
|
776
|
-
mcpUrl: 'https://mcp.notion.com',
|
|
777
|
-
authMethods: ['oauth2'],
|
|
778
|
-
categories: ['productivity & project management'],
|
|
779
|
-
fields: [{
|
|
780
|
-
name: 'notion-api-key',
|
|
781
|
-
label: 'Notion API Key',
|
|
782
|
-
type: 'string',
|
|
783
|
-
placeholder: '',
|
|
784
|
-
description: 'Your notion API key for authentication. Obtain it from your notion settings.',
|
|
785
|
-
required: true,
|
|
786
|
-
defaultValue: '',
|
|
787
|
-
isConfigField: true,
|
|
788
|
-
isSecret: true,
|
|
789
|
-
secretSource: {
|
|
790
|
-
type: 'vault',
|
|
791
|
-
secretType: 'ENVIRONMENT_VAR',
|
|
792
|
-
secretKey: 'NOTION_API_KEY'
|
|
793
|
-
},
|
|
794
|
-
uiWidget: 'password',
|
|
795
|
-
enumValues: [],
|
|
796
|
-
readOnly: false,
|
|
797
|
-
iconType: ''
|
|
798
|
-
}]
|
|
532
|
+
authMethods: ['oauth2']
|
|
799
533
|
}, {
|
|
800
534
|
id: 'posthog',
|
|
801
535
|
title: 'PostHog',
|
|
802
|
-
description: '
|
|
803
|
-
|
|
536
|
+
description: 'Product analytics and feature flags',
|
|
537
|
+
scopes: ['read', 'write'],
|
|
538
|
+
mcpUrl: 'https://mcp.posthog.com',
|
|
804
539
|
icon: {
|
|
805
|
-
name: '
|
|
540
|
+
name: 'AiOutlineSearch'
|
|
541
|
+
},
|
|
542
|
+
logo: '_side/thirdparty/logos/posthog.svg',
|
|
543
|
+
color: '#F9BD2B',
|
|
544
|
+
authMethods: ['api_key']
|
|
545
|
+
}, {
|
|
546
|
+
id: 'postiz-mcp',
|
|
547
|
+
title: 'Postiz',
|
|
548
|
+
description: 'Postiz is an agentic social media scheduling tool for managing and growing yo...',
|
|
549
|
+
scopes: ['posts:read', 'posts:write', 'schedule:write'],
|
|
550
|
+
mcpUrl: 'https://mcp.postiz.com',
|
|
551
|
+
icon: {
|
|
552
|
+
name: 'AiOutlineShareAlt',
|
|
806
553
|
style: {
|
|
807
554
|
fontSize: 'large'
|
|
808
555
|
}
|
|
809
556
|
},
|
|
810
|
-
logo: '_side/thirdparty/logos/
|
|
811
|
-
|
|
812
|
-
scopes: ['read', 'write'],
|
|
813
|
-
mcpUrl: 'https://mcp.posthog.com',
|
|
814
|
-
authMethods: ['api_key'],
|
|
815
|
-
categories: ['analytics & data'],
|
|
816
|
-
fields: [{
|
|
817
|
-
name: 'posthog-api-key',
|
|
818
|
-
label: 'PostHog API Key',
|
|
819
|
-
type: 'string',
|
|
820
|
-
placeholder: '',
|
|
821
|
-
description: 'You can find your API key in your project settings.',
|
|
822
|
-
required: true,
|
|
823
|
-
defaultValue: '',
|
|
824
|
-
isConfigField: true,
|
|
825
|
-
isSecret: true,
|
|
826
|
-
secretSource: {
|
|
827
|
-
type: 'vault',
|
|
828
|
-
secretType: 'ENVIRONMENT_VAR',
|
|
829
|
-
secretKey: 'POSTHOG_API_KEY'
|
|
830
|
-
},
|
|
831
|
-
uiWidget: 'password',
|
|
832
|
-
enumValues: [],
|
|
833
|
-
readOnly: false,
|
|
834
|
-
iconType: ''
|
|
835
|
-
}]
|
|
557
|
+
logo: '_side/thirdparty/logos/postiz_mcp.svg',
|
|
558
|
+
authMethods: ['api_key']
|
|
836
559
|
}, {
|
|
837
560
|
id: 'salesforce',
|
|
838
561
|
title: 'Salesforce',
|
|
@@ -865,7 +588,7 @@ const mcpProvidersConfig = [
|
|
|
865
588
|
enabled: true,
|
|
866
589
|
scopes: ['org:read', 'project:read', 'event:read'],
|
|
867
590
|
mcpUrl: 'https://mcp.sentry.dev',
|
|
868
|
-
authMethods: ['
|
|
591
|
+
authMethods: ['api_key'],
|
|
869
592
|
categories: ['developer tools & devops'],
|
|
870
593
|
fields: [{
|
|
871
594
|
name: 'token',
|
|
@@ -902,7 +625,7 @@ const mcpProvidersConfig = [
|
|
|
902
625
|
enabled: true,
|
|
903
626
|
scopes: ['read_products', 'write_orders', 'read_customers'],
|
|
904
627
|
mcpUrl: 'https://mcp.shopify.com',
|
|
905
|
-
authMethods: ['api_key'
|
|
628
|
+
authMethods: ['api_key'],
|
|
906
629
|
categories: ['e-commerce'],
|
|
907
630
|
fields: [{
|
|
908
631
|
name: 'subdomain',
|
|
@@ -939,6 +662,18 @@ const mcpProvidersConfig = [
|
|
|
939
662
|
readOnly: false,
|
|
940
663
|
iconType: ''
|
|
941
664
|
}]
|
|
665
|
+
}, {
|
|
666
|
+
id: 'slack',
|
|
667
|
+
title: 'Slack',
|
|
668
|
+
description: 'Team communication and messaging',
|
|
669
|
+
scopes: ['channels:read', 'chat:write', 'users:read'],
|
|
670
|
+
mcpUrl: 'https://mcp.slack.com',
|
|
671
|
+
icon: {
|
|
672
|
+
name: 'AiOutlineSlack'
|
|
673
|
+
},
|
|
674
|
+
logo: '_side/thirdparty/logos/slack.svg',
|
|
675
|
+
color: '#4A154B',
|
|
676
|
+
authMethods: ['oauth2']
|
|
942
677
|
}, {
|
|
943
678
|
id: 'stripe',
|
|
944
679
|
title: 'Stripe',
|
|
@@ -954,7 +689,7 @@ const mcpProvidersConfig = [
|
|
|
954
689
|
enabled: true,
|
|
955
690
|
scopes: ['read_write'],
|
|
956
691
|
mcpUrl: 'https://mcp.stripe.com',
|
|
957
|
-
authMethods: ['api_key'
|
|
692
|
+
authMethods: ['api_key'],
|
|
958
693
|
categories: ['finance & accounting'],
|
|
959
694
|
fields: [{
|
|
960
695
|
name: 'stripeSecretKey',
|
|
@@ -990,47 +725,6 @@ const mcpProvidersConfig = [
|
|
|
990
725
|
enumValues: [],
|
|
991
726
|
readOnly: true,
|
|
992
727
|
iconType: 'info'
|
|
993
|
-
}],
|
|
994
|
-
resources: [{
|
|
995
|
-
name: 'stripejscode',
|
|
996
|
-
label: 'stripe-jscode',
|
|
997
|
-
type: 'jsCode',
|
|
998
|
-
config: {
|
|
999
|
-
jsCode: {
|
|
1000
|
-
query: "const { commands } = ARGUMENTS[0] || {};\n\nconst request = {\n apiKey: '{{step1.stripeSecretKey}}',\n provider: 'stripe',\n};\n\nif (commands) {\n return await commands.executeCommand('connect_credential', request);\n}\n\nreturn 'Not found commands';",
|
|
1001
|
-
transformResults: ''
|
|
1002
|
-
}
|
|
1003
|
-
}
|
|
1004
|
-
}, {
|
|
1005
|
-
name: 'striperest',
|
|
1006
|
-
label: 'stripe-rest',
|
|
1007
|
-
type: 'rest-api',
|
|
1008
|
-
config: {
|
|
1009
|
-
restApi: {
|
|
1010
|
-
httpMethod: 'GET',
|
|
1011
|
-
url: 'https://api.stripe.com/v1/account',
|
|
1012
|
-
urlParams: [],
|
|
1013
|
-
headers: [{
|
|
1014
|
-
key: 'Authorization',
|
|
1015
|
-
value: 'Bearer {{step1.stripeSecretKey}}'
|
|
1016
|
-
}],
|
|
1017
|
-
body: {
|
|
1018
|
-
format: 'JSON',
|
|
1019
|
-
data: [],
|
|
1020
|
-
rawData: ''
|
|
1021
|
-
},
|
|
1022
|
-
cookies: [],
|
|
1023
|
-
runBehavior: 'automatic',
|
|
1024
|
-
transformResults: '({ data }) => {\n return data;\n}'
|
|
1025
|
-
}
|
|
1026
|
-
}
|
|
1027
|
-
}],
|
|
1028
|
-
customButtons: [{
|
|
1029
|
-
id: '173897e9-4fd8-4311-b526-4591151f827f',
|
|
1030
|
-
title: 'Test key',
|
|
1031
|
-
action: 'trigger-resource',
|
|
1032
|
-
resourceId: 'striperest',
|
|
1033
|
-
inngestId: ''
|
|
1034
728
|
}]
|
|
1035
729
|
}, {
|
|
1036
730
|
id: 'supabase',
|
|
@@ -1047,7 +741,7 @@ const mcpProvidersConfig = [
|
|
|
1047
741
|
enabled: true,
|
|
1048
742
|
scopes: ['all'],
|
|
1049
743
|
mcpUrl: 'https://mcp.supabase.com',
|
|
1050
|
-
authMethods: ['api_key'
|
|
744
|
+
authMethods: ['api_key'],
|
|
1051
745
|
categories: ['developer tools & devops'],
|
|
1052
746
|
fields: [{
|
|
1053
747
|
name: 'supabaseProjectUrl',
|
|
@@ -1104,22 +798,45 @@ const mcpProvidersConfig = [
|
|
|
1104
798
|
iconType: 'info'
|
|
1105
799
|
}]
|
|
1106
800
|
}, {
|
|
1107
|
-
id: '
|
|
1108
|
-
title: '
|
|
1109
|
-
description: '
|
|
1110
|
-
|
|
801
|
+
id: 'tavily-mcp',
|
|
802
|
+
title: 'Tavily',
|
|
803
|
+
description: 'Tavily MCP connector',
|
|
804
|
+
scopes: ['search', 'extract', 'map', 'crawl'],
|
|
805
|
+
mcpUrl: 'https://mcp.tavily.com/mcp',
|
|
1111
806
|
icon: {
|
|
1112
|
-
name: '
|
|
807
|
+
name: 'AiOutlineApi',
|
|
1113
808
|
style: {
|
|
1114
809
|
fontSize: 'large'
|
|
1115
810
|
}
|
|
1116
811
|
},
|
|
1117
|
-
logo: '_side/thirdparty/logos/
|
|
1118
|
-
|
|
812
|
+
logo: '_side/thirdparty/logos/tavily_mcp.svg',
|
|
813
|
+
authMethods: ['api_key']
|
|
814
|
+
}, {
|
|
815
|
+
id: 'tinyfish-mcp',
|
|
816
|
+
title: 'TinyFish',
|
|
817
|
+
description: 'TinyFish MCP connector',
|
|
818
|
+
scopes: ['tools:read'],
|
|
819
|
+
mcpUrl: 'https://mcp.tinyfish.io',
|
|
820
|
+
icon: {
|
|
821
|
+
name: 'AiOutlineApi',
|
|
822
|
+
style: {
|
|
823
|
+
fontSize: 'large'
|
|
824
|
+
}
|
|
825
|
+
},
|
|
826
|
+
logo: '_side/thirdparty/logos/tinyfish_mcp.svg',
|
|
827
|
+
authMethods: ['api_key']
|
|
828
|
+
}, {
|
|
829
|
+
id: 'todoist',
|
|
830
|
+
title: 'Todoist',
|
|
831
|
+
description: 'Task management and to-do lists',
|
|
1119
832
|
scopes: ['task:add', 'data:read', 'data:read_write'],
|
|
1120
833
|
mcpUrl: 'https://ai.todoist.net',
|
|
1121
|
-
|
|
1122
|
-
|
|
834
|
+
icon: {
|
|
835
|
+
name: 'AiOutlineCheckSquare'
|
|
836
|
+
},
|
|
837
|
+
logo: '_side/thirdparty/logos/todoist.svg',
|
|
838
|
+
color: '#E44332',
|
|
839
|
+
authMethods: ['api_key']
|
|
1123
840
|
}, {
|
|
1124
841
|
id: 'vercel',
|
|
1125
842
|
title: 'Vercel',
|
|
@@ -1133,7 +850,7 @@ const mcpProvidersConfig = [
|
|
|
1133
850
|
},
|
|
1134
851
|
logo: '_side/thirdparty/logos/vercel.svg',
|
|
1135
852
|
enabled: true,
|
|
1136
|
-
scopes: [],
|
|
853
|
+
scopes: ['deployments:read', 'projects:read', 'projects:write'],
|
|
1137
854
|
mcpUrl: 'https://mcp.vercel.com',
|
|
1138
855
|
authMethods: ['api_key'],
|
|
1139
856
|
categories: ['developer tools & devops'],
|
|
@@ -1172,6 +889,20 @@ const mcpProvidersConfig = [
|
|
|
1172
889
|
readOnly: false,
|
|
1173
890
|
iconType: ''
|
|
1174
891
|
}]
|
|
892
|
+
}, {
|
|
893
|
+
id: 'wix-mcp',
|
|
894
|
+
title: 'Wix',
|
|
895
|
+
description: 'Wix MCP connector',
|
|
896
|
+
scopes: ['site:read', 'site:write'],
|
|
897
|
+
mcpUrl: 'https://mcp.wix.com',
|
|
898
|
+
icon: {
|
|
899
|
+
name: 'AiOutlineApi',
|
|
900
|
+
style: {
|
|
901
|
+
fontSize: 'large'
|
|
902
|
+
}
|
|
903
|
+
},
|
|
904
|
+
logo: '_side/thirdparty/logos/wix.svg',
|
|
905
|
+
authMethods: ['api_key']
|
|
1175
906
|
}, {
|
|
1176
907
|
id: 'zoom',
|
|
1177
908
|
title: 'Zoom',
|