@adminide-stack/form-builder-core 5.1.4-alpha.261 → 5.1.4-alpha.264
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.map +1 -1
- package/lib/config/connectorsConfig.js +17739 -1911
- package/lib/config/connectorsConfig.js.map +1 -1
- package/lib/config/mcpConnectorConfig.d.ts +7 -2
- package/lib/config/mcpConnectorConfig.d.ts.map +1 -1
- package/lib/config/mcpConnectorConfig.js +788 -150
- package/lib/config/mcpConnectorConfig.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,133 +1,126 @@
|
|
|
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'
|
|
12
|
+
authMethods: ['api_key']
|
|
90
13
|
}, {
|
|
91
|
-
id: '
|
|
92
|
-
title: '
|
|
93
|
-
description: '
|
|
94
|
-
scopes: ['read', '
|
|
95
|
-
mcpUrl: 'https://mcp.
|
|
14
|
+
id: 'apify-mcp',
|
|
15
|
+
title: 'Apify',
|
|
16
|
+
description: 'Apify MCP connector',
|
|
17
|
+
scopes: ['actors:read', 'actors:run'],
|
|
18
|
+
mcpUrl: 'https://mcp.apify.com',
|
|
96
19
|
icon: {
|
|
97
|
-
name: '
|
|
20
|
+
name: 'AiOutlineApi',
|
|
21
|
+
style: {
|
|
22
|
+
fontSize: 'large'
|
|
23
|
+
}
|
|
98
24
|
},
|
|
99
|
-
logo: '_side/thirdparty/logos/
|
|
100
|
-
color: '#F9BD2B',
|
|
25
|
+
logo: '_side/thirdparty/logos/apify.svg',
|
|
101
26
|
authMethods: ['api_key']
|
|
102
27
|
}, {
|
|
103
|
-
id: '
|
|
104
|
-
title: '
|
|
105
|
-
description: '
|
|
106
|
-
|
|
107
|
-
mcpUrl: 'https://ai.todoist.net',
|
|
28
|
+
id: 'asana',
|
|
29
|
+
title: 'Asana',
|
|
30
|
+
description: 'Organize tasks, track projects, and collaborate with your team',
|
|
31
|
+
providerUrl: 'https://app.asana.com',
|
|
108
32
|
icon: {
|
|
109
|
-
name: '
|
|
33
|
+
name: 'AiOutlineProject',
|
|
34
|
+
style: {
|
|
35
|
+
fontSize: 'large'
|
|
36
|
+
}
|
|
110
37
|
},
|
|
111
|
-
logo: '_side/thirdparty/logos/
|
|
112
|
-
color: '#
|
|
113
|
-
|
|
38
|
+
logo: '_side/thirdparty/logos/asana.svg',
|
|
39
|
+
color: '#F06A6A',
|
|
40
|
+
enabled: true,
|
|
41
|
+
scopes: ['default'],
|
|
42
|
+
mcpUrl: 'https://mcp.asana.com',
|
|
43
|
+
authMethods: ['oauth2'],
|
|
44
|
+
categories: ['productivity & project management']
|
|
114
45
|
}, {
|
|
115
|
-
id: '
|
|
116
|
-
title: '
|
|
117
|
-
description: '
|
|
118
|
-
|
|
119
|
-
mcpUrl: 'https://mcp.monday.com',
|
|
46
|
+
id: 'cal',
|
|
47
|
+
title: 'Cal',
|
|
48
|
+
description: 'Cal is a meeting scheduling platform that offers shareable booking links and ...',
|
|
49
|
+
providerUrl: 'https://cal.com',
|
|
120
50
|
icon: {
|
|
121
|
-
name: 'AiOutlineCalendar'
|
|
51
|
+
name: 'AiOutlineCalendar',
|
|
52
|
+
style: {
|
|
53
|
+
fontSize: 'large'
|
|
54
|
+
}
|
|
122
55
|
},
|
|
123
|
-
logo: '_side/thirdparty/logos/
|
|
124
|
-
|
|
125
|
-
|
|
56
|
+
logo: '_side/thirdparty/logos/cal.svg',
|
|
57
|
+
enabled: true,
|
|
58
|
+
scopes: ['bookings:read', 'bookings:write', 'availability:read'],
|
|
59
|
+
mcpUrl: 'https://mcp.cal.com',
|
|
60
|
+
authMethods: ['api_key'],
|
|
61
|
+
categories: ['scheduling & booking'],
|
|
62
|
+
fields: [{
|
|
63
|
+
name: 'cal-api-key',
|
|
64
|
+
label: 'Cal API Key',
|
|
65
|
+
type: 'string',
|
|
66
|
+
placeholder: '',
|
|
67
|
+
description: "API key used for authenticating requests to Cal.com. Use 'cal_' prefix for test mode and 'cal_live_' for live mode.",
|
|
68
|
+
required: true,
|
|
69
|
+
defaultValue: '',
|
|
70
|
+
isConfigField: true,
|
|
71
|
+
isSecret: true,
|
|
72
|
+
secretSource: {
|
|
73
|
+
type: 'vault',
|
|
74
|
+
secretType: 'ENVIRONMENT_VAR',
|
|
75
|
+
secretKey: 'CAL_API_KEY'
|
|
76
|
+
},
|
|
77
|
+
uiWidget: 'password',
|
|
78
|
+
enumValues: [],
|
|
79
|
+
readOnly: false,
|
|
80
|
+
iconType: ''
|
|
81
|
+
}]
|
|
82
|
+
}, {
|
|
83
|
+
id: 'clickup',
|
|
84
|
+
title: 'ClickUp',
|
|
85
|
+
description: 'ClickUp is an all-in-one productivity platform for managing tasks, docs, goal...',
|
|
86
|
+
providerUrl: 'https://app.clickup.com',
|
|
87
|
+
icon: {
|
|
88
|
+
name: 'AiOutlineProject',
|
|
89
|
+
style: {
|
|
90
|
+
fontSize: 'large'
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
logo: '_side/thirdparty/logos/clickup.svg',
|
|
94
|
+
enabled: true,
|
|
95
|
+
scopes: ['task:read', 'task:write'],
|
|
96
|
+
mcpUrl: 'https://mcp.clickup.com',
|
|
97
|
+
authMethods: ['api_key'],
|
|
98
|
+
categories: ['productivity & project management'],
|
|
99
|
+
fields: [{
|
|
100
|
+
name: 'clickup-api-key',
|
|
101
|
+
label: 'ClickUp API Key',
|
|
102
|
+
type: 'string',
|
|
103
|
+
placeholder: '',
|
|
104
|
+
description: 'Your api key is obtained from Clickup Settings',
|
|
105
|
+
required: true,
|
|
106
|
+
defaultValue: '',
|
|
107
|
+
isConfigField: true,
|
|
108
|
+
isSecret: true,
|
|
109
|
+
secretSource: {
|
|
110
|
+
type: 'vault',
|
|
111
|
+
secretType: 'ENVIRONMENT_VAR',
|
|
112
|
+
secretKey: 'CLICKUP_API_KEY'
|
|
113
|
+
},
|
|
114
|
+
uiWidget: 'password',
|
|
115
|
+
enumValues: [],
|
|
116
|
+
readOnly: false,
|
|
117
|
+
iconType: ''
|
|
118
|
+
}]
|
|
126
119
|
}, {
|
|
127
120
|
id: 'cloudflare',
|
|
128
121
|
title: 'Cloudflare',
|
|
129
122
|
description: 'Cloudflare is a global network that secures and accelerates web traffic',
|
|
130
|
-
scopes: [],
|
|
123
|
+
scopes: ['account:read', 'workers:write', 'dns:read'],
|
|
131
124
|
mcpUrl: 'https://mcp.cloudflare.com',
|
|
132
125
|
icon: {
|
|
133
126
|
name: 'AiOutlineCode',
|
|
@@ -138,29 +131,93 @@ const mcpProvidersConfig = [
|
|
|
138
131
|
logo: '_side/thirdparty/logos/cloudflare.svg',
|
|
139
132
|
color: '#F38020',
|
|
140
133
|
authMethods: ['api_key']
|
|
141
|
-
},
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
id: 'apify-mcp',
|
|
147
|
-
title: 'Apify MCP',
|
|
148
|
-
description: 'Apify MCP connector',
|
|
149
|
-
scopes: [],
|
|
150
|
-
mcpUrl: 'https://mcp.apify.com',
|
|
134
|
+
}, {
|
|
135
|
+
id: 'confluence',
|
|
136
|
+
title: 'Confluence',
|
|
137
|
+
description: "Confluence is Atlassian's team collaboration and knowledge management platfo...",
|
|
138
|
+
providerUrl: 'https://auth.atlassian.com',
|
|
151
139
|
icon: {
|
|
152
|
-
name: '
|
|
140
|
+
name: 'AiOutlineMessage',
|
|
153
141
|
style: {
|
|
154
142
|
fontSize: 'large'
|
|
155
143
|
}
|
|
156
144
|
},
|
|
157
|
-
logo: '_side/thirdparty/logos/
|
|
158
|
-
|
|
145
|
+
logo: '_side/thirdparty/logos/confluence.svg',
|
|
146
|
+
enabled: true,
|
|
147
|
+
scopes: ['read:confluence-content.all', 'write:confluence-content'],
|
|
148
|
+
mcpUrl: 'https://mcp.atlassian.com/v1',
|
|
149
|
+
authMethods: ['oauth2'],
|
|
150
|
+
categories: ['collaboration & communication'],
|
|
151
|
+
fields: [{
|
|
152
|
+
name: 'confluenceEmail',
|
|
153
|
+
label: 'Confluence Email',
|
|
154
|
+
type: 'string',
|
|
155
|
+
placeholder: 'The Atlassian account email with Confluence access',
|
|
156
|
+
description: '',
|
|
157
|
+
required: false,
|
|
158
|
+
defaultValue: '',
|
|
159
|
+
isConfigField: true,
|
|
160
|
+
isSecret: false,
|
|
161
|
+
secretSource: null,
|
|
162
|
+
uiWidget: 'text',
|
|
163
|
+
enumValues: [],
|
|
164
|
+
readOnly: false,
|
|
165
|
+
iconType: ''
|
|
166
|
+
}, {
|
|
167
|
+
name: 'confluenceBaseUrl',
|
|
168
|
+
label: 'Confluence Base URL',
|
|
169
|
+
type: 'string',
|
|
170
|
+
placeholder: 'Confluence site URL in this format: https://your-site.atlassian.net',
|
|
171
|
+
description: '',
|
|
172
|
+
required: false,
|
|
173
|
+
defaultValue: '',
|
|
174
|
+
isConfigField: true,
|
|
175
|
+
isSecret: false,
|
|
176
|
+
secretSource: null,
|
|
177
|
+
uiWidget: 'text',
|
|
178
|
+
enumValues: [],
|
|
179
|
+
readOnly: false,
|
|
180
|
+
iconType: ''
|
|
181
|
+
}, {
|
|
182
|
+
name: 'confluenceApiToken',
|
|
183
|
+
label: 'Confluence API Token',
|
|
184
|
+
type: 'string',
|
|
185
|
+
placeholder: 'Must start with ATATT3xFf (e.g., ATATT3xFfPJ0x...)',
|
|
186
|
+
description: '',
|
|
187
|
+
required: false,
|
|
188
|
+
defaultValue: '',
|
|
189
|
+
isConfigField: true,
|
|
190
|
+
isSecret: true,
|
|
191
|
+
secretSource: {
|
|
192
|
+
type: 'vault',
|
|
193
|
+
secretType: 'ENVIRONMENT_VAR',
|
|
194
|
+
secretKey: 'CONFLUENCE_API_TOKEN'
|
|
195
|
+
},
|
|
196
|
+
uiWidget: 'password',
|
|
197
|
+
enumValues: [],
|
|
198
|
+
readOnly: false,
|
|
199
|
+
iconType: ''
|
|
200
|
+
}, {
|
|
201
|
+
name: 'info',
|
|
202
|
+
label: 'Info',
|
|
203
|
+
type: 'string',
|
|
204
|
+
placeholder: '',
|
|
205
|
+
description: '<p>Generate your confluence credentials form <a target="_blank" rel="noopener noreferrer nofollow" class="text-blue-600 underline hover:text-blue-800" href="https://id.atlassian.com/manage-profile/security/api-tokens">official page</a>.</p>',
|
|
206
|
+
required: false,
|
|
207
|
+
defaultValue: '',
|
|
208
|
+
isConfigField: false,
|
|
209
|
+
isSecret: false,
|
|
210
|
+
secretSource: null,
|
|
211
|
+
uiWidget: 'LabelWidget',
|
|
212
|
+
enumValues: [],
|
|
213
|
+
readOnly: true,
|
|
214
|
+
iconType: 'info'
|
|
215
|
+
}]
|
|
159
216
|
}, {
|
|
160
217
|
id: 'context7-mcp',
|
|
161
|
-
title: 'Context7
|
|
218
|
+
title: 'Context7',
|
|
162
219
|
description: 'Context7 MCP delivers live, version-specific code docs and examples right fro...',
|
|
163
|
-
scopes: [],
|
|
220
|
+
scopes: ['docs:read'],
|
|
164
221
|
mcpUrl: 'https://mcp.context7.com',
|
|
165
222
|
icon: {
|
|
166
223
|
name: 'AiOutlineCode',
|
|
@@ -172,10 +229,10 @@ const mcpProvidersConfig = [
|
|
|
172
229
|
authMethods: ['api_key']
|
|
173
230
|
}, {
|
|
174
231
|
id: 'deepwiki-mcp',
|
|
175
|
-
title: 'DeepWiki
|
|
232
|
+
title: 'DeepWiki',
|
|
176
233
|
description: 'DeepWiki MCP connector',
|
|
177
|
-
scopes: [],
|
|
178
|
-
mcpUrl: 'https://mcp.deepwiki.com',
|
|
234
|
+
scopes: ['wiki:read'],
|
|
235
|
+
mcpUrl: 'https://mcp.deepwiki.com/mcp',
|
|
179
236
|
icon: {
|
|
180
237
|
name: 'AiOutlineApi',
|
|
181
238
|
style: {
|
|
@@ -183,12 +240,12 @@ const mcpProvidersConfig = [
|
|
|
183
240
|
}
|
|
184
241
|
},
|
|
185
242
|
logo: '_side/thirdparty/logos/deepwiki_mcp.svg',
|
|
186
|
-
authMethods: ['
|
|
243
|
+
authMethods: ['api_key']
|
|
187
244
|
}, {
|
|
188
245
|
id: 'devin-mcp',
|
|
189
|
-
title: 'Devin
|
|
246
|
+
title: 'Devin',
|
|
190
247
|
description: 'Devin MCP is an AI-powered integration for accessing and analyzing GitHub rep...',
|
|
191
|
-
scopes: [],
|
|
248
|
+
scopes: ['repos:read', 'repos:analyze'],
|
|
192
249
|
mcpUrl: 'https://mcp.devin.ai',
|
|
193
250
|
icon: {
|
|
194
251
|
name: 'AiOutlineCode',
|
|
@@ -198,11 +255,133 @@ const mcpProvidersConfig = [
|
|
|
198
255
|
},
|
|
199
256
|
logo: '_side/thirdparty/logos/devin_mcp.svg',
|
|
200
257
|
authMethods: ['api_key']
|
|
258
|
+
}, {
|
|
259
|
+
id: 'figma',
|
|
260
|
+
title: 'Figma',
|
|
261
|
+
description: 'Figma is a collaborative interface design tool for teams and individuals. It ...',
|
|
262
|
+
providerUrl: 'https://www.figma.com',
|
|
263
|
+
icon: {
|
|
264
|
+
name: 'AiOutlineHighlight',
|
|
265
|
+
style: {
|
|
266
|
+
fontSize: 'large'
|
|
267
|
+
}
|
|
268
|
+
},
|
|
269
|
+
logo: '_side/thirdparty/logos/figma.svg',
|
|
270
|
+
enabled: true,
|
|
271
|
+
scopes: ['file_read'],
|
|
272
|
+
mcpUrl: 'https://mcp.figma.com',
|
|
273
|
+
authMethods: ['api_key'],
|
|
274
|
+
categories: ['design & creative tools'],
|
|
275
|
+
fields: [{
|
|
276
|
+
name: 'figmaAccessToken',
|
|
277
|
+
label: 'Figma Access Token',
|
|
278
|
+
type: 'string',
|
|
279
|
+
placeholder: 'Starts with figd_ (e.g., figd_abc123def45678901234567890abcdef)',
|
|
280
|
+
description: '',
|
|
281
|
+
required: false,
|
|
282
|
+
defaultValue: '',
|
|
283
|
+
isConfigField: true,
|
|
284
|
+
isSecret: true,
|
|
285
|
+
secretSource: {
|
|
286
|
+
type: 'vault',
|
|
287
|
+
secretType: 'ENVIRONMENT_VAR',
|
|
288
|
+
secretKey: 'FIGMA_ACCESS_TOKEN'
|
|
289
|
+
},
|
|
290
|
+
uiWidget: 'password',
|
|
291
|
+
enumValues: [],
|
|
292
|
+
readOnly: false,
|
|
293
|
+
iconType: ''
|
|
294
|
+
}, {
|
|
295
|
+
name: 'info',
|
|
296
|
+
label: 'Info',
|
|
297
|
+
type: 'string',
|
|
298
|
+
placeholder: '',
|
|
299
|
+
description: '<ul class="tiptap-bullet-list"><li class="tiptap-list-item"><p>Log in to your Figma account → <a target="_blank" rel="noopener noreferrer nofollow" class="text-blue-600 underline hover:text-blue-800" href="https://www.figma.com/">figma.com</a></p></li><li class="tiptap-list-item"><p>Click your avatar → <strong>Settings</strong></p></li><li class="tiptap-list-item"><p>Create your access token.</p></li></ul>',
|
|
300
|
+
required: false,
|
|
301
|
+
defaultValue: '',
|
|
302
|
+
isConfigField: false,
|
|
303
|
+
isSecret: false,
|
|
304
|
+
secretSource: null,
|
|
305
|
+
uiWidget: 'LabelWidget',
|
|
306
|
+
enumValues: [],
|
|
307
|
+
readOnly: true,
|
|
308
|
+
iconType: 'info'
|
|
309
|
+
}]
|
|
310
|
+
}, {
|
|
311
|
+
id: 'github',
|
|
312
|
+
title: 'GitHub',
|
|
313
|
+
description: 'Access repositories, manage issues, and review pull requests',
|
|
314
|
+
providerUrl: 'https://github.com',
|
|
315
|
+
icon: {
|
|
316
|
+
name: 'AiOutlineGithub',
|
|
317
|
+
style: {
|
|
318
|
+
fontSize: 'large'
|
|
319
|
+
}
|
|
320
|
+
},
|
|
321
|
+
logo: '_side/thirdparty/logos/github.svg',
|
|
322
|
+
color: '#181717',
|
|
323
|
+
enabled: true,
|
|
324
|
+
scopes: ['repo', 'read:org', 'read:user'],
|
|
325
|
+
mcpUrl: 'https://api.githubcopilot.com/mcp',
|
|
326
|
+
authMethods: ['oauth2'],
|
|
327
|
+
categories: ['developer tools & devops']
|
|
328
|
+
}, {
|
|
329
|
+
id: 'googledocs',
|
|
330
|
+
title: 'Google Docs',
|
|
331
|
+
description: 'Google Docs is a cloud-based word processor that enables document creation an...',
|
|
332
|
+
providerUrl: 'https://accounts.google.com',
|
|
333
|
+
icon: {
|
|
334
|
+
name: 'AiOutlineFileText',
|
|
335
|
+
style: {
|
|
336
|
+
fontSize: 'large'
|
|
337
|
+
}
|
|
338
|
+
},
|
|
339
|
+
logo: '_side/thirdparty/logos/googledocs.svg',
|
|
340
|
+
enabled: true,
|
|
341
|
+
scopes: ['https://www.googleapis.com/auth/documents', 'openid', 'email'],
|
|
342
|
+
mcpUrl: 'https://mcp.google.com',
|
|
343
|
+
authMethods: ['oauth2'],
|
|
344
|
+
categories: ['document & file management']
|
|
345
|
+
}, {
|
|
346
|
+
id: 'google-drive',
|
|
347
|
+
title: 'Google Drive',
|
|
348
|
+
description: 'Access and manage your files, folders, and documents from Google Drive',
|
|
349
|
+
providerUrl: 'https://accounts.google.com',
|
|
350
|
+
icon: {
|
|
351
|
+
name: 'AiOutlineFolder',
|
|
352
|
+
style: {
|
|
353
|
+
fontSize: 'large'
|
|
354
|
+
}
|
|
355
|
+
},
|
|
356
|
+
logo: '_side/thirdparty/logos/googledrive.svg',
|
|
357
|
+
color: '#4285F4',
|
|
358
|
+
enabled: true,
|
|
359
|
+
scopes: ['https://www.googleapis.com/auth/drive', 'openid', 'email'],
|
|
360
|
+
mcpUrl: 'https://mcp.google.com',
|
|
361
|
+
authMethods: ['oauth2'],
|
|
362
|
+
categories: ['document & file management']
|
|
363
|
+
}, {
|
|
364
|
+
id: 'googlesheets',
|
|
365
|
+
title: 'Google Sheets',
|
|
366
|
+
description: 'Google Sheets is a cloud-based spreadsheet tool for real-time collaboration a...',
|
|
367
|
+
providerUrl: 'https://accounts.google.com',
|
|
368
|
+
icon: {
|
|
369
|
+
name: 'AiOutlineProject',
|
|
370
|
+
style: {
|
|
371
|
+
fontSize: 'large'
|
|
372
|
+
}
|
|
373
|
+
},
|
|
374
|
+
logo: '_side/thirdparty/logos/googlesheets.svg',
|
|
375
|
+
enabled: true,
|
|
376
|
+
scopes: ['https://www.googleapis.com/auth/spreadsheets', 'openid', 'email'],
|
|
377
|
+
mcpUrl: 'https://mcp.google.com',
|
|
378
|
+
authMethods: ['oauth2'],
|
|
379
|
+
categories: ['productivity & project management']
|
|
201
380
|
}, {
|
|
202
381
|
id: 'granola-mcp',
|
|
203
|
-
title: 'Granola
|
|
382
|
+
title: 'Granola',
|
|
204
383
|
description: 'Granola MCP connector',
|
|
205
|
-
scopes: [],
|
|
384
|
+
scopes: ['notes:read'],
|
|
206
385
|
mcpUrl: 'https://mcp.granola.ai',
|
|
207
386
|
icon: {
|
|
208
387
|
name: 'AiOutlineApi',
|
|
@@ -211,26 +390,163 @@ const mcpProvidersConfig = [
|
|
|
211
390
|
}
|
|
212
391
|
},
|
|
213
392
|
logo: '_side/thirdparty/logos/granola_mcp.svg',
|
|
214
|
-
authMethods: ['
|
|
393
|
+
authMethods: ['api_key']
|
|
394
|
+
}, {
|
|
395
|
+
id: 'hubspot',
|
|
396
|
+
title: 'HubSpot',
|
|
397
|
+
description: 'HubSpot is an all-in-one marketing, sales, and customer service platform. It ...',
|
|
398
|
+
providerUrl: 'https://app.hubspot.com',
|
|
399
|
+
icon: {
|
|
400
|
+
name: 'AiOutlineContacts',
|
|
401
|
+
style: {
|
|
402
|
+
fontSize: 'large'
|
|
403
|
+
}
|
|
404
|
+
},
|
|
405
|
+
logo: '_side/thirdparty/logos/hubspot.svg',
|
|
406
|
+
enabled: true,
|
|
407
|
+
scopes: ['crm.objects.contacts.read', 'crm.objects.contacts.write'],
|
|
408
|
+
mcpUrl: 'https://api.hubspot.com/mcp',
|
|
409
|
+
authMethods: ['api_key'],
|
|
410
|
+
categories: ['crm'],
|
|
411
|
+
fields: [{
|
|
412
|
+
name: 'hubspot-api-key',
|
|
413
|
+
label: 'HubSpot API Key',
|
|
414
|
+
type: 'string',
|
|
415
|
+
placeholder: '',
|
|
416
|
+
description: 'The API key for Hubspot API requests. For more information, visit https://developers.hubspot.com/',
|
|
417
|
+
required: true,
|
|
418
|
+
defaultValue: '',
|
|
419
|
+
isConfigField: true,
|
|
420
|
+
isSecret: true,
|
|
421
|
+
secretSource: {
|
|
422
|
+
type: 'vault',
|
|
423
|
+
secretType: 'ENVIRONMENT_VAR',
|
|
424
|
+
secretKey: 'HUBSPOT_API_KEY'
|
|
425
|
+
},
|
|
426
|
+
uiWidget: 'password',
|
|
427
|
+
enumValues: [],
|
|
428
|
+
readOnly: false,
|
|
429
|
+
iconType: ''
|
|
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']
|
|
215
443
|
}, {
|
|
216
|
-
id: '
|
|
217
|
-
title: '
|
|
218
|
-
description: '
|
|
219
|
-
scopes: [],
|
|
444
|
+
id: 'jira',
|
|
445
|
+
title: 'Jira',
|
|
446
|
+
description: 'Issue and project tracking',
|
|
447
|
+
scopes: ['read:jira-work', 'write:jira-work'],
|
|
448
|
+
mcpUrl: 'https://mcp.atlassian.com/v1',
|
|
449
|
+
icon: {
|
|
450
|
+
name: 'AiOutlineBug'
|
|
451
|
+
},
|
|
452
|
+
logo: '_side/thirdparty/logos/jira.svg',
|
|
453
|
+
color: '#0052CC',
|
|
454
|
+
authMethods: ['oauth2']
|
|
455
|
+
}, {
|
|
456
|
+
id: 'linear',
|
|
457
|
+
title: 'Linear',
|
|
458
|
+
description: 'Project management and issue tracking',
|
|
459
|
+
scopes: ['read', 'write'],
|
|
460
|
+
mcpUrl: 'https://mcp.linear.app/mcp',
|
|
461
|
+
icon: {
|
|
462
|
+
name: 'AiOutlineProject'
|
|
463
|
+
},
|
|
464
|
+
logo: '_side/thirdparty/logos/linear.svg',
|
|
465
|
+
color: '#5E6AD2',
|
|
466
|
+
authMethods: ['oauth2']
|
|
467
|
+
}, {
|
|
468
|
+
id: 'monday',
|
|
469
|
+
title: 'Monday',
|
|
470
|
+
description: 'Monday.com is a customizable work management platform for project planning',
|
|
471
|
+
providerUrl: 'https://auth.monday.com',
|
|
472
|
+
icon: {
|
|
473
|
+
name: 'AiOutlineProject',
|
|
474
|
+
style: {
|
|
475
|
+
fontSize: 'large'
|
|
476
|
+
}
|
|
477
|
+
},
|
|
478
|
+
logo: '_side/thirdparty/logos/monday.svg',
|
|
479
|
+
enabled: true,
|
|
480
|
+
scopes: ['boards:read', 'boards:write'],
|
|
220
481
|
mcpUrl: 'https://mcp.monday.com',
|
|
482
|
+
authMethods: ['oauth2'],
|
|
483
|
+
categories: ['productivity & project management']
|
|
484
|
+
}, {
|
|
485
|
+
id: 'neon',
|
|
486
|
+
title: 'Neon',
|
|
487
|
+
description: 'Neon is a serverless Postgres platform for building scalable apps faster. Its...',
|
|
488
|
+
providerUrl: 'https://oauth2.neon.tech',
|
|
221
489
|
icon: {
|
|
222
|
-
name: '
|
|
490
|
+
name: 'AiOutlineCode',
|
|
223
491
|
style: {
|
|
224
492
|
fontSize: 'large'
|
|
225
493
|
}
|
|
226
494
|
},
|
|
227
|
-
logo: '_side/thirdparty/logos/
|
|
228
|
-
|
|
495
|
+
logo: '_side/thirdparty/logos/neon.svg',
|
|
496
|
+
enabled: true,
|
|
497
|
+
scopes: ['urn:neoncloud:projects:read', 'urn:neoncloud:projects:create'],
|
|
498
|
+
mcpUrl: 'https://mcp.neon.tech',
|
|
499
|
+
authMethods: ['api_key'],
|
|
500
|
+
categories: ['developer tools & devops'],
|
|
501
|
+
fields: [{
|
|
502
|
+
name: 'neon-api-key',
|
|
503
|
+
label: 'Neon API Key',
|
|
504
|
+
type: 'string',
|
|
505
|
+
placeholder: '',
|
|
506
|
+
description: 'Your API key for authentication. Obtain it from your account settings.',
|
|
507
|
+
required: true,
|
|
508
|
+
defaultValue: '',
|
|
509
|
+
isConfigField: true,
|
|
510
|
+
isSecret: true,
|
|
511
|
+
secretSource: {
|
|
512
|
+
type: 'vault',
|
|
513
|
+
secretType: 'ENVIRONMENT_VAR',
|
|
514
|
+
secretKey: 'NEON_API_KEY'
|
|
515
|
+
},
|
|
516
|
+
uiWidget: 'password',
|
|
517
|
+
enumValues: [],
|
|
518
|
+
readOnly: false,
|
|
519
|
+
iconType: ''
|
|
520
|
+
}]
|
|
521
|
+
}, {
|
|
522
|
+
id: 'notion',
|
|
523
|
+
title: 'Notion',
|
|
524
|
+
description: 'All-in-one workspace for notes and docs',
|
|
525
|
+
mcpUrl: 'https://mcp.notion.com',
|
|
526
|
+
scopes: ['read:consent'],
|
|
527
|
+
icon: {
|
|
528
|
+
name: 'AiOutlineFileText'
|
|
529
|
+
},
|
|
530
|
+
logo: '_side/thirdparty/logos/notion.svg',
|
|
531
|
+
color: '#000000',
|
|
532
|
+
authMethods: ['oauth2']
|
|
533
|
+
}, {
|
|
534
|
+
id: 'posthog',
|
|
535
|
+
title: 'PostHog',
|
|
536
|
+
description: 'Product analytics and feature flags',
|
|
537
|
+
scopes: ['read', 'write'],
|
|
538
|
+
mcpUrl: 'https://mcp.posthog.com',
|
|
539
|
+
icon: {
|
|
540
|
+
name: 'AiOutlineSearch'
|
|
541
|
+
},
|
|
542
|
+
logo: '_side/thirdparty/logos/posthog.svg',
|
|
543
|
+
color: '#F9BD2B',
|
|
544
|
+
authMethods: ['api_key']
|
|
229
545
|
}, {
|
|
230
546
|
id: 'postiz-mcp',
|
|
231
547
|
title: 'Postiz',
|
|
232
548
|
description: 'Postiz is an agentic social media scheduling tool for managing and growing yo...',
|
|
233
|
-
scopes: [],
|
|
549
|
+
scopes: ['posts:read', 'posts:write', 'schedule:write'],
|
|
234
550
|
mcpUrl: 'https://mcp.postiz.com',
|
|
235
551
|
icon: {
|
|
236
552
|
name: 'AiOutlineShareAlt',
|
|
@@ -240,12 +556,253 @@ const mcpProvidersConfig = [
|
|
|
240
556
|
},
|
|
241
557
|
logo: '_side/thirdparty/logos/postiz_mcp.svg',
|
|
242
558
|
authMethods: ['api_key']
|
|
559
|
+
}, {
|
|
560
|
+
id: 'salesforce',
|
|
561
|
+
title: 'Salesforce',
|
|
562
|
+
description: 'Salesforce is a leading CRM platform that helps businesses manage sales, serv...',
|
|
563
|
+
providerUrl: 'https://login.salesforce.com',
|
|
564
|
+
icon: {
|
|
565
|
+
name: 'AiOutlineContacts',
|
|
566
|
+
style: {
|
|
567
|
+
fontSize: 'large'
|
|
568
|
+
}
|
|
569
|
+
},
|
|
570
|
+
logo: '_side/thirdparty/logos/salesforce.svg',
|
|
571
|
+
enabled: true,
|
|
572
|
+
scopes: ['api', 'refresh_token'],
|
|
573
|
+
mcpUrl: 'https://mcp.salesforce.com',
|
|
574
|
+
authMethods: ['oauth2'],
|
|
575
|
+
categories: ['crm']
|
|
576
|
+
}, {
|
|
577
|
+
id: 'sentry',
|
|
578
|
+
title: 'Sentry',
|
|
579
|
+
description: 'Sentry is an error tracking and performance monitoring platform for applicati...',
|
|
580
|
+
providerUrl: 'https://sentry.io',
|
|
581
|
+
icon: {
|
|
582
|
+
name: 'AiOutlineCode',
|
|
583
|
+
style: {
|
|
584
|
+
fontSize: 'large'
|
|
585
|
+
}
|
|
586
|
+
},
|
|
587
|
+
logo: '_side/thirdparty/logos/sentry.svg',
|
|
588
|
+
enabled: true,
|
|
589
|
+
scopes: ['org:read', 'project:read', 'event:read'],
|
|
590
|
+
mcpUrl: 'https://mcp.sentry.dev',
|
|
591
|
+
authMethods: ['api_key'],
|
|
592
|
+
categories: ['developer tools & devops'],
|
|
593
|
+
fields: [{
|
|
594
|
+
name: 'token',
|
|
595
|
+
label: 'Bearer Token',
|
|
596
|
+
type: 'string',
|
|
597
|
+
placeholder: '',
|
|
598
|
+
description: 'Token for bearer authentication',
|
|
599
|
+
required: true,
|
|
600
|
+
defaultValue: '',
|
|
601
|
+
isConfigField: true,
|
|
602
|
+
isSecret: true,
|
|
603
|
+
secretSource: {
|
|
604
|
+
type: 'vault',
|
|
605
|
+
secretType: 'ENVIRONMENT_VAR',
|
|
606
|
+
secretKey: 'TOKEN'
|
|
607
|
+
},
|
|
608
|
+
uiWidget: 'password',
|
|
609
|
+
enumValues: [],
|
|
610
|
+
readOnly: false,
|
|
611
|
+
iconType: ''
|
|
612
|
+
}]
|
|
613
|
+
}, {
|
|
614
|
+
id: 'shopify',
|
|
615
|
+
title: 'Shopify',
|
|
616
|
+
description: 'Shopify is an e-commerce platform for building, managing, and scaling online ...',
|
|
617
|
+
providerUrl: 'https://accounts.shopify.com',
|
|
618
|
+
icon: {
|
|
619
|
+
name: 'AiOutlineShoppingCart',
|
|
620
|
+
style: {
|
|
621
|
+
fontSize: 'large'
|
|
622
|
+
}
|
|
623
|
+
},
|
|
624
|
+
logo: '_side/thirdparty/logos/shopify.svg',
|
|
625
|
+
enabled: true,
|
|
626
|
+
scopes: ['read_products', 'write_orders', 'read_customers'],
|
|
627
|
+
mcpUrl: 'https://mcp.shopify.com',
|
|
628
|
+
authMethods: ['api_key'],
|
|
629
|
+
categories: ['e-commerce'],
|
|
630
|
+
fields: [{
|
|
631
|
+
name: 'subdomain',
|
|
632
|
+
label: 'Store Subdomain',
|
|
633
|
+
type: 'string',
|
|
634
|
+
placeholder: '',
|
|
635
|
+
description: "Your Shopify store's subdomain (e.g., your-store-name in your-store-name.myshopify.com)",
|
|
636
|
+
required: true,
|
|
637
|
+
defaultValue: '',
|
|
638
|
+
isConfigField: true,
|
|
639
|
+
isSecret: false,
|
|
640
|
+
secretSource: null,
|
|
641
|
+
uiWidget: 'text',
|
|
642
|
+
enumValues: [],
|
|
643
|
+
readOnly: false,
|
|
644
|
+
iconType: ''
|
|
645
|
+
}, {
|
|
646
|
+
name: 'shopify-admin-api-access-token',
|
|
647
|
+
label: 'Shopify Admin Api Access Token',
|
|
648
|
+
type: 'string',
|
|
649
|
+
placeholder: '',
|
|
650
|
+
description: 'Your Admin api acess token for authentication which can be generated from your Shopify app settings. Create a Shopify app and configure the required scopes. You can access your app settings and generate the token by visiting https://admin.shopify.com/store/<store-name>/settings/apps/development',
|
|
651
|
+
required: true,
|
|
652
|
+
defaultValue: '',
|
|
653
|
+
isConfigField: true,
|
|
654
|
+
isSecret: true,
|
|
655
|
+
secretSource: {
|
|
656
|
+
type: 'vault',
|
|
657
|
+
secretType: 'ENVIRONMENT_VAR',
|
|
658
|
+
secretKey: 'SHOPIFY_ADMIN_API_ACCESS_TOKEN'
|
|
659
|
+
},
|
|
660
|
+
uiWidget: 'password',
|
|
661
|
+
enumValues: [],
|
|
662
|
+
readOnly: false,
|
|
663
|
+
iconType: ''
|
|
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']
|
|
677
|
+
}, {
|
|
678
|
+
id: 'stripe',
|
|
679
|
+
title: 'Stripe',
|
|
680
|
+
description: 'Stripe is a global online payments platform offering APIs for managing paymen...',
|
|
681
|
+
providerUrl: 'https://connect.stripe.com',
|
|
682
|
+
icon: {
|
|
683
|
+
name: 'AiOutlineDollar',
|
|
684
|
+
style: {
|
|
685
|
+
fontSize: 'large'
|
|
686
|
+
}
|
|
687
|
+
},
|
|
688
|
+
logo: '_side/thirdparty/logos/stripe.svg',
|
|
689
|
+
enabled: true,
|
|
690
|
+
scopes: ['read_write'],
|
|
691
|
+
mcpUrl: 'https://mcp.stripe.com',
|
|
692
|
+
authMethods: ['api_key'],
|
|
693
|
+
categories: ['finance & accounting'],
|
|
694
|
+
fields: [{
|
|
695
|
+
name: 'stripeSecretKey',
|
|
696
|
+
label: 'Stripe Secret Key',
|
|
697
|
+
type: 'string',
|
|
698
|
+
placeholder: 'Starts with sk_live_ (live) or sk_test_ (test) e.g., sk_live_51AbC... or sk_test_51XyZ...',
|
|
699
|
+
description: '',
|
|
700
|
+
required: false,
|
|
701
|
+
defaultValue: '',
|
|
702
|
+
isConfigField: true,
|
|
703
|
+
isSecret: true,
|
|
704
|
+
secretSource: {
|
|
705
|
+
type: 'vault',
|
|
706
|
+
secretType: 'ENVIRONMENT_VAR',
|
|
707
|
+
secretKey: 'STRIPE_SECRET_KEY'
|
|
708
|
+
},
|
|
709
|
+
uiWidget: 'password',
|
|
710
|
+
enumValues: [],
|
|
711
|
+
readOnly: false,
|
|
712
|
+
iconType: ''
|
|
713
|
+
}, {
|
|
714
|
+
name: 'info',
|
|
715
|
+
label: 'Info',
|
|
716
|
+
type: 'string',
|
|
717
|
+
placeholder: '',
|
|
718
|
+
description: '<ul class="tiptap-bullet-list"><li class="tiptap-list-item"><p>Go to <a target="_blank" rel="noopener noreferrer nofollow" class="text-blue-600 underline hover:text-blue-800" href="https://dashboard.stripe.com/apikeys">dashboard.stripe.com</a></p></li><li class="tiptap-list-item"><p>Use Test mode keys (sk_test_…) for development</p></li><li class="tiptap-list-item"><p>Switch to Live mode → reveal Live secret key (sk_live_…) when ready</p></li></ul>',
|
|
719
|
+
required: false,
|
|
720
|
+
defaultValue: '',
|
|
721
|
+
isConfigField: false,
|
|
722
|
+
isSecret: false,
|
|
723
|
+
secretSource: null,
|
|
724
|
+
uiWidget: 'LabelWidget',
|
|
725
|
+
enumValues: [],
|
|
726
|
+
readOnly: true,
|
|
727
|
+
iconType: 'info'
|
|
728
|
+
}]
|
|
729
|
+
}, {
|
|
730
|
+
id: 'supabase',
|
|
731
|
+
title: 'Supabase',
|
|
732
|
+
description: 'Supabase is an open-source backend platform offering scalable Postgres databa...',
|
|
733
|
+
providerUrl: 'https://api.supabase.com',
|
|
734
|
+
icon: {
|
|
735
|
+
name: 'AiOutlineCode',
|
|
736
|
+
style: {
|
|
737
|
+
fontSize: 'large'
|
|
738
|
+
}
|
|
739
|
+
},
|
|
740
|
+
logo: '_side/thirdparty/logos/supabase.svg',
|
|
741
|
+
enabled: true,
|
|
742
|
+
scopes: ['all'],
|
|
743
|
+
mcpUrl: 'https://mcp.supabase.com',
|
|
744
|
+
authMethods: ['api_key'],
|
|
745
|
+
categories: ['developer tools & devops'],
|
|
746
|
+
fields: [{
|
|
747
|
+
name: 'supabaseProjectUrl',
|
|
748
|
+
label: 'Supabase Project URL',
|
|
749
|
+
type: 'string',
|
|
750
|
+
placeholder: 'eg : https://abc123def.supabase.co',
|
|
751
|
+
description: '',
|
|
752
|
+
required: false,
|
|
753
|
+
defaultValue: '',
|
|
754
|
+
isConfigField: true,
|
|
755
|
+
isSecret: true,
|
|
756
|
+
secretSource: {
|
|
757
|
+
type: 'vault',
|
|
758
|
+
secretType: 'ENVIRONMENT_VAR',
|
|
759
|
+
secretKey: 'SUPABASE_PROJECT_URL'
|
|
760
|
+
},
|
|
761
|
+
uiWidget: 'text',
|
|
762
|
+
enumValues: [],
|
|
763
|
+
readOnly: false,
|
|
764
|
+
iconType: ''
|
|
765
|
+
}, {
|
|
766
|
+
name: 'supabaseAnonPublicKey',
|
|
767
|
+
label: 'Supabase Anon Public Key',
|
|
768
|
+
type: 'string',
|
|
769
|
+
placeholder: 'Starts with eyJ... (long JWT-like string)',
|
|
770
|
+
description: '',
|
|
771
|
+
required: false,
|
|
772
|
+
defaultValue: '',
|
|
773
|
+
isConfigField: true,
|
|
774
|
+
isSecret: true,
|
|
775
|
+
secretSource: {
|
|
776
|
+
type: 'vault',
|
|
777
|
+
secretType: 'ENVIRONMENT_VAR',
|
|
778
|
+
secretKey: 'SUPABASE_ANON_PUBLIC_KEY'
|
|
779
|
+
},
|
|
780
|
+
uiWidget: 'password',
|
|
781
|
+
enumValues: [],
|
|
782
|
+
readOnly: false,
|
|
783
|
+
iconType: ''
|
|
784
|
+
}, {
|
|
785
|
+
name: 'info',
|
|
786
|
+
label: 'Info',
|
|
787
|
+
type: 'string',
|
|
788
|
+
placeholder: '',
|
|
789
|
+
description: '<p>Visit your project at <a target="_blank" rel="noopener noreferrer nofollow" class="text-blue-600 underline hover:text-blue-800" href="http://app.supabase.com">app.supabase.com</a> and obtain your credentials.</p>',
|
|
790
|
+
required: false,
|
|
791
|
+
defaultValue: '',
|
|
792
|
+
isConfigField: false,
|
|
793
|
+
isSecret: false,
|
|
794
|
+
secretSource: null,
|
|
795
|
+
uiWidget: 'LabelWidget',
|
|
796
|
+
enumValues: [],
|
|
797
|
+
readOnly: true,
|
|
798
|
+
iconType: 'info'
|
|
799
|
+
}]
|
|
243
800
|
}, {
|
|
244
801
|
id: 'tavily-mcp',
|
|
245
|
-
title: 'Tavily
|
|
802
|
+
title: 'Tavily',
|
|
246
803
|
description: 'Tavily MCP connector',
|
|
247
|
-
scopes: [],
|
|
248
|
-
mcpUrl: 'https://mcp.tavily.com',
|
|
804
|
+
scopes: ['search', 'extract', 'map', 'crawl'],
|
|
805
|
+
mcpUrl: 'https://mcp.tavily.com/mcp',
|
|
249
806
|
icon: {
|
|
250
807
|
name: 'AiOutlineApi',
|
|
251
808
|
style: {
|
|
@@ -253,12 +810,12 @@ const mcpProvidersConfig = [
|
|
|
253
810
|
}
|
|
254
811
|
},
|
|
255
812
|
logo: '_side/thirdparty/logos/tavily_mcp.svg',
|
|
256
|
-
authMethods: ['
|
|
813
|
+
authMethods: ['api_key']
|
|
257
814
|
}, {
|
|
258
815
|
id: 'tinyfish-mcp',
|
|
259
|
-
title: 'TinyFish
|
|
816
|
+
title: 'TinyFish',
|
|
260
817
|
description: 'TinyFish MCP connector',
|
|
261
|
-
scopes: [],
|
|
818
|
+
scopes: ['tools:read'],
|
|
262
819
|
mcpUrl: 'https://mcp.tinyfish.io',
|
|
263
820
|
icon: {
|
|
264
821
|
name: 'AiOutlineApi',
|
|
@@ -267,12 +824,76 @@ const mcpProvidersConfig = [
|
|
|
267
824
|
}
|
|
268
825
|
},
|
|
269
826
|
logo: '_side/thirdparty/logos/tinyfish_mcp.svg',
|
|
270
|
-
authMethods: ['
|
|
827
|
+
authMethods: ['api_key']
|
|
828
|
+
}, {
|
|
829
|
+
id: 'todoist',
|
|
830
|
+
title: 'Todoist',
|
|
831
|
+
description: 'Task management and to-do lists',
|
|
832
|
+
scopes: ['task:add', 'data:read', 'data:read_write'],
|
|
833
|
+
mcpUrl: 'https://ai.todoist.net',
|
|
834
|
+
icon: {
|
|
835
|
+
name: 'AiOutlineCheckSquare'
|
|
836
|
+
},
|
|
837
|
+
logo: '_side/thirdparty/logos/todoist.svg',
|
|
838
|
+
color: '#E44332',
|
|
839
|
+
authMethods: ['api_key']
|
|
840
|
+
}, {
|
|
841
|
+
id: 'vercel',
|
|
842
|
+
title: 'Vercel',
|
|
843
|
+
description: 'Vercel is a platform for frontend frameworks and static sites, letting you ho...',
|
|
844
|
+
providerUrl: 'https://vercel.com',
|
|
845
|
+
icon: {
|
|
846
|
+
name: 'AiOutlineCode',
|
|
847
|
+
style: {
|
|
848
|
+
fontSize: 'large'
|
|
849
|
+
}
|
|
850
|
+
},
|
|
851
|
+
logo: '_side/thirdparty/logos/vercel.svg',
|
|
852
|
+
enabled: true,
|
|
853
|
+
scopes: ['deployments:read', 'projects:read', 'projects:write'],
|
|
854
|
+
mcpUrl: 'https://mcp.vercel.com',
|
|
855
|
+
authMethods: ['api_key'],
|
|
856
|
+
categories: ['developer tools & devops'],
|
|
857
|
+
fields: [{
|
|
858
|
+
name: 'bearerToken',
|
|
859
|
+
label: 'Vercel Access Token',
|
|
860
|
+
type: 'string',
|
|
861
|
+
placeholder: '',
|
|
862
|
+
description: 'The Vercel Access Token used for authenticating API requests.',
|
|
863
|
+
required: true,
|
|
864
|
+
defaultValue: '',
|
|
865
|
+
isConfigField: true,
|
|
866
|
+
isSecret: true,
|
|
867
|
+
secretSource: {
|
|
868
|
+
type: 'vault',
|
|
869
|
+
secretType: 'ENVIRONMENT_VAR',
|
|
870
|
+
secretKey: 'BEARER_TOKEN'
|
|
871
|
+
},
|
|
872
|
+
uiWidget: 'password',
|
|
873
|
+
enumValues: [],
|
|
874
|
+
readOnly: false,
|
|
875
|
+
iconType: ''
|
|
876
|
+
}, {
|
|
877
|
+
name: 'vercel-team-id',
|
|
878
|
+
label: 'Vercel Team ID',
|
|
879
|
+
type: 'string',
|
|
880
|
+
placeholder: '',
|
|
881
|
+
description: 'The identifier of the Vercel team to perform the request on behalf of.',
|
|
882
|
+
required: false,
|
|
883
|
+
defaultValue: '',
|
|
884
|
+
isConfigField: true,
|
|
885
|
+
isSecret: false,
|
|
886
|
+
secretSource: null,
|
|
887
|
+
uiWidget: 'text',
|
|
888
|
+
enumValues: [],
|
|
889
|
+
readOnly: false,
|
|
890
|
+
iconType: ''
|
|
891
|
+
}]
|
|
271
892
|
}, {
|
|
272
893
|
id: 'wix-mcp',
|
|
273
|
-
title: 'Wix
|
|
894
|
+
title: 'Wix',
|
|
274
895
|
description: 'Wix MCP connector',
|
|
275
|
-
scopes: [],
|
|
896
|
+
scopes: ['site:read', 'site:write'],
|
|
276
897
|
mcpUrl: 'https://mcp.wix.com',
|
|
277
898
|
icon: {
|
|
278
899
|
name: 'AiOutlineApi',
|
|
@@ -280,6 +901,23 @@ const mcpProvidersConfig = [
|
|
|
280
901
|
fontSize: 'large'
|
|
281
902
|
}
|
|
282
903
|
},
|
|
283
|
-
logo: '_side/thirdparty/logos/
|
|
284
|
-
authMethods: ['
|
|
904
|
+
logo: '_side/thirdparty/logos/wix.svg',
|
|
905
|
+
authMethods: ['api_key']
|
|
906
|
+
}, {
|
|
907
|
+
id: 'zoom',
|
|
908
|
+
title: 'Zoom',
|
|
909
|
+
description: 'Zoom is a video conferencing and online meeting platform with features like b...',
|
|
910
|
+
providerUrl: 'https://zoom.us',
|
|
911
|
+
icon: {
|
|
912
|
+
name: 'AiOutlineMessage',
|
|
913
|
+
style: {
|
|
914
|
+
fontSize: 'large'
|
|
915
|
+
}
|
|
916
|
+
},
|
|
917
|
+
logo: '_side/thirdparty/logos/zoom.svg',
|
|
918
|
+
enabled: true,
|
|
919
|
+
scopes: ['meeting:read', 'meeting:write', 'user:read'],
|
|
920
|
+
mcpUrl: 'https://mcp.zoom.us',
|
|
921
|
+
authMethods: ['oauth2'],
|
|
922
|
+
categories: ['collaboration & communication']
|
|
285
923
|
}];export{mcpProvidersConfig};//# sourceMappingURL=mcpConnectorConfig.js.map
|