@pi-unipi/mcp 0.1.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 +109 -0
- package/data/seed-servers.json +727 -0
- package/package.json +47 -0
- package/skills/mcp/SKILL.md +104 -0
- package/src/bridge/client.ts +365 -0
- package/src/bridge/registry.ts +281 -0
- package/src/bridge/translator.ts +100 -0
- package/src/config/manager.ts +267 -0
- package/src/config/schema.ts +114 -0
- package/src/config/sync.ts +416 -0
- package/src/index.ts +297 -0
- package/src/tui/add-overlay.ts +436 -0
- package/src/tui/settings-overlay.ts +369 -0
- package/src/types.ts +162 -0
|
@@ -0,0 +1,727 @@
|
|
|
1
|
+
{
|
|
2
|
+
"lastUpdated": "2026-04-27T00:00:00Z",
|
|
3
|
+
"source": "seed",
|
|
4
|
+
"totalServers": 50,
|
|
5
|
+
"servers": [
|
|
6
|
+
{
|
|
7
|
+
"id": "github/github-mcp-server",
|
|
8
|
+
"name": "GitHub MCP Server",
|
|
9
|
+
"description": "GitHub's official MCP Server for repository management, pull requests, issues, code search, and more",
|
|
10
|
+
"github": "https://github.com/github/github-mcp-server",
|
|
11
|
+
"categories": ["development", "version-control"],
|
|
12
|
+
"language": "go",
|
|
13
|
+
"scope": "cloud",
|
|
14
|
+
"official": true,
|
|
15
|
+
"install": {
|
|
16
|
+
"command": "docker",
|
|
17
|
+
"args": ["run", "-i", "--rm", "-e", "GITHUB_PERSONAL_ACCESS_TOKEN", "ghcr.io/github/github-mcp-server"],
|
|
18
|
+
"envVars": ["GITHUB_PERSONAL_ACCESS_TOKEN"]
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"id": "anthropics/mcp-servers",
|
|
23
|
+
"name": "Playwright MCP",
|
|
24
|
+
"description": "Browser automation and web scraping via Playwright — navigate pages, fill forms, take screenshots",
|
|
25
|
+
"github": "https://github.com/anthropics/mcp-servers",
|
|
26
|
+
"categories": ["browser", "automation"],
|
|
27
|
+
"language": "typescript",
|
|
28
|
+
"scope": "local",
|
|
29
|
+
"official": true,
|
|
30
|
+
"install": {
|
|
31
|
+
"command": "npx",
|
|
32
|
+
"args": ["-y", "@playwright/mcp"]
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"id": "modelcontextprotocol/servers",
|
|
37
|
+
"name": "Brave Search",
|
|
38
|
+
"description": "Web search via Brave Search API with rich results and summaries",
|
|
39
|
+
"github": "https://github.com/modelcontextprotocol/servers",
|
|
40
|
+
"categories": ["search", "web"],
|
|
41
|
+
"language": "typescript",
|
|
42
|
+
"scope": "cloud",
|
|
43
|
+
"official": true,
|
|
44
|
+
"install": {
|
|
45
|
+
"command": "npx",
|
|
46
|
+
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
|
|
47
|
+
"envVars": ["BRAVE_API_KEY"]
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"id": "modelcontextprotocol/servers",
|
|
52
|
+
"name": "Filesystem",
|
|
53
|
+
"description": "Local filesystem access — read, write, search, and manage files and directories",
|
|
54
|
+
"github": "https://github.com/modelcontextprotocol/servers",
|
|
55
|
+
"categories": ["filesystem", "local"],
|
|
56
|
+
"language": "typescript",
|
|
57
|
+
"scope": "local",
|
|
58
|
+
"official": true,
|
|
59
|
+
"install": {
|
|
60
|
+
"command": "npx",
|
|
61
|
+
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/home"]
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"id": "modelcontextprotocol/servers",
|
|
66
|
+
"name": "PostgreSQL",
|
|
67
|
+
"description": "PostgreSQL database access — query, inspect schema, and manage data",
|
|
68
|
+
"github": "https://github.com/modelcontextprotocol/servers",
|
|
69
|
+
"categories": ["database", "sql"],
|
|
70
|
+
"language": "typescript",
|
|
71
|
+
"scope": "local",
|
|
72
|
+
"official": true,
|
|
73
|
+
"install": {
|
|
74
|
+
"command": "npx",
|
|
75
|
+
"args": ["-y", "@modelcontextprotocol/server-postgres"],
|
|
76
|
+
"envVars": ["POSTGRES_CONNECTION_STRING"]
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"id": "modelcontextprotocol/servers",
|
|
81
|
+
"name": "SQLite",
|
|
82
|
+
"description": "SQLite database access — query, create tables, manage local databases",
|
|
83
|
+
"github": "https://github.com/modelcontextprotocol/servers",
|
|
84
|
+
"categories": ["database", "sql"],
|
|
85
|
+
"language": "typescript",
|
|
86
|
+
"scope": "local",
|
|
87
|
+
"official": true,
|
|
88
|
+
"install": {
|
|
89
|
+
"command": "npx",
|
|
90
|
+
"args": ["-y", "@modelcontextprotocol/server-sqlite"]
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"id": "modelcontextprotocol/servers",
|
|
95
|
+
"name": "Memory",
|
|
96
|
+
"description": "Persistent knowledge graph memory — store and retrieve entities, relations, and observations",
|
|
97
|
+
"github": "https://github.com/modelcontextprotocol/servers",
|
|
98
|
+
"categories": ["memory", "knowledge-graph"],
|
|
99
|
+
"language": "typescript",
|
|
100
|
+
"scope": "local",
|
|
101
|
+
"official": true,
|
|
102
|
+
"install": {
|
|
103
|
+
"command": "npx",
|
|
104
|
+
"args": ["-y", "@modelcontextprotocol/server-memory"]
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"id": "modelcontextprotocol/servers",
|
|
109
|
+
"name": "Fetch",
|
|
110
|
+
"description": "HTTP fetching — make requests, download content, interact with REST APIs",
|
|
111
|
+
"github": "https://github.com/modelcontextprotocol/servers",
|
|
112
|
+
"categories": ["web", "http"],
|
|
113
|
+
"language": "typescript",
|
|
114
|
+
"scope": "cloud",
|
|
115
|
+
"official": true,
|
|
116
|
+
"install": {
|
|
117
|
+
"command": "npx",
|
|
118
|
+
"args": ["-y", "@modelcontextprotocol/server-fetch"]
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"id": "modelcontextprotocol/servers",
|
|
123
|
+
"name": "Puppeteer",
|
|
124
|
+
"description": "Browser automation via Puppeteer — navigate, screenshot, interact with web pages",
|
|
125
|
+
"github": "https://github.com/modelcontextprotocol/servers",
|
|
126
|
+
"categories": ["browser", "automation"],
|
|
127
|
+
"language": "typescript",
|
|
128
|
+
"scope": "local",
|
|
129
|
+
"official": true,
|
|
130
|
+
"install": {
|
|
131
|
+
"command": "npx",
|
|
132
|
+
"args": ["-y", "@modelcontextprotocol/server-puppeteer"]
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"id": "supabase/mcp-server-supabase",
|
|
137
|
+
"name": "Supabase",
|
|
138
|
+
"description": "Supabase management — database, auth, storage, and edge functions",
|
|
139
|
+
"github": "https://github.com/supabase/mcp-server-supabase",
|
|
140
|
+
"categories": ["database", "backend"],
|
|
141
|
+
"language": "typescript",
|
|
142
|
+
"scope": "cloud",
|
|
143
|
+
"official": true,
|
|
144
|
+
"install": {
|
|
145
|
+
"command": "npx",
|
|
146
|
+
"args": ["-y", "@supabase/mcp-server-supabase"],
|
|
147
|
+
"envVars": ["SUPABASE_ACCESS_TOKEN"]
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"id": "cloudflare/mcp-server-cloudflare",
|
|
152
|
+
"name": "Cloudflare",
|
|
153
|
+
"description": "Cloudflare Workers, KV, R2, D1, and other Cloudflare services management",
|
|
154
|
+
"github": "https://github.com/cloudflare/mcp-server-cloudflare",
|
|
155
|
+
"categories": ["cloud", "infrastructure"],
|
|
156
|
+
"language": "typescript",
|
|
157
|
+
"scope": "cloud",
|
|
158
|
+
"official": true,
|
|
159
|
+
"install": {
|
|
160
|
+
"command": "npx",
|
|
161
|
+
"args": ["-y", "@cloudflare/mcp-server-cloudflare"],
|
|
162
|
+
"envVars": ["CLOUDFLARE_API_TOKEN"]
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"id": "modelcontextprotocol/servers",
|
|
167
|
+
"name": "Docker",
|
|
168
|
+
"description": "Docker container management — run, stop, inspect containers and images",
|
|
169
|
+
"github": "https://github.com/modelcontextprotocol/servers",
|
|
170
|
+
"categories": ["devops", "containers"],
|
|
171
|
+
"language": "typescript",
|
|
172
|
+
"scope": "local",
|
|
173
|
+
"official": true,
|
|
174
|
+
"install": {
|
|
175
|
+
"command": "npx",
|
|
176
|
+
"args": ["-y", "@modelcontextprotocol/server-docker"]
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"id": "modelcontextprotocol/servers",
|
|
181
|
+
"name": "GitLab",
|
|
182
|
+
"description": "GitLab integration — projects, merge requests, issues, pipelines, and repositories",
|
|
183
|
+
"github": "https://github.com/modelcontextprotocol/servers",
|
|
184
|
+
"categories": ["development", "version-control"],
|
|
185
|
+
"language": "typescript",
|
|
186
|
+
"scope": "cloud",
|
|
187
|
+
"official": true,
|
|
188
|
+
"install": {
|
|
189
|
+
"command": "npx",
|
|
190
|
+
"args": ["-y", "@modelcontextprotocol/server-gitlab"],
|
|
191
|
+
"envVars": ["GITLAB_PERSONAL_ACCESS_TOKEN"]
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"id": "tacticlaunch/mcp-linear",
|
|
196
|
+
"name": "Linear",
|
|
197
|
+
"description": "Linear project management — issues, projects, cycles, and team workflows",
|
|
198
|
+
"github": "https://github.com/tacticlaunch/mcp-linear",
|
|
199
|
+
"categories": ["project-management", "productivity"],
|
|
200
|
+
"language": "typescript",
|
|
201
|
+
"scope": "cloud",
|
|
202
|
+
"official": false,
|
|
203
|
+
"install": {
|
|
204
|
+
"command": "npx",
|
|
205
|
+
"args": ["-y", "mcp-linear"],
|
|
206
|
+
"envVars": ["LINEAR_API_KEY"]
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"id": "makenotion/notion-mcp-server",
|
|
211
|
+
"name": "Notion",
|
|
212
|
+
"description": "Notion workspace integration — pages, databases, blocks, and search",
|
|
213
|
+
"github": "https://github.com/makenotion/notion-mcp-server",
|
|
214
|
+
"categories": ["productivity", "knowledge"],
|
|
215
|
+
"language": "typescript",
|
|
216
|
+
"scope": "cloud",
|
|
217
|
+
"official": true,
|
|
218
|
+
"install": {
|
|
219
|
+
"command": "npx",
|
|
220
|
+
"args": ["-y", "@notionhq/notion-mcp-server"],
|
|
221
|
+
"envVars": ["NOTION_API_KEY"]
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"id": "modelcontextprotocol/servers",
|
|
226
|
+
"name": "Slack",
|
|
227
|
+
"description": "Slack workspace integration — messages, channels, users, and threads",
|
|
228
|
+
"github": "https://github.com/modelcontextprotocol/servers",
|
|
229
|
+
"categories": ["communication", "productivity"],
|
|
230
|
+
"language": "typescript",
|
|
231
|
+
"scope": "cloud",
|
|
232
|
+
"official": true,
|
|
233
|
+
"install": {
|
|
234
|
+
"command": "npx",
|
|
235
|
+
"args": ["-y", "@modelcontextprotocol/server-slack"],
|
|
236
|
+
"envVars": ["SLACK_BOT_TOKEN", "SLACK_TEAM_ID"]
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"id": "modelcontextprotocol/servers",
|
|
241
|
+
"name": "Google Maps",
|
|
242
|
+
"description": "Google Maps API — geocoding, places, directions, and distance calculations",
|
|
243
|
+
"github": "https://github.com/modelcontextprotocol/servers",
|
|
244
|
+
"categories": ["maps", "location"],
|
|
245
|
+
"language": "typescript",
|
|
246
|
+
"scope": "cloud",
|
|
247
|
+
"official": true,
|
|
248
|
+
"install": {
|
|
249
|
+
"command": "npx",
|
|
250
|
+
"args": ["-y", "@modelcontextprotocol/server-google-maps"],
|
|
251
|
+
"envVars": ["GOOGLE_MAPS_API_KEY"]
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"id": "modelcontextprotocol/servers",
|
|
256
|
+
"name": "Google Drive",
|
|
257
|
+
"description": "Google Drive file access — list, read, search, and manage files",
|
|
258
|
+
"github": "https://github.com/modelcontextprotocol/servers",
|
|
259
|
+
"categories": ["storage", "files"],
|
|
260
|
+
"language": "typescript",
|
|
261
|
+
"scope": "cloud",
|
|
262
|
+
"official": true,
|
|
263
|
+
"install": {
|
|
264
|
+
"command": "npx",
|
|
265
|
+
"args": ["-y", "@modelcontextprotocol/server-gdrive"],
|
|
266
|
+
"envVars": ["GOOGLE_DRIVE_CREDENTIALS"]
|
|
267
|
+
}
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"id": "modelcontextprotocol/servers",
|
|
271
|
+
"name": "Everything",
|
|
272
|
+
"description": "Reference/test server with all MCP features — prompts, resources, tools, sampling",
|
|
273
|
+
"github": "https://github.com/modelcontextprotocol/servers",
|
|
274
|
+
"categories": ["testing", "reference"],
|
|
275
|
+
"language": "typescript",
|
|
276
|
+
"scope": "local",
|
|
277
|
+
"official": true,
|
|
278
|
+
"install": {
|
|
279
|
+
"command": "npx",
|
|
280
|
+
"args": ["-y", "@modelcontextprotocol/server-everything"]
|
|
281
|
+
}
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"id": "modelcontextprotocol/servers",
|
|
285
|
+
"name": "Sequential Thinking",
|
|
286
|
+
"description": "Step-by-step reasoning chain for complex problem decomposition",
|
|
287
|
+
"github": "https://github.com/modelcontextprotocol/servers",
|
|
288
|
+
"categories": ["reasoning", "thinking"],
|
|
289
|
+
"language": "typescript",
|
|
290
|
+
"scope": "local",
|
|
291
|
+
"official": true,
|
|
292
|
+
"install": {
|
|
293
|
+
"command": "npx",
|
|
294
|
+
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"]
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"id": "anthropics/mcp-servers",
|
|
299
|
+
"name": "Computer Use",
|
|
300
|
+
"description": "Desktop computer control — mouse, keyboard, screenshots via Anthropic",
|
|
301
|
+
"github": "https://github.com/anthropics/mcp-servers",
|
|
302
|
+
"categories": ["automation", "desktop"],
|
|
303
|
+
"language": "python",
|
|
304
|
+
"scope": "local",
|
|
305
|
+
"official": true,
|
|
306
|
+
"install": {
|
|
307
|
+
"command": "npx",
|
|
308
|
+
"args": ["-y", "@anthropic/mcp-computer-use"]
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"id": "sentry-io/mcp-server",
|
|
313
|
+
"name": "Sentry",
|
|
314
|
+
"description": "Sentry error tracking — issues, releases, performance monitoring",
|
|
315
|
+
"github": "https://github.com/sentry-io/mcp-server",
|
|
316
|
+
"categories": ["monitoring", "errors"],
|
|
317
|
+
"language": "typescript",
|
|
318
|
+
"scope": "cloud",
|
|
319
|
+
"official": true,
|
|
320
|
+
"install": {
|
|
321
|
+
"command": "npx",
|
|
322
|
+
"args": ["-y", "@sentry/mcp-server"],
|
|
323
|
+
"envVars": ["SENTRY_AUTH_TOKEN"]
|
|
324
|
+
}
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"id": "modelcontextprotocol/servers",
|
|
328
|
+
"name": "AWS KB Retrieval",
|
|
329
|
+
"description": "Amazon Knowledge Base retrieval — search and query AWS-hosted knowledge bases",
|
|
330
|
+
"github": "https://github.com/modelcontextprotocol/servers",
|
|
331
|
+
"categories": ["aws", "search"],
|
|
332
|
+
"language": "typescript",
|
|
333
|
+
"scope": "cloud",
|
|
334
|
+
"official": true,
|
|
335
|
+
"install": {
|
|
336
|
+
"command": "npx",
|
|
337
|
+
"args": ["-y", "@modelcontextprotocol/server-aws-kb-retrieval"],
|
|
338
|
+
"envVars": ["AWS_ACCESS_KEY_ID", "AWS_SECRET_ACCESS_KEY", "AWS_REGION"]
|
|
339
|
+
}
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"id": "aiedward/figma-mcp",
|
|
343
|
+
"name": "Figma",
|
|
344
|
+
"description": "Figma design file access — read layers, export assets, inspect designs",
|
|
345
|
+
"github": "https://github.com/aiedward/figma-mcp",
|
|
346
|
+
"categories": ["design", "ui"],
|
|
347
|
+
"language": "typescript",
|
|
348
|
+
"scope": "cloud",
|
|
349
|
+
"official": false,
|
|
350
|
+
"install": {
|
|
351
|
+
"command": "npx",
|
|
352
|
+
"args": ["-y", "mcp-figma"],
|
|
353
|
+
"envVars": ["FIGMA_ACCESS_TOKEN"]
|
|
354
|
+
}
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"id": "alexfazio/mcp-discord",
|
|
358
|
+
"name": "Discord",
|
|
359
|
+
"description": "Discord bot integration — messages, channels, servers, and moderation",
|
|
360
|
+
"github": "https://github.com/alexfazio/mcp-discord",
|
|
361
|
+
"categories": ["communication", "social"],
|
|
362
|
+
"language": "typescript",
|
|
363
|
+
"scope": "cloud",
|
|
364
|
+
"official": false,
|
|
365
|
+
"install": {
|
|
366
|
+
"command": "npx",
|
|
367
|
+
"args": ["-y", "mcp-discord"],
|
|
368
|
+
"envVars": ["DISCORD_BOT_TOKEN"]
|
|
369
|
+
}
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"id": "tavily-ai/mcp-tavily",
|
|
373
|
+
"name": "Tavily",
|
|
374
|
+
"description": "AI-optimized web search — extract and summarize web content for AI agents",
|
|
375
|
+
"github": "https://github.com/tavily-ai/mcp-tavily",
|
|
376
|
+
"categories": ["search", "web"],
|
|
377
|
+
"language": "typescript",
|
|
378
|
+
"scope": "cloud",
|
|
379
|
+
"official": true,
|
|
380
|
+
"install": {
|
|
381
|
+
"command": "npx",
|
|
382
|
+
"args": ["-y", "mcp-tavily"],
|
|
383
|
+
"envVars": ["TAVILY_API_KEY"]
|
|
384
|
+
}
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"id": "mendableai/mcp-server-firecrawl",
|
|
388
|
+
"name": "Firecrawl",
|
|
389
|
+
"description": "Web crawling and scraping — extract structured data from websites",
|
|
390
|
+
"github": "https://github.com/mendableai/mcp-server-firecrawl",
|
|
391
|
+
"categories": ["web", "scraping"],
|
|
392
|
+
"language": "typescript",
|
|
393
|
+
"scope": "cloud",
|
|
394
|
+
"official": true,
|
|
395
|
+
"install": {
|
|
396
|
+
"command": "npx",
|
|
397
|
+
"args": ["-y", "mcp-server-firecrawl"],
|
|
398
|
+
"envVars": ["FIRECRAWL_API_KEY"]
|
|
399
|
+
}
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"id": "exa-labs/mcp-server-exa",
|
|
403
|
+
"name": "Exa",
|
|
404
|
+
"description": "Exa search engine — neural search with semantic understanding",
|
|
405
|
+
"github": "https://github.com/exa-labs/mcp-server-exa",
|
|
406
|
+
"categories": ["search", "ai"],
|
|
407
|
+
"language": "typescript",
|
|
408
|
+
"scope": "cloud",
|
|
409
|
+
"official": true,
|
|
410
|
+
"install": {
|
|
411
|
+
"command": "npx",
|
|
412
|
+
"args": ["-y", "mcp-server-exa"],
|
|
413
|
+
"envVars": ["EXA_API_KEY"]
|
|
414
|
+
}
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"id": "neondatabase/mcp-server-neon",
|
|
418
|
+
"name": "Neon",
|
|
419
|
+
"description": "Neon serverless Postgres — database management, branching, and queries",
|
|
420
|
+
"github": "https://github.com/neondatabase/mcp-server-neon",
|
|
421
|
+
"categories": ["database", "serverless"],
|
|
422
|
+
"language": "typescript",
|
|
423
|
+
"scope": "cloud",
|
|
424
|
+
"official": true,
|
|
425
|
+
"install": {
|
|
426
|
+
"command": "npx",
|
|
427
|
+
"args": ["-y", "mcp-server-neon"],
|
|
428
|
+
"envVars": ["NEON_API_KEY"]
|
|
429
|
+
}
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"id": "railwayapp/mcp-server-railway",
|
|
433
|
+
"name": "Railway",
|
|
434
|
+
"description": "Railway deployment platform — services, deployments, and infrastructure management",
|
|
435
|
+
"github": "https://github.com/railwayapp/mcp-server-railway",
|
|
436
|
+
"categories": ["devops", "deployment"],
|
|
437
|
+
"language": "typescript",
|
|
438
|
+
"scope": "cloud",
|
|
439
|
+
"official": true,
|
|
440
|
+
"install": {
|
|
441
|
+
"command": "npx",
|
|
442
|
+
"args": ["-y", "mcp-server-railway"],
|
|
443
|
+
"envVars": ["RAILWAY_API_TOKEN"]
|
|
444
|
+
}
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"id": "vercel/mcp-vercel",
|
|
448
|
+
"name": "Vercel",
|
|
449
|
+
"description": "Vercel deployment platform — projects, deployments, domains, and serverless functions",
|
|
450
|
+
"github": "https://github.com/vercel/mcp-vercel",
|
|
451
|
+
"categories": ["devops", "deployment"],
|
|
452
|
+
"language": "typescript",
|
|
453
|
+
"scope": "cloud",
|
|
454
|
+
"official": true,
|
|
455
|
+
"install": {
|
|
456
|
+
"command": "npx",
|
|
457
|
+
"args": ["-y", "mcp-vercel"],
|
|
458
|
+
"envVars": ["VERCEL_API_TOKEN"]
|
|
459
|
+
}
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"id": "modelcontextprotocol/servers",
|
|
463
|
+
"name": "Git",
|
|
464
|
+
"description": "Git repository operations — commit history, diffs, branches, and blame",
|
|
465
|
+
"github": "https://github.com/modelcontextprotocol/servers",
|
|
466
|
+
"categories": ["development", "version-control"],
|
|
467
|
+
"language": "typescript",
|
|
468
|
+
"scope": "local",
|
|
469
|
+
"official": true,
|
|
470
|
+
"install": {
|
|
471
|
+
"command": "npx",
|
|
472
|
+
"args": ["-y", "@modelcontextprotocol/server-git"]
|
|
473
|
+
}
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"id": "jlowin/mcp-server-shell",
|
|
477
|
+
"name": "Shell",
|
|
478
|
+
"description": "Shell command execution — run arbitrary commands with output capture",
|
|
479
|
+
"github": "https://github.com/jlowin/mcp-server-shell",
|
|
480
|
+
"categories": ["system", "shell"],
|
|
481
|
+
"language": "python",
|
|
482
|
+
"scope": "local",
|
|
483
|
+
"official": false,
|
|
484
|
+
"install": {
|
|
485
|
+
"command": "npx",
|
|
486
|
+
"args": ["-y", "mcp-server-shell"]
|
|
487
|
+
}
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"id": "jlowin/mcp-server-redis",
|
|
491
|
+
"name": "Redis",
|
|
492
|
+
"description": "Redis database access — get, set, list operations, and pub/sub",
|
|
493
|
+
"github": "https://github.com/jlowin/mcp-server-redis",
|
|
494
|
+
"categories": ["database", "cache"],
|
|
495
|
+
"language": "python",
|
|
496
|
+
"scope": "local",
|
|
497
|
+
"official": false,
|
|
498
|
+
"install": {
|
|
499
|
+
"command": "npx",
|
|
500
|
+
"args": ["-y", "mcp-server-redis"],
|
|
501
|
+
"envVars": ["REDIS_URL"]
|
|
502
|
+
}
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
"id": "jlowin/mcp-server-elasticsearch",
|
|
506
|
+
"name": "Elasticsearch",
|
|
507
|
+
"description": "Elasticsearch access — search, index, and manage documents",
|
|
508
|
+
"github": "https://github.com/jlowin/mcp-server-elasticsearch",
|
|
509
|
+
"categories": ["database", "search"],
|
|
510
|
+
"language": "python",
|
|
511
|
+
"scope": "local",
|
|
512
|
+
"official": false,
|
|
513
|
+
"install": {
|
|
514
|
+
"command": "npx",
|
|
515
|
+
"args": ["-y", "mcp-server-elasticsearch"],
|
|
516
|
+
"envVars": ["ELASTICSEARCH_URL"]
|
|
517
|
+
}
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"id": "modelscope/mcp-server-time",
|
|
521
|
+
"name": "Time",
|
|
522
|
+
"description": "Time and timezone utilities — current time, conversions, and calculations",
|
|
523
|
+
"github": "https://github.com/modelscope/mcp-server-time",
|
|
524
|
+
"categories": ["utility", "time"],
|
|
525
|
+
"language": "typescript",
|
|
526
|
+
"scope": "local",
|
|
527
|
+
"official": false,
|
|
528
|
+
"install": {
|
|
529
|
+
"command": "npx",
|
|
530
|
+
"args": ["-y", "time-mcp"]
|
|
531
|
+
}
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"id": "modelscope/mcp-server-weather",
|
|
535
|
+
"name": "Weather",
|
|
536
|
+
"description": "Weather forecasts and current conditions via OpenMeteo API",
|
|
537
|
+
"github": "https://github.com/modelscope/mcp-server-weather",
|
|
538
|
+
"categories": ["weather", "utility"],
|
|
539
|
+
"language": "typescript",
|
|
540
|
+
"scope": "cloud",
|
|
541
|
+
"official": false,
|
|
542
|
+
"install": {
|
|
543
|
+
"command": "npx",
|
|
544
|
+
"args": ["-y", "weather-mcp"]
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"id": "jlowin/mcp-server-pdf",
|
|
549
|
+
"name": "PDF",
|
|
550
|
+
"description": "PDF document reading — extract text, tables, and metadata from PDF files",
|
|
551
|
+
"github": "https://github.com/jlowin/mcp-server-pdf",
|
|
552
|
+
"categories": ["documents", "files"],
|
|
553
|
+
"language": "python",
|
|
554
|
+
"scope": "local",
|
|
555
|
+
"official": false,
|
|
556
|
+
"install": {
|
|
557
|
+
"command": "npx",
|
|
558
|
+
"args": ["-y", "mcp-server-pdf"]
|
|
559
|
+
}
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
"id": "modelscope/mcp-server-sqlalchemy",
|
|
563
|
+
"name": "SQLAlchemy",
|
|
564
|
+
"description": "Universal SQL database access via SQLAlchemy — MySQL, PostgreSQL, SQLite, Oracle",
|
|
565
|
+
"github": "https://github.com/modelscope/mcp-server-sqlalchemy",
|
|
566
|
+
"categories": ["database", "sql"],
|
|
567
|
+
"language": "python",
|
|
568
|
+
"scope": "local",
|
|
569
|
+
"official": false,
|
|
570
|
+
"install": {
|
|
571
|
+
"command": "npx",
|
|
572
|
+
"args": ["-y", "mcp-server-sqlalchemy"],
|
|
573
|
+
"envVars": ["DATABASE_URL"]
|
|
574
|
+
}
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"id": "jlowin/mcp-server-prometheus",
|
|
578
|
+
"name": "Prometheus",
|
|
579
|
+
"description": "Prometheus metrics — query and explore metrics via PromQL",
|
|
580
|
+
"github": "https://github.com/jlowin/mcp-server-prometheus",
|
|
581
|
+
"categories": ["monitoring", "metrics"],
|
|
582
|
+
"language": "python",
|
|
583
|
+
"scope": "local",
|
|
584
|
+
"official": false,
|
|
585
|
+
"install": {
|
|
586
|
+
"command": "npx",
|
|
587
|
+
"args": ["-y", "mcp-server-prometheus"],
|
|
588
|
+
"envVars": ["PROMETHEUS_URL"]
|
|
589
|
+
}
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"id": "jlowin/mcp-server-grafana",
|
|
593
|
+
"name": "Grafana",
|
|
594
|
+
"description": "Grafana dashboards — list, view, and manage dashboards and data sources",
|
|
595
|
+
"github": "https://github.com/jlowin/mcp-server-grafana",
|
|
596
|
+
"categories": ["monitoring", "dashboards"],
|
|
597
|
+
"language": "python",
|
|
598
|
+
"scope": "local",
|
|
599
|
+
"official": false,
|
|
600
|
+
"install": {
|
|
601
|
+
"command": "npx",
|
|
602
|
+
"args": ["-y", "mcp-server-grafana"],
|
|
603
|
+
"envVars": ["GRAFANA_URL", "GRAFANA_API_KEY"]
|
|
604
|
+
}
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"id": "jlowin/mcp-server-jira",
|
|
608
|
+
"name": "Jira",
|
|
609
|
+
"description": "Jira project management — issues, sprints, boards, and workflows",
|
|
610
|
+
"github": "https://github.com/jlowin/mcp-server-jira",
|
|
611
|
+
"categories": ["project-management", "productivity"],
|
|
612
|
+
"language": "python",
|
|
613
|
+
"scope": "cloud",
|
|
614
|
+
"official": false,
|
|
615
|
+
"install": {
|
|
616
|
+
"command": "npx",
|
|
617
|
+
"args": ["-y", "mcp-server-jira"],
|
|
618
|
+
"envVars": ["JIRA_URL", "JIRA_EMAIL", "JIRA_API_TOKEN"]
|
|
619
|
+
}
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"id": "jlowin/mcp-server-confluence",
|
|
623
|
+
"name": "Confluence",
|
|
624
|
+
"description": "Confluence wiki — pages, spaces, search, and content management",
|
|
625
|
+
"github": "https://github.com/jlowin/mcp-server-confluence",
|
|
626
|
+
"categories": ["knowledge", "documentation"],
|
|
627
|
+
"language": "python",
|
|
628
|
+
"scope": "cloud",
|
|
629
|
+
"official": false,
|
|
630
|
+
"install": {
|
|
631
|
+
"command": "npx",
|
|
632
|
+
"args": ["-y", "mcp-server-confluence"],
|
|
633
|
+
"envVars": ["CONFLUENCE_URL", "CONFLUENCE_EMAIL", "CONFLUENCE_API_TOKEN"]
|
|
634
|
+
}
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"id": "jlowin/mcp-server-obsidian",
|
|
638
|
+
"name": "Obsidian",
|
|
639
|
+
"description": "Obsidian vault access — read, write, and search notes in Obsidian vaults",
|
|
640
|
+
"github": "https://github.com/jlowin/mcp-server-obsidian",
|
|
641
|
+
"categories": ["notes", "knowledge"],
|
|
642
|
+
"language": "python",
|
|
643
|
+
"scope": "local",
|
|
644
|
+
"official": false,
|
|
645
|
+
"install": {
|
|
646
|
+
"command": "npx",
|
|
647
|
+
"args": ["-y", "mcp-server-obsidian"],
|
|
648
|
+
"envVars": ["OBSIDIAN_VAULT_PATH"]
|
|
649
|
+
}
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"id": "modelcontextprotocol/servers",
|
|
653
|
+
"name": "Redis (Official)",
|
|
654
|
+
"description": "Official Redis MCP server — key-value operations, pub/sub, and data structures",
|
|
655
|
+
"github": "https://github.com/modelcontextprotocol/servers",
|
|
656
|
+
"categories": ["database", "cache"],
|
|
657
|
+
"language": "typescript",
|
|
658
|
+
"scope": "local",
|
|
659
|
+
"official": true,
|
|
660
|
+
"install": {
|
|
661
|
+
"command": "npx",
|
|
662
|
+
"args": ["-y", "@modelcontextprotocol/server-redis"],
|
|
663
|
+
"envVars": ["REDIS_URL"]
|
|
664
|
+
}
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
"id": "modelscope/mcp-server-minio",
|
|
668
|
+
"name": "MinIO",
|
|
669
|
+
"description": "MinIO object storage — upload, download, list, and manage objects and buckets",
|
|
670
|
+
"github": "https://github.com/modelscope/mcp-server-minio",
|
|
671
|
+
"categories": ["storage", "s3"],
|
|
672
|
+
"language": "python",
|
|
673
|
+
"scope": "local",
|
|
674
|
+
"official": false,
|
|
675
|
+
"install": {
|
|
676
|
+
"command": "npx",
|
|
677
|
+
"args": ["-y", "mcp-server-minio"],
|
|
678
|
+
"envVars": ["MINIO_ENDPOINT", "MINIO_ACCESS_KEY", "MINIO_SECRET_KEY"]
|
|
679
|
+
}
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"id": "jlowin/mcp-server-mongodb",
|
|
683
|
+
"name": "MongoDB",
|
|
684
|
+
"description": "MongoDB database access — query, insert, update documents and manage collections",
|
|
685
|
+
"github": "https://github.com/jlowin/mcp-server-mongodb",
|
|
686
|
+
"categories": ["database", "nosql"],
|
|
687
|
+
"language": "python",
|
|
688
|
+
"scope": "local",
|
|
689
|
+
"official": false,
|
|
690
|
+
"install": {
|
|
691
|
+
"command": "npx",
|
|
692
|
+
"args": ["-y", "mcp-server-mongodb"],
|
|
693
|
+
"envVars": ["MONGODB_URI"]
|
|
694
|
+
}
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"id": "jlowin/mcp-server-airtable",
|
|
698
|
+
"name": "Airtable",
|
|
699
|
+
"description": "Airtable base access — list, read, create, update, and delete records",
|
|
700
|
+
"github": "https://github.com/jlowin/mcp-server-airtable",
|
|
701
|
+
"categories": ["database", "productivity"],
|
|
702
|
+
"language": "python",
|
|
703
|
+
"scope": "cloud",
|
|
704
|
+
"official": false,
|
|
705
|
+
"install": {
|
|
706
|
+
"command": "npx",
|
|
707
|
+
"args": ["-y", "mcp-server-airtable"],
|
|
708
|
+
"envVars": ["AIRTABLE_API_KEY"]
|
|
709
|
+
}
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
"id": "jlowin/mcp-server-github-actions",
|
|
713
|
+
"name": "GitHub Actions",
|
|
714
|
+
"description": "GitHub Actions workflow management — trigger, monitor, and manage CI/CD workflows",
|
|
715
|
+
"github": "https://github.com/jlowin/mcp-server-github-actions",
|
|
716
|
+
"categories": ["devops", "ci-cd"],
|
|
717
|
+
"language": "typescript",
|
|
718
|
+
"scope": "cloud",
|
|
719
|
+
"official": false,
|
|
720
|
+
"install": {
|
|
721
|
+
"command": "npx",
|
|
722
|
+
"args": ["-y", "mcp-server-github-actions"],
|
|
723
|
+
"envVars": ["GITHUB_TOKEN"]
|
|
724
|
+
}
|
|
725
|
+
}
|
|
726
|
+
]
|
|
727
|
+
}
|