mcp-config-manager 1.0.13 → 2.1.1
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 +81 -5
- package/package.json +1 -1
- package/public/index.html +104 -19
- package/public/js/clientView.js +53 -19
- package/public/js/iconPreferences.js +98 -0
- package/public/js/kanbanView.js +25 -42
- package/public/js/logoService.js +392 -0
- package/public/js/main.js +21 -1
- package/public/js/modals.js +344 -24
- package/public/js/popularMcps.js +304 -0
- package/public/js/serverView.js +24 -7
- package/public/mcp-logos.json +26 -0
- package/public/popular-mcps.json +555 -0
- package/public/style.css +617 -1
- package/src/config-manager.js +3 -5
|
@@ -0,0 +1,555 @@
|
|
|
1
|
+
{
|
|
2
|
+
"lastUpdated": "2025-01-23",
|
|
3
|
+
"sources": [
|
|
4
|
+
{
|
|
5
|
+
"name": "mcpservers.org",
|
|
6
|
+
"url": "https://mcpservers.org/remote-mcp-servers"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"name": "awesome-remote-mcp-servers",
|
|
10
|
+
"url": "https://github.com/jaw9c/awesome-remote-mcp-servers",
|
|
11
|
+
"credit": "jaw9c"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"servers": [
|
|
15
|
+
{
|
|
16
|
+
"id": "github",
|
|
17
|
+
"name": "GitHub",
|
|
18
|
+
"description": "GitHub's official MCP Server for repository management, issues, PRs, and code search",
|
|
19
|
+
"category": "development",
|
|
20
|
+
"type": "http",
|
|
21
|
+
"url": "https://api.githubcopilot.com/mcp/",
|
|
22
|
+
"authType": "oauth",
|
|
23
|
+
"maintainer": "GitHub",
|
|
24
|
+
"source": "awesome-remote-mcp-servers"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"id": "notion",
|
|
28
|
+
"name": "Notion",
|
|
29
|
+
"description": "Access and manage Notion workspaces, pages, databases, and content",
|
|
30
|
+
"category": "productivity",
|
|
31
|
+
"type": "sse",
|
|
32
|
+
"url": "https://mcp.notion.com/sse",
|
|
33
|
+
"authType": "oauth",
|
|
34
|
+
"maintainer": "Notion",
|
|
35
|
+
"source": "awesome-remote-mcp-servers"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"id": "linear",
|
|
39
|
+
"name": "Linear",
|
|
40
|
+
"description": "Manage Linear issues, projects, and workflows for software teams",
|
|
41
|
+
"category": "productivity",
|
|
42
|
+
"type": "sse",
|
|
43
|
+
"url": "https://mcp.linear.app/sse",
|
|
44
|
+
"authType": "oauth",
|
|
45
|
+
"maintainer": "Linear",
|
|
46
|
+
"source": "awesome-remote-mcp-servers"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"id": "stripe",
|
|
50
|
+
"name": "Stripe",
|
|
51
|
+
"description": "Interact with Stripe for payments, customers, and financial operations",
|
|
52
|
+
"category": "payments",
|
|
53
|
+
"type": "http",
|
|
54
|
+
"url": "https://mcp.stripe.com/",
|
|
55
|
+
"authType": "api-key",
|
|
56
|
+
"maintainer": "Stripe",
|
|
57
|
+
"source": "awesome-remote-mcp-servers"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"id": "vercel",
|
|
61
|
+
"name": "Vercel",
|
|
62
|
+
"description": "Deploy and manage Vercel projects, domains, and serverless functions",
|
|
63
|
+
"category": "development",
|
|
64
|
+
"type": "http",
|
|
65
|
+
"url": "https://mcp.vercel.com/",
|
|
66
|
+
"authType": "oauth",
|
|
67
|
+
"maintainer": "Vercel",
|
|
68
|
+
"source": "awesome-remote-mcp-servers"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"id": "supabase",
|
|
72
|
+
"name": "Supabase",
|
|
73
|
+
"description": "Manage Supabase projects, databases, storage, and authentication",
|
|
74
|
+
"category": "database",
|
|
75
|
+
"type": "http",
|
|
76
|
+
"url": "https://mcp.supabase.com/mcp",
|
|
77
|
+
"authType": "oauth",
|
|
78
|
+
"maintainer": "Supabase",
|
|
79
|
+
"source": "awesome-remote-mcp-servers"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"id": "sentry",
|
|
83
|
+
"name": "Sentry",
|
|
84
|
+
"description": "Access Sentry error tracking, issues, and performance monitoring",
|
|
85
|
+
"category": "development",
|
|
86
|
+
"type": "sse",
|
|
87
|
+
"url": "https://mcp.sentry.dev/sse",
|
|
88
|
+
"authType": "oauth",
|
|
89
|
+
"maintainer": "Sentry",
|
|
90
|
+
"source": "awesome-remote-mcp-servers"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"id": "cloudflare-workers",
|
|
94
|
+
"name": "Cloudflare Workers",
|
|
95
|
+
"description": "Deploy and manage Cloudflare Workers, KV, R2, and D1",
|
|
96
|
+
"category": "development",
|
|
97
|
+
"type": "sse",
|
|
98
|
+
"url": "https://bindings.mcp.cloudflare.com/sse",
|
|
99
|
+
"authType": "oauth",
|
|
100
|
+
"maintainer": "Cloudflare",
|
|
101
|
+
"source": "awesome-remote-mcp-servers"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"id": "atlassian",
|
|
105
|
+
"name": "Atlassian",
|
|
106
|
+
"description": "Access Jira, Confluence, and other Atlassian tools",
|
|
107
|
+
"category": "development",
|
|
108
|
+
"type": "sse",
|
|
109
|
+
"url": "https://mcp.atlassian.com/v1/sse",
|
|
110
|
+
"authType": "oauth",
|
|
111
|
+
"maintainer": "Atlassian",
|
|
112
|
+
"source": "awesome-remote-mcp-servers"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"id": "intercom",
|
|
116
|
+
"name": "Intercom",
|
|
117
|
+
"description": "Manage Intercom conversations, contacts, and support operations",
|
|
118
|
+
"category": "support",
|
|
119
|
+
"type": "sse",
|
|
120
|
+
"url": "https://mcp.intercom.com/sse",
|
|
121
|
+
"authType": "oauth",
|
|
122
|
+
"maintainer": "Intercom",
|
|
123
|
+
"source": "awesome-remote-mcp-servers"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"id": "asana",
|
|
127
|
+
"name": "Asana",
|
|
128
|
+
"description": "Manage Asana tasks, projects, and team workflows",
|
|
129
|
+
"category": "productivity",
|
|
130
|
+
"type": "sse",
|
|
131
|
+
"url": "https://mcp.asana.com/sse",
|
|
132
|
+
"authType": "oauth",
|
|
133
|
+
"maintainer": "Asana",
|
|
134
|
+
"source": "awesome-remote-mcp-servers"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"id": "monday",
|
|
138
|
+
"name": "monday.com",
|
|
139
|
+
"description": "Access monday.com boards, items, and workflows",
|
|
140
|
+
"category": "productivity",
|
|
141
|
+
"type": "sse",
|
|
142
|
+
"url": "https://mcp.monday.com/sse",
|
|
143
|
+
"authType": "oauth",
|
|
144
|
+
"maintainer": "monday.com",
|
|
145
|
+
"source": "awesome-remote-mcp-servers"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"id": "paypal",
|
|
149
|
+
"name": "PayPal",
|
|
150
|
+
"description": "Manage PayPal payments, transactions, and invoices",
|
|
151
|
+
"category": "payments",
|
|
152
|
+
"type": "sse",
|
|
153
|
+
"url": "https://mcp.paypal.com/sse",
|
|
154
|
+
"authType": "oauth",
|
|
155
|
+
"maintainer": "PayPal",
|
|
156
|
+
"source": "awesome-remote-mcp-servers"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"id": "square",
|
|
160
|
+
"name": "Square",
|
|
161
|
+
"description": "Access Square payments, catalog, and business operations",
|
|
162
|
+
"category": "payments",
|
|
163
|
+
"type": "sse",
|
|
164
|
+
"url": "https://mcp.squareup.com/sse",
|
|
165
|
+
"authType": "oauth",
|
|
166
|
+
"maintainer": "Square",
|
|
167
|
+
"source": "awesome-remote-mcp-servers"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"id": "neon",
|
|
171
|
+
"name": "Neon",
|
|
172
|
+
"description": "Manage Neon serverless Postgres databases and branches",
|
|
173
|
+
"category": "database",
|
|
174
|
+
"type": "http",
|
|
175
|
+
"url": "https://mcp.neon.tech/mcp",
|
|
176
|
+
"authType": "oauth",
|
|
177
|
+
"maintainer": "Neon",
|
|
178
|
+
"source": "awesome-remote-mcp-servers"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"id": "prisma",
|
|
182
|
+
"name": "Prisma Postgres",
|
|
183
|
+
"description": "Manage Prisma Postgres databases and schemas",
|
|
184
|
+
"category": "database",
|
|
185
|
+
"type": "http",
|
|
186
|
+
"url": "https://mcp.prisma.io/mcp",
|
|
187
|
+
"authType": "oauth",
|
|
188
|
+
"maintainer": "Prisma",
|
|
189
|
+
"source": "awesome-remote-mcp-servers"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"id": "netlify",
|
|
193
|
+
"name": "Netlify",
|
|
194
|
+
"description": "Deploy sites and manage Netlify projects and functions",
|
|
195
|
+
"category": "development",
|
|
196
|
+
"type": "http",
|
|
197
|
+
"url": "https://netlify-mcp.netlify.app/mcp",
|
|
198
|
+
"authType": "oauth",
|
|
199
|
+
"maintainer": "Netlify",
|
|
200
|
+
"source": "awesome-remote-mcp-servers"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"id": "webflow",
|
|
204
|
+
"name": "Webflow",
|
|
205
|
+
"description": "Manage Webflow sites, CMS collections, and design elements",
|
|
206
|
+
"category": "cms",
|
|
207
|
+
"type": "sse",
|
|
208
|
+
"url": "https://mcp.webflow.com/sse",
|
|
209
|
+
"authType": "oauth",
|
|
210
|
+
"maintainer": "Webflow",
|
|
211
|
+
"source": "awesome-remote-mcp-servers"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"id": "wix",
|
|
215
|
+
"name": "Wix",
|
|
216
|
+
"description": "Access Wix sites, stores, and business solutions",
|
|
217
|
+
"category": "cms",
|
|
218
|
+
"type": "sse",
|
|
219
|
+
"url": "https://mcp.wix.com/sse",
|
|
220
|
+
"authType": "oauth",
|
|
221
|
+
"maintainer": "Wix",
|
|
222
|
+
"source": "awesome-remote-mcp-servers"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"id": "canva",
|
|
226
|
+
"name": "Canva",
|
|
227
|
+
"description": "Create and manage Canva designs and assets",
|
|
228
|
+
"category": "design",
|
|
229
|
+
"type": "http",
|
|
230
|
+
"url": "https://mcp.canva.com/mcp",
|
|
231
|
+
"authType": "oauth",
|
|
232
|
+
"maintainer": "Canva",
|
|
233
|
+
"source": "awesome-remote-mcp-servers"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"id": "hubspot",
|
|
237
|
+
"name": "HubSpot",
|
|
238
|
+
"description": "Manage HubSpot CRM contacts, deals, and marketing",
|
|
239
|
+
"category": "crm",
|
|
240
|
+
"type": "http",
|
|
241
|
+
"url": "https://app.hubspot.com/mcp/v1/http",
|
|
242
|
+
"authType": "api-key",
|
|
243
|
+
"maintainer": "HubSpot",
|
|
244
|
+
"source": "awesome-remote-mcp-servers"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"id": "zapier",
|
|
248
|
+
"name": "Zapier",
|
|
249
|
+
"description": "Trigger Zapier automations and manage zaps",
|
|
250
|
+
"category": "automation",
|
|
251
|
+
"type": "http",
|
|
252
|
+
"url": "https://mcp.zapier.com/api/mcp/mcp",
|
|
253
|
+
"authType": "api-key",
|
|
254
|
+
"maintainer": "Zapier",
|
|
255
|
+
"source": "awesome-remote-mcp-servers"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"id": "huggingface",
|
|
259
|
+
"name": "Hugging Face",
|
|
260
|
+
"description": "Access Hugging Face models, datasets, and spaces",
|
|
261
|
+
"category": "ai",
|
|
262
|
+
"type": "http",
|
|
263
|
+
"url": "https://hf.co/mcp",
|
|
264
|
+
"authType": "none",
|
|
265
|
+
"maintainer": "Hugging Face",
|
|
266
|
+
"source": "awesome-remote-mcp-servers"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"id": "exa-search",
|
|
270
|
+
"name": "Exa Search",
|
|
271
|
+
"description": "AI-powered web search with semantic understanding",
|
|
272
|
+
"category": "search",
|
|
273
|
+
"type": "http",
|
|
274
|
+
"url": "https://mcp.exa.ai/mcp",
|
|
275
|
+
"authType": "none",
|
|
276
|
+
"maintainer": "Exa",
|
|
277
|
+
"source": "awesome-remote-mcp-servers"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"id": "cloudflare-docs",
|
|
281
|
+
"name": "Cloudflare Docs",
|
|
282
|
+
"description": "Search and access Cloudflare documentation",
|
|
283
|
+
"category": "documentation",
|
|
284
|
+
"type": "sse",
|
|
285
|
+
"url": "https://docs.mcp.cloudflare.com/sse",
|
|
286
|
+
"authType": "none",
|
|
287
|
+
"maintainer": "Cloudflare",
|
|
288
|
+
"source": "awesome-remote-mcp-servers"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"id": "astro-docs",
|
|
292
|
+
"name": "Astro Docs",
|
|
293
|
+
"description": "Search and access Astro framework documentation",
|
|
294
|
+
"category": "documentation",
|
|
295
|
+
"type": "http",
|
|
296
|
+
"url": "https://mcp.docs.astro.build/mcp",
|
|
297
|
+
"authType": "none",
|
|
298
|
+
"maintainer": "Astro",
|
|
299
|
+
"source": "awesome-remote-mcp-servers"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"id": "aws-knowledge",
|
|
303
|
+
"name": "AWS Knowledge",
|
|
304
|
+
"description": "Access AWS documentation and best practices",
|
|
305
|
+
"category": "documentation",
|
|
306
|
+
"type": "http",
|
|
307
|
+
"url": "https://knowledge-mcp.global.api.aws",
|
|
308
|
+
"authType": "none",
|
|
309
|
+
"maintainer": "AWS",
|
|
310
|
+
"source": "awesome-remote-mcp-servers"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"id": "semgrep",
|
|
314
|
+
"name": "Semgrep",
|
|
315
|
+
"description": "Code analysis and security scanning with Semgrep",
|
|
316
|
+
"category": "development",
|
|
317
|
+
"type": "sse",
|
|
318
|
+
"url": "https://mcp.semgrep.ai/sse",
|
|
319
|
+
"authType": "none",
|
|
320
|
+
"maintainer": "Semgrep",
|
|
321
|
+
"source": "awesome-remote-mcp-servers"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"id": "deepwiki",
|
|
325
|
+
"name": "DeepWiki",
|
|
326
|
+
"description": "RAG-as-a-Service for knowledge retrieval",
|
|
327
|
+
"category": "ai",
|
|
328
|
+
"type": "sse",
|
|
329
|
+
"url": "https://mcp.deepwiki.com/sse",
|
|
330
|
+
"authType": "none",
|
|
331
|
+
"maintainer": "Devin",
|
|
332
|
+
"source": "awesome-remote-mcp-servers"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"id": "gitmcp",
|
|
336
|
+
"name": "GitMCP",
|
|
337
|
+
"description": "Git repository operations and code understanding",
|
|
338
|
+
"category": "development",
|
|
339
|
+
"type": "http",
|
|
340
|
+
"url": "https://gitmcp.io/docs",
|
|
341
|
+
"authType": "none",
|
|
342
|
+
"maintainer": "GitMCP",
|
|
343
|
+
"source": "awesome-remote-mcp-servers"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"id": "google-maps",
|
|
347
|
+
"name": "Google Maps",
|
|
348
|
+
"description": "Access Google Maps for geocoding, directions, and places",
|
|
349
|
+
"category": "mapping",
|
|
350
|
+
"type": "http",
|
|
351
|
+
"url": "https://mapstools.googleapis.com/mcp",
|
|
352
|
+
"authType": "api-key",
|
|
353
|
+
"maintainer": "Google",
|
|
354
|
+
"source": "awesome-remote-mcp-servers"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"id": "google-bigquery",
|
|
358
|
+
"name": "Google BigQuery",
|
|
359
|
+
"description": "Query and analyze data in Google BigQuery",
|
|
360
|
+
"category": "database",
|
|
361
|
+
"type": "http",
|
|
362
|
+
"url": "https://bigquery.googleapis.com/mcp",
|
|
363
|
+
"authType": "api-key",
|
|
364
|
+
"maintainer": "Google",
|
|
365
|
+
"source": "awesome-remote-mcp-servers"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"id": "apify",
|
|
369
|
+
"name": "Apify",
|
|
370
|
+
"description": "Web scraping and data extraction platform",
|
|
371
|
+
"category": "data",
|
|
372
|
+
"type": "http",
|
|
373
|
+
"url": "https://mcp.apify.com",
|
|
374
|
+
"authType": "api-key",
|
|
375
|
+
"maintainer": "Apify",
|
|
376
|
+
"source": "awesome-remote-mcp-servers"
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"id": "buildkite",
|
|
380
|
+
"name": "Buildkite",
|
|
381
|
+
"description": "Manage CI/CD pipelines and builds",
|
|
382
|
+
"category": "development",
|
|
383
|
+
"type": "http",
|
|
384
|
+
"url": "https://mcp.buildkite.com/mcp",
|
|
385
|
+
"authType": "oauth",
|
|
386
|
+
"maintainer": "Buildkite",
|
|
387
|
+
"source": "awesome-remote-mcp-servers"
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"id": "box",
|
|
391
|
+
"name": "Box",
|
|
392
|
+
"description": "Access and manage Box cloud storage and files",
|
|
393
|
+
"category": "storage",
|
|
394
|
+
"type": "http",
|
|
395
|
+
"url": "https://mcp.box.com",
|
|
396
|
+
"authType": "oauth",
|
|
397
|
+
"maintainer": "Box",
|
|
398
|
+
"source": "awesome-remote-mcp-servers"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"id": "egnyte",
|
|
402
|
+
"name": "Egnyte",
|
|
403
|
+
"description": "Enterprise file sharing and content collaboration",
|
|
404
|
+
"category": "storage",
|
|
405
|
+
"type": "sse",
|
|
406
|
+
"url": "https://mcp-server.egnyte.com/sse",
|
|
407
|
+
"authType": "oauth",
|
|
408
|
+
"maintainer": "Egnyte",
|
|
409
|
+
"source": "awesome-remote-mcp-servers"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"id": "plaid",
|
|
413
|
+
"name": "Plaid",
|
|
414
|
+
"description": "Financial data and banking connections",
|
|
415
|
+
"category": "payments",
|
|
416
|
+
"type": "sse",
|
|
417
|
+
"url": "https://api.dashboard.plaid.com/mcp/sse",
|
|
418
|
+
"authType": "oauth",
|
|
419
|
+
"maintainer": "Plaid",
|
|
420
|
+
"source": "awesome-remote-mcp-servers"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"id": "ramp",
|
|
424
|
+
"name": "Ramp",
|
|
425
|
+
"description": "Corporate card and expense management",
|
|
426
|
+
"category": "payments",
|
|
427
|
+
"type": "http",
|
|
428
|
+
"url": "https://ramp-mcp-remote.ramp.com/mcp",
|
|
429
|
+
"authType": "oauth",
|
|
430
|
+
"maintainer": "Ramp",
|
|
431
|
+
"source": "awesome-remote-mcp-servers"
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"id": "stack-overflow",
|
|
435
|
+
"name": "Stack Overflow",
|
|
436
|
+
"description": "Search and access Stack Overflow Q&A",
|
|
437
|
+
"category": "development",
|
|
438
|
+
"type": "http",
|
|
439
|
+
"url": "https://mcp.stackoverflow.com",
|
|
440
|
+
"authType": "oauth",
|
|
441
|
+
"maintainer": "Stack Overflow",
|
|
442
|
+
"source": "awesome-remote-mcp-servers"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"id": "thoughtspot",
|
|
446
|
+
"name": "ThoughtSpot",
|
|
447
|
+
"description": "AI-powered analytics and data insights",
|
|
448
|
+
"category": "analytics",
|
|
449
|
+
"type": "http",
|
|
450
|
+
"url": "https://agent.thoughtspot.app/mcp",
|
|
451
|
+
"authType": "oauth",
|
|
452
|
+
"maintainer": "ThoughtSpot",
|
|
453
|
+
"source": "awesome-remote-mcp-servers"
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"id": "needle",
|
|
457
|
+
"name": "Needle",
|
|
458
|
+
"description": "RAG-as-a-Service for document retrieval",
|
|
459
|
+
"category": "ai",
|
|
460
|
+
"type": "http",
|
|
461
|
+
"url": "https://mcp.needle-ai.com/mcp",
|
|
462
|
+
"authType": "api-key",
|
|
463
|
+
"maintainer": "Needle",
|
|
464
|
+
"source": "awesome-remote-mcp-servers"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"id": "dappier",
|
|
468
|
+
"name": "Dappier",
|
|
469
|
+
"description": "RAG-as-a-Service for content retrieval",
|
|
470
|
+
"category": "ai",
|
|
471
|
+
"type": "http",
|
|
472
|
+
"url": "https://mcp.dappier.com/mcp",
|
|
473
|
+
"authType": "api-key",
|
|
474
|
+
"maintainer": "Dappier",
|
|
475
|
+
"source": "awesome-remote-mcp-servers"
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"id": "cloudinary",
|
|
479
|
+
"name": "Cloudinary",
|
|
480
|
+
"description": "Media asset management and transformation",
|
|
481
|
+
"category": "media",
|
|
482
|
+
"type": "sse",
|
|
483
|
+
"url": "https://asset-management.mcp.cloudinary.com/sse",
|
|
484
|
+
"authType": "oauth",
|
|
485
|
+
"maintainer": "Cloudinary",
|
|
486
|
+
"source": "awesome-remote-mcp-servers"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"id": "instant",
|
|
490
|
+
"name": "Instant",
|
|
491
|
+
"description": "Real-time database for modern apps",
|
|
492
|
+
"category": "database",
|
|
493
|
+
"type": "http",
|
|
494
|
+
"url": "https://mcp.instantdb.com/mcp",
|
|
495
|
+
"authType": "oauth",
|
|
496
|
+
"maintainer": "Instant",
|
|
497
|
+
"source": "awesome-remote-mcp-servers"
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"id": "grafbase",
|
|
501
|
+
"name": "Grafbase",
|
|
502
|
+
"description": "GraphQL database and API platform",
|
|
503
|
+
"category": "database",
|
|
504
|
+
"type": "http",
|
|
505
|
+
"url": "https://api.grafbase.com/mcp",
|
|
506
|
+
"authType": "oauth",
|
|
507
|
+
"maintainer": "Grafbase",
|
|
508
|
+
"source": "awesome-remote-mcp-servers"
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"id": "telnyx",
|
|
512
|
+
"name": "Telnyx",
|
|
513
|
+
"description": "Communication APIs for voice, messaging, and more",
|
|
514
|
+
"category": "communication",
|
|
515
|
+
"type": "http",
|
|
516
|
+
"url": "https://api.telnyx.com/v2/mcp",
|
|
517
|
+
"authType": "api-key",
|
|
518
|
+
"maintainer": "Telnyx",
|
|
519
|
+
"source": "awesome-remote-mcp-servers"
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
"id": "manifold",
|
|
523
|
+
"name": "Manifold",
|
|
524
|
+
"description": "Prediction markets and forecasting",
|
|
525
|
+
"category": "other",
|
|
526
|
+
"type": "http",
|
|
527
|
+
"url": "https://api.manifold.markets/v0/mcp",
|
|
528
|
+
"authType": "none",
|
|
529
|
+
"maintainer": "Manifold",
|
|
530
|
+
"source": "awesome-remote-mcp-servers"
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
"id": "javadocs",
|
|
534
|
+
"name": "Javadocs",
|
|
535
|
+
"description": "Search and access Java documentation",
|
|
536
|
+
"category": "documentation",
|
|
537
|
+
"type": "http",
|
|
538
|
+
"url": "https://www.javadocs.dev/mcp",
|
|
539
|
+
"authType": "none",
|
|
540
|
+
"maintainer": "Javadocs.dev",
|
|
541
|
+
"source": "awesome-remote-mcp-servers"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"id": "find-a-domain",
|
|
545
|
+
"name": "Find-A-Domain",
|
|
546
|
+
"description": "Domain name search and availability",
|
|
547
|
+
"category": "productivity",
|
|
548
|
+
"type": "http",
|
|
549
|
+
"url": "https://api.findadomain.dev/mcp",
|
|
550
|
+
"authType": "none",
|
|
551
|
+
"maintainer": "Find-A-Domain",
|
|
552
|
+
"source": "awesome-remote-mcp-servers"
|
|
553
|
+
}
|
|
554
|
+
]
|
|
555
|
+
}
|