@aiwerk/mcp-bridge 2.1.3 → 2.5.0
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/README.md +39 -2
- package/dist/src/index.d.ts +1 -1
- package/dist/src/mcp-router.d.ts +6 -3
- package/dist/src/mcp-router.js +37 -10
- package/dist/src/security.js +17 -16
- package/dist/src/standalone-server.d.ts +2 -0
- package/dist/src/standalone-server.js +20 -15
- package/dist/src/transport-base.d.ts +5 -2
- package/dist/src/transport-base.js +9 -2
- package/dist/src/transport-sse.d.ts +2 -2
- package/dist/src/transport-sse.js +3 -4
- package/dist/src/transport-stdio.js +10 -4
- package/dist/src/transport-streamable-http.d.ts +2 -2
- package/dist/src/transport-streamable-http.js +3 -4
- package/dist/src/types.d.ts +6 -1
- package/dist/src/types.js +5 -6
- package/package.json +2 -2
- package/scripts/install-server.sh +8 -6
- package/scripts/validate-recipes.sh +13 -0
- package/servers/apify/recipe.json +20 -7
- package/servers/atlassian/recipe.json +20 -8
- package/servers/chrome-devtools/recipe.json +22 -8
- package/servers/github/recipe.json +20 -8
- package/servers/google-maps/recipe.json +25 -10
- package/servers/hetzner/recipe.json +23 -9
- package/servers/hostinger/recipe.json +24 -9
- package/servers/imap-email/README.md +37 -0
- package/servers/imap-email/recipe.json +47 -6
- package/servers/index.json +292 -71
- package/servers/linear/recipe.json +23 -9
- package/servers/miro/recipe.json +26 -9
- package/servers/notion/recipe.json +24 -9
- package/servers/stripe/recipe.json +26 -9
- package/servers/tavily/recipe.json +24 -9
- package/servers/todoist/recipe.json +24 -9
- package/servers/wise/recipe.json +23 -9
- package/servers/atlassian/config.json +0 -19
- package/servers/chrome-devtools/config.json +0 -16
- package/servers/github/config.json +0 -21
- package/servers/hostinger/config.json +0 -17
- package/servers/wise/config.json +0 -16
package/servers/index.json
CHANGED
|
@@ -1,159 +1,380 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 2,
|
|
3
|
-
"generatedAt": "2026-03-
|
|
3
|
+
"generatedAt": "2026-03-16T13:41:04.809Z",
|
|
4
4
|
"recipes": {
|
|
5
5
|
"apify": {
|
|
6
6
|
"name": "Apify",
|
|
7
7
|
"description": "Web scraping and automation platform with 3000+ ready-made actors for data extraction, browser automation, and crawling",
|
|
8
8
|
"category": "automation",
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
9
|
+
"subcategory": "scraping",
|
|
10
|
+
"origin": "community",
|
|
11
|
+
"countries": [
|
|
12
|
+
"global"
|
|
13
|
+
],
|
|
14
|
+
"tags": [
|
|
15
|
+
"scraping",
|
|
16
|
+
"automation",
|
|
17
|
+
"web",
|
|
18
|
+
"crawling",
|
|
19
|
+
"actors"
|
|
20
|
+
],
|
|
21
|
+
"authType": "bearer",
|
|
22
|
+
"transports": [
|
|
23
|
+
"streamable-http"
|
|
24
|
+
],
|
|
25
|
+
"installMethod": null,
|
|
12
26
|
"maturity": "stable",
|
|
13
|
-
"
|
|
27
|
+
"toolCount": null,
|
|
28
|
+
"authSummary": "none"
|
|
14
29
|
},
|
|
15
30
|
"atlassian": {
|
|
16
31
|
"name": "Atlassian (Confluence + Jira)",
|
|
17
32
|
"description": "Confluence wiki and Jira project management — search, create, and update pages and issues",
|
|
18
33
|
"category": "productivity",
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
|
|
34
|
+
"subcategory": "project-management",
|
|
35
|
+
"origin": "community",
|
|
36
|
+
"countries": [
|
|
37
|
+
"global"
|
|
38
|
+
],
|
|
39
|
+
"tags": [
|
|
40
|
+
"wiki",
|
|
41
|
+
"project-management",
|
|
42
|
+
"confluence",
|
|
43
|
+
"jira",
|
|
44
|
+
"atlassian"
|
|
45
|
+
],
|
|
46
|
+
"authType": "api-key",
|
|
47
|
+
"transports": [
|
|
48
|
+
"stdio"
|
|
49
|
+
],
|
|
50
|
+
"installMethod": "uvx",
|
|
23
51
|
"maturity": "stable",
|
|
24
|
-
"
|
|
52
|
+
"toolCount": null,
|
|
53
|
+
"authSummary": "none"
|
|
25
54
|
},
|
|
26
55
|
"chrome-devtools": {
|
|
27
56
|
"name": "Chrome DevTools",
|
|
28
57
|
"description": "Control and inspect a live Chrome browser for automation, debugging, and performance analysis via the Chrome DevTools Protocol",
|
|
29
58
|
"category": "development",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
|
|
59
|
+
"subcategory": "monitoring",
|
|
60
|
+
"origin": "community",
|
|
61
|
+
"countries": [
|
|
62
|
+
"global"
|
|
63
|
+
],
|
|
64
|
+
"tags": [
|
|
65
|
+
"browser",
|
|
66
|
+
"debugging",
|
|
67
|
+
"automation",
|
|
68
|
+
"devtools",
|
|
69
|
+
"chrome"
|
|
70
|
+
],
|
|
71
|
+
"authType": "none",
|
|
72
|
+
"transports": [
|
|
73
|
+
"stdio"
|
|
74
|
+
],
|
|
75
|
+
"installMethod": "npx",
|
|
34
76
|
"maturity": "stable",
|
|
35
|
-
"
|
|
77
|
+
"toolCount": null,
|
|
78
|
+
"authSummary": "none"
|
|
36
79
|
},
|
|
37
80
|
"github": {
|
|
38
81
|
"name": "GitHub",
|
|
39
82
|
"description": "GitHub repository management — repos, issues, PRs, code search, and more via the official GitHub MCP server",
|
|
40
83
|
"category": "development",
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
|
|
84
|
+
"subcategory": "version-control",
|
|
85
|
+
"origin": "official",
|
|
86
|
+
"countries": [
|
|
87
|
+
"global"
|
|
88
|
+
],
|
|
89
|
+
"tags": [
|
|
90
|
+
"git",
|
|
91
|
+
"repos",
|
|
92
|
+
"issues",
|
|
93
|
+
"pull-requests",
|
|
94
|
+
"code-review"
|
|
95
|
+
],
|
|
96
|
+
"authType": "api-key",
|
|
97
|
+
"transports": [
|
|
98
|
+
"stdio"
|
|
99
|
+
],
|
|
100
|
+
"installMethod": "docker",
|
|
45
101
|
"maturity": "stable",
|
|
46
|
-
"
|
|
102
|
+
"toolCount": null,
|
|
103
|
+
"authSummary": "none"
|
|
47
104
|
},
|
|
48
105
|
"google-maps": {
|
|
49
106
|
"name": "Google Maps",
|
|
50
107
|
"description": "Google Maps integration for places search, geocoding, directions, and distance matrix via the official MCP server",
|
|
51
|
-
"category": "
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
|
|
108
|
+
"category": "data",
|
|
109
|
+
"subcategory": "search-engine",
|
|
110
|
+
"origin": "official",
|
|
111
|
+
"countries": [
|
|
112
|
+
"global"
|
|
113
|
+
],
|
|
114
|
+
"tags": [
|
|
115
|
+
"maps",
|
|
116
|
+
"geocoding",
|
|
117
|
+
"places",
|
|
118
|
+
"directions",
|
|
119
|
+
"navigation"
|
|
120
|
+
],
|
|
121
|
+
"authType": "api-key",
|
|
122
|
+
"transports": [
|
|
123
|
+
"stdio"
|
|
124
|
+
],
|
|
125
|
+
"installMethod": "npx",
|
|
56
126
|
"maturity": "stable",
|
|
57
|
-
"
|
|
127
|
+
"toolCount": null,
|
|
128
|
+
"authSummary": "none"
|
|
58
129
|
},
|
|
59
130
|
"hetzner": {
|
|
60
131
|
"name": "Hetzner Cloud",
|
|
61
132
|
"description": "Manage Hetzner Cloud infrastructure — servers, networks, load balancers, volumes, firewalls, and more via the Hetzner Cloud API",
|
|
62
133
|
"category": "infrastructure",
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
|
|
134
|
+
"subcategory": "cloud",
|
|
135
|
+
"origin": "community",
|
|
136
|
+
"countries": [
|
|
137
|
+
"EU"
|
|
138
|
+
],
|
|
139
|
+
"tags": [
|
|
140
|
+
"cloud",
|
|
141
|
+
"infrastructure",
|
|
142
|
+
"servers",
|
|
143
|
+
"vps",
|
|
144
|
+
"hetzner"
|
|
145
|
+
],
|
|
146
|
+
"authType": "api-key",
|
|
147
|
+
"transports": [
|
|
148
|
+
"stdio"
|
|
149
|
+
],
|
|
150
|
+
"installMethod": "git",
|
|
67
151
|
"maturity": "stable",
|
|
68
|
-
"
|
|
152
|
+
"toolCount": null,
|
|
153
|
+
"authSummary": "none"
|
|
69
154
|
},
|
|
70
155
|
"hostinger": {
|
|
71
156
|
"name": "Hostinger",
|
|
72
157
|
"description": "Web hosting management via Hostinger API — manage domains, hosting plans, email accounts, and website settings",
|
|
73
158
|
"category": "infrastructure",
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
|
|
159
|
+
"subcategory": "cloud",
|
|
160
|
+
"origin": "community",
|
|
161
|
+
"countries": [
|
|
162
|
+
"global"
|
|
163
|
+
],
|
|
164
|
+
"tags": [
|
|
165
|
+
"hosting",
|
|
166
|
+
"domains",
|
|
167
|
+
"web-hosting",
|
|
168
|
+
"email",
|
|
169
|
+
"dns"
|
|
170
|
+
],
|
|
171
|
+
"authType": "api-key",
|
|
172
|
+
"transports": [
|
|
173
|
+
"stdio"
|
|
174
|
+
],
|
|
175
|
+
"installMethod": "npx",
|
|
78
176
|
"maturity": "stable",
|
|
79
|
-
"
|
|
177
|
+
"toolCount": null,
|
|
178
|
+
"authSummary": "none"
|
|
179
|
+
},
|
|
180
|
+
"imap-email": {
|
|
181
|
+
"name": "IMAP Email",
|
|
182
|
+
"description": "Email tools for any IMAP/SMTP provider - list, read, search, send, manage emails",
|
|
183
|
+
"category": "communication",
|
|
184
|
+
"subcategory": "email",
|
|
185
|
+
"origin": "aiwerk",
|
|
186
|
+
"countries": [
|
|
187
|
+
"global"
|
|
188
|
+
],
|
|
189
|
+
"tags": [
|
|
190
|
+
"email",
|
|
191
|
+
"imap",
|
|
192
|
+
"smtp",
|
|
193
|
+
"inbox"
|
|
194
|
+
],
|
|
195
|
+
"authType": "api-key",
|
|
196
|
+
"transports": [
|
|
197
|
+
"stdio"
|
|
198
|
+
],
|
|
199
|
+
"installMethod": "npx",
|
|
200
|
+
"maturity": "beta",
|
|
201
|
+
"toolCount": null,
|
|
202
|
+
"authSummary": "none"
|
|
80
203
|
},
|
|
81
204
|
"linear": {
|
|
82
205
|
"name": "Linear",
|
|
83
206
|
"description": "Linear project management — create, update, and search issues, projects, and teams via the Linear API",
|
|
84
207
|
"category": "productivity",
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
|
|
208
|
+
"subcategory": "project-management",
|
|
209
|
+
"origin": "official",
|
|
210
|
+
"countries": [
|
|
211
|
+
"global"
|
|
212
|
+
],
|
|
213
|
+
"tags": [
|
|
214
|
+
"project-management",
|
|
215
|
+
"issues",
|
|
216
|
+
"tasks",
|
|
217
|
+
"teams",
|
|
218
|
+
"agile"
|
|
219
|
+
],
|
|
220
|
+
"authType": "api-key",
|
|
221
|
+
"transports": [
|
|
222
|
+
"stdio"
|
|
223
|
+
],
|
|
224
|
+
"installMethod": "git",
|
|
89
225
|
"maturity": "stable",
|
|
90
|
-
"
|
|
226
|
+
"toolCount": null,
|
|
227
|
+
"authSummary": "none"
|
|
91
228
|
},
|
|
92
229
|
"miro": {
|
|
93
230
|
"name": "Miro",
|
|
94
231
|
"description": "Collaborative whiteboard — create and manipulate Miro boards, sticky notes, cards, connectors, and shapes via the Miro API",
|
|
95
232
|
"category": "productivity",
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
|
|
233
|
+
"subcategory": "whiteboard",
|
|
234
|
+
"origin": "community",
|
|
235
|
+
"countries": [
|
|
236
|
+
"global"
|
|
237
|
+
],
|
|
238
|
+
"tags": [
|
|
239
|
+
"whiteboard",
|
|
240
|
+
"collaboration",
|
|
241
|
+
"diagrams",
|
|
242
|
+
"brainstorming",
|
|
243
|
+
"visual"
|
|
244
|
+
],
|
|
245
|
+
"authType": "api-key",
|
|
246
|
+
"transports": [
|
|
247
|
+
"stdio"
|
|
248
|
+
],
|
|
249
|
+
"installMethod": "npx",
|
|
100
250
|
"maturity": "stable",
|
|
101
|
-
"
|
|
251
|
+
"toolCount": null,
|
|
252
|
+
"authSummary": "none"
|
|
102
253
|
},
|
|
103
254
|
"notion": {
|
|
104
255
|
"name": "Notion",
|
|
105
256
|
"description": "Notion workspace integration — read, create, and update pages, databases, blocks, and comments via the official Notion MCP server",
|
|
106
257
|
"category": "productivity",
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
|
|
258
|
+
"subcategory": "notes",
|
|
259
|
+
"origin": "official",
|
|
260
|
+
"countries": [
|
|
261
|
+
"global"
|
|
262
|
+
],
|
|
263
|
+
"tags": [
|
|
264
|
+
"notes",
|
|
265
|
+
"databases",
|
|
266
|
+
"wiki",
|
|
267
|
+
"knowledge-base",
|
|
268
|
+
"productivity"
|
|
269
|
+
],
|
|
270
|
+
"authType": "api-key",
|
|
271
|
+
"transports": [
|
|
272
|
+
"stdio"
|
|
273
|
+
],
|
|
274
|
+
"installMethod": "npx",
|
|
111
275
|
"maturity": "stable",
|
|
112
|
-
"
|
|
276
|
+
"toolCount": null,
|
|
277
|
+
"authSummary": "none"
|
|
113
278
|
},
|
|
114
279
|
"stripe": {
|
|
115
280
|
"name": "Stripe",
|
|
116
281
|
"description": "Stripe payments and billing — manage customers, subscriptions, payment intents, invoices, and more via the official Stripe MCP server",
|
|
117
282
|
"category": "finance",
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
|
|
283
|
+
"subcategory": "payments",
|
|
284
|
+
"origin": "official",
|
|
285
|
+
"countries": [
|
|
286
|
+
"global"
|
|
287
|
+
],
|
|
288
|
+
"tags": [
|
|
289
|
+
"payments",
|
|
290
|
+
"billing",
|
|
291
|
+
"subscriptions",
|
|
292
|
+
"invoices",
|
|
293
|
+
"fintech"
|
|
294
|
+
],
|
|
295
|
+
"authType": "api-key",
|
|
296
|
+
"transports": [
|
|
297
|
+
"stdio"
|
|
298
|
+
],
|
|
299
|
+
"installMethod": "npx",
|
|
122
300
|
"maturity": "stable",
|
|
123
|
-
"
|
|
301
|
+
"toolCount": null,
|
|
302
|
+
"authSummary": "none"
|
|
124
303
|
},
|
|
125
304
|
"tavily": {
|
|
126
305
|
"name": "Tavily",
|
|
127
306
|
"description": "AI-optimized web search — retrieve accurate, real-time search results and extract content from URLs tailored for AI agents",
|
|
128
307
|
"category": "search",
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
"
|
|
132
|
-
|
|
308
|
+
"subcategory": "ai-search",
|
|
309
|
+
"origin": "official",
|
|
310
|
+
"countries": [
|
|
311
|
+
"global"
|
|
312
|
+
],
|
|
313
|
+
"tags": [
|
|
314
|
+
"search",
|
|
315
|
+
"web",
|
|
316
|
+
"ai-search",
|
|
317
|
+
"research",
|
|
318
|
+
"rag"
|
|
319
|
+
],
|
|
320
|
+
"authType": "api-key",
|
|
321
|
+
"transports": [
|
|
322
|
+
"stdio"
|
|
323
|
+
],
|
|
324
|
+
"installMethod": "npx",
|
|
133
325
|
"maturity": "stable",
|
|
134
|
-
"
|
|
326
|
+
"toolCount": null,
|
|
327
|
+
"authSummary": "none"
|
|
135
328
|
},
|
|
136
329
|
"todoist": {
|
|
137
330
|
"name": "Todoist",
|
|
138
331
|
"description": "Task management with natural language — create, update, complete, and search tasks and projects in Todoist",
|
|
139
332
|
"category": "productivity",
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
"
|
|
143
|
-
|
|
333
|
+
"subcategory": "task-management",
|
|
334
|
+
"origin": "official",
|
|
335
|
+
"countries": [
|
|
336
|
+
"global"
|
|
337
|
+
],
|
|
338
|
+
"tags": [
|
|
339
|
+
"tasks",
|
|
340
|
+
"todo",
|
|
341
|
+
"productivity",
|
|
342
|
+
"project-management",
|
|
343
|
+
"gtd"
|
|
344
|
+
],
|
|
345
|
+
"authType": "api-key",
|
|
346
|
+
"transports": [
|
|
347
|
+
"stdio"
|
|
348
|
+
],
|
|
349
|
+
"installMethod": "npx",
|
|
144
350
|
"maturity": "stable",
|
|
145
|
-
"
|
|
351
|
+
"toolCount": null,
|
|
352
|
+
"authSummary": "none"
|
|
146
353
|
},
|
|
147
354
|
"wise": {
|
|
148
355
|
"name": "Wise",
|
|
149
356
|
"description": "International money transfers and multi-currency account management via the Wise (TransferWise) API",
|
|
150
357
|
"category": "finance",
|
|
151
|
-
"
|
|
152
|
-
"
|
|
153
|
-
"
|
|
154
|
-
|
|
358
|
+
"subcategory": "payments",
|
|
359
|
+
"origin": "community",
|
|
360
|
+
"countries": [
|
|
361
|
+
"global"
|
|
362
|
+
],
|
|
363
|
+
"tags": [
|
|
364
|
+
"payments",
|
|
365
|
+
"transfers",
|
|
366
|
+
"international",
|
|
367
|
+
"currency",
|
|
368
|
+
"fintech"
|
|
369
|
+
],
|
|
370
|
+
"authType": "api-key",
|
|
371
|
+
"transports": [
|
|
372
|
+
"stdio"
|
|
373
|
+
],
|
|
374
|
+
"installMethod": "git",
|
|
155
375
|
"maturity": "stable",
|
|
156
|
-
"
|
|
376
|
+
"toolCount": null,
|
|
377
|
+
"authSummary": "none"
|
|
157
378
|
}
|
|
158
379
|
}
|
|
159
380
|
}
|
|
@@ -4,42 +4,56 @@
|
|
|
4
4
|
"name": "Linear",
|
|
5
5
|
"description": "Linear project management — create, update, and search issues, projects, and teams via the Linear API",
|
|
6
6
|
"repository": "https://github.com/cline/linear-mcp",
|
|
7
|
-
|
|
8
7
|
"transports": [
|
|
9
8
|
{
|
|
10
9
|
"type": "stdio",
|
|
11
10
|
"command": "node",
|
|
12
|
-
"args": [
|
|
11
|
+
"args": [
|
|
12
|
+
"dist/index.js"
|
|
13
|
+
],
|
|
13
14
|
"env": {
|
|
14
15
|
"LINEAR_API_KEY": "${LINEAR_API_KEY}"
|
|
15
16
|
}
|
|
16
17
|
}
|
|
17
18
|
],
|
|
18
|
-
|
|
19
19
|
"auth": {
|
|
20
20
|
"required": true,
|
|
21
21
|
"type": "api-key",
|
|
22
|
-
"envVars": [
|
|
22
|
+
"envVars": [
|
|
23
|
+
"LINEAR_API_KEY"
|
|
24
|
+
],
|
|
23
25
|
"credentialsUrl": "https://linear.app/settings/api",
|
|
24
26
|
"instructions": "Create a Personal API key in Linear Settings > API."
|
|
25
27
|
},
|
|
26
|
-
|
|
27
28
|
"install": {
|
|
28
29
|
"method": "git",
|
|
29
30
|
"repository": "https://github.com/cline/linear-mcp",
|
|
30
31
|
"buildCommand": "npm install && npm run build",
|
|
31
32
|
"version": "latest"
|
|
32
33
|
},
|
|
33
|
-
|
|
34
34
|
"metadata": {
|
|
35
35
|
"homepage": "https://linear.app/",
|
|
36
36
|
"author": "Cline",
|
|
37
|
-
"tags": [
|
|
37
|
+
"tags": [
|
|
38
|
+
"project-management",
|
|
39
|
+
"issues",
|
|
40
|
+
"tasks",
|
|
41
|
+
"teams",
|
|
42
|
+
"agile"
|
|
43
|
+
],
|
|
38
44
|
"category": "productivity",
|
|
39
45
|
"pricing": "byok",
|
|
40
|
-
"maturity": "stable"
|
|
46
|
+
"maturity": "stable",
|
|
47
|
+
"subcategory": "project-management",
|
|
48
|
+
"origin": "official",
|
|
49
|
+
"countries": [
|
|
50
|
+
"global"
|
|
51
|
+
],
|
|
52
|
+
"audience": "developer",
|
|
53
|
+
"selfHosted": false,
|
|
54
|
+
"sideEffects": "read-write",
|
|
55
|
+
"authSummary": "api-key"
|
|
41
56
|
},
|
|
42
|
-
|
|
43
57
|
"capabilities": {
|
|
44
58
|
"tools": true,
|
|
45
59
|
"resources": false,
|
package/servers/miro/recipe.json
CHANGED
|
@@ -4,41 +4,58 @@
|
|
|
4
4
|
"name": "Miro",
|
|
5
5
|
"description": "Collaborative whiteboard — create and manipulate Miro boards, sticky notes, cards, connectors, and shapes via the Miro API",
|
|
6
6
|
"repository": "https://github.com/evalstate/mcp-miro",
|
|
7
|
-
|
|
8
7
|
"transports": [
|
|
9
8
|
{
|
|
10
9
|
"type": "stdio",
|
|
11
10
|
"command": "npx",
|
|
12
|
-
"args": [
|
|
11
|
+
"args": [
|
|
12
|
+
"-y",
|
|
13
|
+
"@llmindset/mcp-miro",
|
|
14
|
+
"--token",
|
|
15
|
+
"${MIRO_API_TOKEN}"
|
|
16
|
+
],
|
|
13
17
|
"env": {
|
|
14
18
|
"MIRO_API_TOKEN": "${MIRO_API_TOKEN}"
|
|
15
19
|
}
|
|
16
20
|
}
|
|
17
21
|
],
|
|
18
|
-
|
|
19
22
|
"auth": {
|
|
20
23
|
"required": true,
|
|
21
24
|
"type": "api-key",
|
|
22
|
-
"envVars": [
|
|
25
|
+
"envVars": [
|
|
26
|
+
"MIRO_API_TOKEN"
|
|
27
|
+
],
|
|
23
28
|
"credentialsUrl": "https://miro.com/app/settings/user-profile/apps",
|
|
24
29
|
"instructions": "Create a Developer App in Miro Settings > Apps and copy the OAuth token."
|
|
25
30
|
},
|
|
26
|
-
|
|
27
31
|
"install": {
|
|
28
32
|
"method": "npx",
|
|
29
33
|
"package": "@llmindset/mcp-miro",
|
|
30
34
|
"version": "latest"
|
|
31
35
|
},
|
|
32
|
-
|
|
33
36
|
"metadata": {
|
|
34
37
|
"homepage": "https://miro.com/",
|
|
35
38
|
"author": "evalstate",
|
|
36
|
-
"tags": [
|
|
39
|
+
"tags": [
|
|
40
|
+
"whiteboard",
|
|
41
|
+
"collaboration",
|
|
42
|
+
"diagrams",
|
|
43
|
+
"brainstorming",
|
|
44
|
+
"visual"
|
|
45
|
+
],
|
|
37
46
|
"category": "productivity",
|
|
38
47
|
"pricing": "byok",
|
|
39
|
-
"maturity": "stable"
|
|
48
|
+
"maturity": "stable",
|
|
49
|
+
"subcategory": "whiteboard",
|
|
50
|
+
"origin": "community",
|
|
51
|
+
"countries": [
|
|
52
|
+
"global"
|
|
53
|
+
],
|
|
54
|
+
"audience": "business",
|
|
55
|
+
"selfHosted": false,
|
|
56
|
+
"sideEffects": "read-write",
|
|
57
|
+
"authSummary": "api-key"
|
|
40
58
|
},
|
|
41
|
-
|
|
42
59
|
"capabilities": {
|
|
43
60
|
"tools": true,
|
|
44
61
|
"resources": false,
|
|
@@ -4,41 +4,56 @@
|
|
|
4
4
|
"name": "Notion",
|
|
5
5
|
"description": "Notion workspace integration — read, create, and update pages, databases, blocks, and comments via the official Notion MCP server",
|
|
6
6
|
"repository": "https://github.com/makenotion/notion-mcp-server",
|
|
7
|
-
|
|
8
7
|
"transports": [
|
|
9
8
|
{
|
|
10
9
|
"type": "stdio",
|
|
11
10
|
"command": "npx",
|
|
12
|
-
"args": [
|
|
11
|
+
"args": [
|
|
12
|
+
"-y",
|
|
13
|
+
"@notionhq/notion-mcp-server"
|
|
14
|
+
],
|
|
13
15
|
"env": {
|
|
14
16
|
"NOTION_TOKEN": "${NOTION_API_KEY}"
|
|
15
17
|
}
|
|
16
18
|
}
|
|
17
19
|
],
|
|
18
|
-
|
|
19
20
|
"auth": {
|
|
20
21
|
"required": true,
|
|
21
22
|
"type": "api-key",
|
|
22
|
-
"envVars": [
|
|
23
|
+
"envVars": [
|
|
24
|
+
"NOTION_API_KEY"
|
|
25
|
+
],
|
|
23
26
|
"credentialsUrl": "https://www.notion.so/my-integrations",
|
|
24
27
|
"instructions": "Create a new integration at Notion's My Integrations page and copy the Internal Integration Secret. Then share your Notion pages or databases with the integration."
|
|
25
28
|
},
|
|
26
|
-
|
|
27
29
|
"install": {
|
|
28
30
|
"method": "npx",
|
|
29
31
|
"package": "@notionhq/notion-mcp-server",
|
|
30
32
|
"version": "latest"
|
|
31
33
|
},
|
|
32
|
-
|
|
33
34
|
"metadata": {
|
|
34
35
|
"homepage": "https://www.notion.so/",
|
|
35
36
|
"author": "Notion",
|
|
36
|
-
"tags": [
|
|
37
|
+
"tags": [
|
|
38
|
+
"notes",
|
|
39
|
+
"databases",
|
|
40
|
+
"wiki",
|
|
41
|
+
"knowledge-base",
|
|
42
|
+
"productivity"
|
|
43
|
+
],
|
|
37
44
|
"category": "productivity",
|
|
38
45
|
"pricing": "byok",
|
|
39
|
-
"maturity": "stable"
|
|
46
|
+
"maturity": "stable",
|
|
47
|
+
"subcategory": "notes",
|
|
48
|
+
"origin": "official",
|
|
49
|
+
"countries": [
|
|
50
|
+
"global"
|
|
51
|
+
],
|
|
52
|
+
"audience": "general",
|
|
53
|
+
"selfHosted": false,
|
|
54
|
+
"sideEffects": "read-write",
|
|
55
|
+
"authSummary": "api-key"
|
|
40
56
|
},
|
|
41
|
-
|
|
42
57
|
"capabilities": {
|
|
43
58
|
"tools": true,
|
|
44
59
|
"resources": false,
|