utim-cli 1.0.0__py3-none-any.whl
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.
- utim_cli/__init__.py +40 -0
- utim_cli/agent.py +359 -0
- utim_cli/auth.py +208 -0
- utim_cli/backup.py +101 -0
- utim_cli/billing.py +40 -0
- utim_cli/blender_agent.py +1018 -0
- utim_cli/bootstrap.py +324 -0
- utim_cli/client_utils.py +135 -0
- utim_cli/config.py +194 -0
- utim_cli/context_pruner.py +504 -0
- utim_cli/doctor.py +118 -0
- utim_cli/knowledge_graph.py +462 -0
- utim_cli/logger.py +121 -0
- utim_cli/mcp_clean_wrapper.py +55 -0
- utim_cli/mcp_client.py +198 -0
- utim_cli/mcp_registry.json +1102 -0
- utim_cli/orchestrator.py +3209 -0
- utim_cli/reflection.py +200 -0
- utim_cli/report.py +100 -0
- utim_cli/scrapy_search.py +229 -0
- utim_cli/share.py +320 -0
- utim_cli/share_tui.py +554 -0
- utim_cli/situational_scoring.py +269 -0
- utim_cli/state.py +15 -0
- utim_cli/tools.py +3381 -0
- utim_cli/utim.py +4051 -0
- utim_cli/vector_memory.py +629 -0
- utim_cli/workspace.py +33 -0
- utim_cli-1.0.0.dist-info/METADATA +134 -0
- utim_cli-1.0.0.dist-info/RECORD +34 -0
- utim_cli-1.0.0.dist-info/WHEEL +5 -0
- utim_cli-1.0.0.dist-info/entry_points.txt +2 -0
- utim_cli-1.0.0.dist-info/licenses/LICENSE +21 -0
- utim_cli-1.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,1102 @@
|
|
|
1
|
+
{
|
|
2
|
+
"sqlite": {
|
|
3
|
+
"name": "SQLite Server",
|
|
4
|
+
"desc": "Interact with SQLite databases - inspect schemas, query tables, and manage data.",
|
|
5
|
+
"pkg": "@mokei/mcp-sqlite",
|
|
6
|
+
"author": "modelcontextprotocol",
|
|
7
|
+
"fields": [
|
|
8
|
+
{
|
|
9
|
+
"type": "arg",
|
|
10
|
+
"key": "db_path",
|
|
11
|
+
"prompt": " Enter path to SQLite database file: ",
|
|
12
|
+
"required": true
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
},
|
|
16
|
+
"postgres": {
|
|
17
|
+
"name": "PostgreSQL Server",
|
|
18
|
+
"desc": "Connect to PostgreSQL databases to query tables and inspect schemas.",
|
|
19
|
+
"pkg": "@modelcontextprotocol/server-postgres",
|
|
20
|
+
"author": "modelcontextprotocol",
|
|
21
|
+
"fields": [
|
|
22
|
+
{
|
|
23
|
+
"type": "arg",
|
|
24
|
+
"key": "postgres_uri",
|
|
25
|
+
"prompt": " Enter PostgreSQL connection URI (e.g. postgresql://user:pass@host:port/db): ",
|
|
26
|
+
"required": true
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
"github": {
|
|
31
|
+
"name": "GitHub Server",
|
|
32
|
+
"desc": "Manage repositories, issues, PRs, and workflows through natural language.",
|
|
33
|
+
"pkg": "@modelcontextprotocol/server-github",
|
|
34
|
+
"author": "modelcontextprotocol",
|
|
35
|
+
"fields": [
|
|
36
|
+
{
|
|
37
|
+
"type": "env",
|
|
38
|
+
"key": "GITHUB_PERSONAL_ACCESS_TOKEN",
|
|
39
|
+
"prompt": " Enter GITHUB_PERSONAL_ACCESS_TOKEN: ",
|
|
40
|
+
"required": true
|
|
41
|
+
}
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
"gitlab": {
|
|
45
|
+
"name": "GitLab Server",
|
|
46
|
+
"desc": "Interact with GitLab repositories, issues, merge requests, and pipelines.",
|
|
47
|
+
"pkg": "@modelcontextprotocol/server-gitlab",
|
|
48
|
+
"author": "modelcontextprotocol",
|
|
49
|
+
"fields": [
|
|
50
|
+
{
|
|
51
|
+
"type": "env",
|
|
52
|
+
"key": "GITLAB_PERSONAL_ACCESS_TOKEN",
|
|
53
|
+
"prompt": " Enter GITLAB_PERSONAL_ACCESS_TOKEN: ",
|
|
54
|
+
"required": true
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"type": "env",
|
|
58
|
+
"key": "GITLAB_API_URL",
|
|
59
|
+
"prompt": " Enter GitLab API URL (optional, e.g. https://gitlab.example.com/api/v4): ",
|
|
60
|
+
"required": false
|
|
61
|
+
}
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
"filesystem": {
|
|
65
|
+
"name": "Filesystem Server",
|
|
66
|
+
"desc": "Securely read, write, search, and list files inside designated directories.",
|
|
67
|
+
"pkg": "@modelcontextprotocol/server-filesystem",
|
|
68
|
+
"author": "modelcontextprotocol",
|
|
69
|
+
"fields": [
|
|
70
|
+
{
|
|
71
|
+
"type": "arg_list",
|
|
72
|
+
"key": "allowed_paths",
|
|
73
|
+
"prompt": " Enter comma-separated absolute directory paths allowed for access: ",
|
|
74
|
+
"required": true
|
|
75
|
+
}
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
"brave-search": {
|
|
79
|
+
"name": "Brave Search Server",
|
|
80
|
+
"desc": "Perform web search queries and retrieve web links/snippets using Brave Search API.",
|
|
81
|
+
"pkg": "@modelcontextprotocol/server-brave-search",
|
|
82
|
+
"author": "modelcontextprotocol",
|
|
83
|
+
"fields": [
|
|
84
|
+
{
|
|
85
|
+
"type": "env",
|
|
86
|
+
"key": "BRAVE_API_KEY",
|
|
87
|
+
"prompt": " Enter BRAVE_API_KEY: ",
|
|
88
|
+
"required": true
|
|
89
|
+
}
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
"google-maps": {
|
|
93
|
+
"name": "Google Maps Server",
|
|
94
|
+
"desc": "Access Google Maps services including geocoding, search, and routing.",
|
|
95
|
+
"pkg": "@modelcontextprotocol/server-google-maps",
|
|
96
|
+
"author": "modelcontextprotocol",
|
|
97
|
+
"fields": [
|
|
98
|
+
{
|
|
99
|
+
"type": "env",
|
|
100
|
+
"key": "GOOGLE_MAPS_API_KEY",
|
|
101
|
+
"prompt": " Enter GOOGLE_MAPS_API_KEY: ",
|
|
102
|
+
"required": true
|
|
103
|
+
}
|
|
104
|
+
]
|
|
105
|
+
},
|
|
106
|
+
"google-drive": {
|
|
107
|
+
"name": "Google Drive Server",
|
|
108
|
+
"desc": "Search, read, and write files in your Google Drive storage.",
|
|
109
|
+
"pkg": "@piotr-agier/google-drive-mcp",
|
|
110
|
+
"author": "modelcontextprotocol",
|
|
111
|
+
"fields": [
|
|
112
|
+
{
|
|
113
|
+
"type": "env",
|
|
114
|
+
"key": "CLIENT_ID",
|
|
115
|
+
"prompt": " Enter Google Cloud OAuth CLIENT_ID: ",
|
|
116
|
+
"required": true
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"type": "env",
|
|
120
|
+
"key": "CLIENT_SECRET",
|
|
121
|
+
"prompt": " Enter Google Cloud OAuth CLIENT_SECRET: ",
|
|
122
|
+
"required": true
|
|
123
|
+
}
|
|
124
|
+
]
|
|
125
|
+
},
|
|
126
|
+
"slack": {
|
|
127
|
+
"name": "Slack Server",
|
|
128
|
+
"desc": "Connect to Slack channels to post messages and retrieve history.",
|
|
129
|
+
"pkg": "@modelcontextprotocol/server-slack",
|
|
130
|
+
"author": "modelcontextprotocol",
|
|
131
|
+
"fields": [
|
|
132
|
+
{
|
|
133
|
+
"type": "env",
|
|
134
|
+
"key": "SLACK_BOT_TOKEN",
|
|
135
|
+
"prompt": " Enter SLACK_BOT_TOKEN: ",
|
|
136
|
+
"required": true
|
|
137
|
+
}
|
|
138
|
+
]
|
|
139
|
+
},
|
|
140
|
+
"notion": {
|
|
141
|
+
"name": "Notion Server",
|
|
142
|
+
"desc": "Interact with Notion databases, pages, and blocks locally via API.",
|
|
143
|
+
"pkg": "notion-mcp-server",
|
|
144
|
+
"author": "community",
|
|
145
|
+
"fields": [
|
|
146
|
+
{
|
|
147
|
+
"type": "env",
|
|
148
|
+
"key": "NOTION_API_KEY",
|
|
149
|
+
"prompt": " Enter NOTION_API_KEY: ",
|
|
150
|
+
"required": true
|
|
151
|
+
}
|
|
152
|
+
]
|
|
153
|
+
},
|
|
154
|
+
"supabase": {
|
|
155
|
+
"name": "Supabase Server",
|
|
156
|
+
"desc": "Interact with the Supabase platform and database services.",
|
|
157
|
+
"pkg": "@supabase/mcp-server-supabase",
|
|
158
|
+
"author": "supabase",
|
|
159
|
+
"fields": [
|
|
160
|
+
{
|
|
161
|
+
"type": "env",
|
|
162
|
+
"key": "SUPABASE_URL",
|
|
163
|
+
"prompt": " Enter SUPABASE_URL: ",
|
|
164
|
+
"required": true
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"type": "env",
|
|
168
|
+
"key": "SUPABASE_SERVICE_ROLE_KEY",
|
|
169
|
+
"prompt": " Enter SUPABASE_SERVICE_ROLE_KEY: ",
|
|
170
|
+
"required": true
|
|
171
|
+
}
|
|
172
|
+
]
|
|
173
|
+
},
|
|
174
|
+
"playwright": {
|
|
175
|
+
"name": "Playwright Server",
|
|
176
|
+
"desc": "Automate web browsers using accessibility trees for testing and data extraction.",
|
|
177
|
+
"pkg": "@playwright/mcp",
|
|
178
|
+
"author": "microsoft",
|
|
179
|
+
"fields": []
|
|
180
|
+
},
|
|
181
|
+
"puppeteer": {
|
|
182
|
+
"name": "Puppeteer Server",
|
|
183
|
+
"desc": "Automated headless browser control, screenshot generation, and page interaction.",
|
|
184
|
+
"pkg": "@modelcontextprotocol/server-puppeteer",
|
|
185
|
+
"author": "modelcontextprotocol",
|
|
186
|
+
"fields": []
|
|
187
|
+
},
|
|
188
|
+
"sentry": {
|
|
189
|
+
"name": "Sentry Server",
|
|
190
|
+
"desc": "Expose Sentry issue tracking and error monitoring tools.",
|
|
191
|
+
"pkg": "@sentry/mcp-server",
|
|
192
|
+
"author": "sentry",
|
|
193
|
+
"fields": [
|
|
194
|
+
{
|
|
195
|
+
"type": "env",
|
|
196
|
+
"key": "SENTRY_AUTH_TOKEN",
|
|
197
|
+
"prompt": " Enter SENTRY_AUTH_TOKEN: ",
|
|
198
|
+
"required": true
|
|
199
|
+
}
|
|
200
|
+
]
|
|
201
|
+
},
|
|
202
|
+
"fetch": {
|
|
203
|
+
"name": "Fetch Server",
|
|
204
|
+
"desc": "Retrieve web page text content and convert HTML/JSON for LLM reasoning.",
|
|
205
|
+
"pkg": "@h16rkim/mcp-fetch-server",
|
|
206
|
+
"author": "modelcontextprotocol",
|
|
207
|
+
"fields": []
|
|
208
|
+
},
|
|
209
|
+
"memory": {
|
|
210
|
+
"name": "Memory Server",
|
|
211
|
+
"desc": "Knowledge graph-based persistent agent memory for context storage.",
|
|
212
|
+
"pkg": "@modelcontextprotocol/server-memory",
|
|
213
|
+
"author": "modelcontextprotocol",
|
|
214
|
+
"fields": []
|
|
215
|
+
},
|
|
216
|
+
"everything": {
|
|
217
|
+
"name": "Everything Server",
|
|
218
|
+
"desc": "Reference server showcasing all MCP tool features, schemas, and resource types.",
|
|
219
|
+
"pkg": "@modelcontextprotocol/server-everything",
|
|
220
|
+
"author": "modelcontextprotocol",
|
|
221
|
+
"fields": []
|
|
222
|
+
},
|
|
223
|
+
"markitdown": {
|
|
224
|
+
"name": "Markitdown",
|
|
225
|
+
"desc": "Convert various file formats (PDF, Word, Excel, images, audio) to Markdown.",
|
|
226
|
+
"pkg": "markitdown-mcp-npx",
|
|
227
|
+
"author": "microsoft",
|
|
228
|
+
"fields": []
|
|
229
|
+
},
|
|
230
|
+
"netdata": {
|
|
231
|
+
"name": "Netdata",
|
|
232
|
+
"desc": "Real-time infrastructure monitoring with metrics, logs, alerts, and ML-based anomaly detection.",
|
|
233
|
+
"pkg": "@netdata/netdata-ui",
|
|
234
|
+
"author": "netdata",
|
|
235
|
+
"fields": []
|
|
236
|
+
},
|
|
237
|
+
"context7": {
|
|
238
|
+
"name": "Context7",
|
|
239
|
+
"desc": "Up-to-date code docs for any prompt",
|
|
240
|
+
"pkg": "@upstash/context7-mcp",
|
|
241
|
+
"author": "upstash",
|
|
242
|
+
"fields": []
|
|
243
|
+
},
|
|
244
|
+
"chrome-devtools-mcp": {
|
|
245
|
+
"name": "Chrome DevTools MCP",
|
|
246
|
+
"desc": "MCP server for Chrome DevTools",
|
|
247
|
+
"pkg": "chrome-devtools-mcp",
|
|
248
|
+
"author": "ChromeDevTools",
|
|
249
|
+
"fields": []
|
|
250
|
+
},
|
|
251
|
+
"serena": {
|
|
252
|
+
"name": "Serena",
|
|
253
|
+
"desc": "Semantic code retrieval & editing tools for coding agents.",
|
|
254
|
+
"pkg": "serena-slim",
|
|
255
|
+
"author": "oraios",
|
|
256
|
+
"fields": []
|
|
257
|
+
},
|
|
258
|
+
"unity": {
|
|
259
|
+
"name": "Unity",
|
|
260
|
+
"desc": "Control the Unity Editor from MCP clients via a Unity bridge + local Python server.",
|
|
261
|
+
"pkg": "unity-mcp-server",
|
|
262
|
+
"author": "CoplayDev",
|
|
263
|
+
"fields": []
|
|
264
|
+
},
|
|
265
|
+
"firecrawl": {
|
|
266
|
+
"name": "Firecrawl",
|
|
267
|
+
"desc": "Extract web data with Firecrawl",
|
|
268
|
+
"pkg": "firecrawl-mcp",
|
|
269
|
+
"author": "firecrawl",
|
|
270
|
+
"fields": [
|
|
271
|
+
{
|
|
272
|
+
"type": "env",
|
|
273
|
+
"key": "FIRECRAWL_API_KEY",
|
|
274
|
+
"prompt": " Enter FIRECRAWL_API_KEY: ",
|
|
275
|
+
"required": true
|
|
276
|
+
}
|
|
277
|
+
]
|
|
278
|
+
},
|
|
279
|
+
"desktop-commander": {
|
|
280
|
+
"name": "Desktop Commander",
|
|
281
|
+
"desc": "MCP server for terminal commands, file operations, and process management",
|
|
282
|
+
"pkg": "@wonderwhy-er/desktop-commander",
|
|
283
|
+
"author": "wonderwhy-er",
|
|
284
|
+
"fields": []
|
|
285
|
+
},
|
|
286
|
+
"azure-mcp-server": {
|
|
287
|
+
"name": "Azure MCP Server",
|
|
288
|
+
"desc": "All Azure MCP tools to create a seamless connection between AI agents and Azure services.",
|
|
289
|
+
"pkg": "@azure/mcp",
|
|
290
|
+
"author": "microsoft",
|
|
291
|
+
"fields": []
|
|
292
|
+
},
|
|
293
|
+
"microsoft-fabric-mcp-server": {
|
|
294
|
+
"name": "Microsoft Fabric MCP Server",
|
|
295
|
+
"desc": "MCP tools for interacting with Microsoft Fabric",
|
|
296
|
+
"pkg": "@playwright/mcp",
|
|
297
|
+
"author": "microsoft",
|
|
298
|
+
"fields": []
|
|
299
|
+
},
|
|
300
|
+
"dbhub": {
|
|
301
|
+
"name": "DBHub",
|
|
302
|
+
"desc": "Minimal, token-efficient Database MCP Server for PostgreSQL, MySQL, SQL Server, SQLite, MariaDB",
|
|
303
|
+
"pkg": "@bytebase/dbhub",
|
|
304
|
+
"author": "bytebase",
|
|
305
|
+
"fields": []
|
|
306
|
+
},
|
|
307
|
+
"brightdata": {
|
|
308
|
+
"name": "Brightdata",
|
|
309
|
+
"desc": "Bright Data's Web MCP server enabling AI agents to search, extract & navigate the web",
|
|
310
|
+
"pkg": "@brightdata/mcp",
|
|
311
|
+
"author": "brightdata",
|
|
312
|
+
"fields": [
|
|
313
|
+
{
|
|
314
|
+
"type": "env",
|
|
315
|
+
"key": "BRIGHTDATA_API_KEY",
|
|
316
|
+
"prompt": " Enter BRIGHTDATA_API_KEY: ",
|
|
317
|
+
"required": true
|
|
318
|
+
}
|
|
319
|
+
]
|
|
320
|
+
},
|
|
321
|
+
"tavily": {
|
|
322
|
+
"name": "Tavily",
|
|
323
|
+
"desc": "MCP server for advanced web search using Tavily",
|
|
324
|
+
"pkg": "tavily-mcp",
|
|
325
|
+
"author": "tavily-ai",
|
|
326
|
+
"fields": [
|
|
327
|
+
{
|
|
328
|
+
"type": "env",
|
|
329
|
+
"key": "TAVILY_API_KEY",
|
|
330
|
+
"prompt": " Enter TAVILY_API_KEY: ",
|
|
331
|
+
"required": true
|
|
332
|
+
}
|
|
333
|
+
]
|
|
334
|
+
},
|
|
335
|
+
"azure-devops": {
|
|
336
|
+
"name": "Azure DevOps",
|
|
337
|
+
"desc": "Interact with Azure DevOps services like repositories, work items, builds, releases, test plans, and code search.",
|
|
338
|
+
"pkg": "@ax-ado-mcp/mcp-server-azure-devops-enhanced",
|
|
339
|
+
"author": "microsoft",
|
|
340
|
+
"fields": [
|
|
341
|
+
{
|
|
342
|
+
"type": "env",
|
|
343
|
+
"key": "AZURE_DEVOPS_EXT_PAT",
|
|
344
|
+
"prompt": " Enter AZURE_DEVOPS_EXT_PAT (Personal Access Token): ",
|
|
345
|
+
"required": true
|
|
346
|
+
}
|
|
347
|
+
]
|
|
348
|
+
},
|
|
349
|
+
"microsoft-learn": {
|
|
350
|
+
"name": "Microsoft Learn",
|
|
351
|
+
"desc": "Enables clients like GitHub Copilot and other AI agents to bring trusted and up-to-date information directly from Microsoft's official documentation.",
|
|
352
|
+
"pkg": "@microsoft/learn-cli",
|
|
353
|
+
"author": "MicrosoftDocs",
|
|
354
|
+
"fields": []
|
|
355
|
+
},
|
|
356
|
+
"figma-mcp-server": {
|
|
357
|
+
"name": "Figma MCP Server",
|
|
358
|
+
"desc": "The Figma MCP server brings Figma design context directly into your AI workflow.",
|
|
359
|
+
"pkg": "figma-developer-mcp",
|
|
360
|
+
"author": "Community",
|
|
361
|
+
"fields": [
|
|
362
|
+
{
|
|
363
|
+
"type": "env",
|
|
364
|
+
"key": "FIGMA_API_KEY",
|
|
365
|
+
"prompt": " Enter FIGMA_API_KEY: ",
|
|
366
|
+
"required": true
|
|
367
|
+
}
|
|
368
|
+
]
|
|
369
|
+
},
|
|
370
|
+
"stripe": {
|
|
371
|
+
"name": "Stripe",
|
|
372
|
+
"desc": "MCP server integrating with Stripe - tools for customers, products, payments, and more.",
|
|
373
|
+
"pkg": "mcp-server-stripe",
|
|
374
|
+
"author": "stripe",
|
|
375
|
+
"fields": [
|
|
376
|
+
{
|
|
377
|
+
"type": "env",
|
|
378
|
+
"key": "STRIPE_API_KEY",
|
|
379
|
+
"prompt": " Enter STRIPE_API_KEY: ",
|
|
380
|
+
"required": true
|
|
381
|
+
}
|
|
382
|
+
]
|
|
383
|
+
},
|
|
384
|
+
"microsoft-nuget": {
|
|
385
|
+
"name": "Microsoft Nuget",
|
|
386
|
+
"desc": "A Model Context Protocol (MCP) server for NuGet.",
|
|
387
|
+
"pkg": "@playwright/mcp",
|
|
388
|
+
"author": "NuGet",
|
|
389
|
+
"fields": []
|
|
390
|
+
},
|
|
391
|
+
"terraform": {
|
|
392
|
+
"name": "Terraform",
|
|
393
|
+
"desc": "Generate more accurate Terraform and automate workflows for HCP Terraform and Terraform Enterprise",
|
|
394
|
+
"pkg": "terraform-mcp-server",
|
|
395
|
+
"author": "hashicorp",
|
|
396
|
+
"fields": []
|
|
397
|
+
},
|
|
398
|
+
"apify": {
|
|
399
|
+
"name": "Apify",
|
|
400
|
+
"desc": "Extract data from any website with thousands of scrapers, crawlers, and automations on Apify Store ⚡",
|
|
401
|
+
"pkg": "@apify/actors-mcp-server",
|
|
402
|
+
"author": "apify",
|
|
403
|
+
"fields": [
|
|
404
|
+
{
|
|
405
|
+
"type": "env",
|
|
406
|
+
"key": "APIFY_TOKEN",
|
|
407
|
+
"prompt": " Enter APIFY_TOKEN: ",
|
|
408
|
+
"required": true
|
|
409
|
+
}
|
|
410
|
+
]
|
|
411
|
+
},
|
|
412
|
+
"mongodb": {
|
|
413
|
+
"name": "Mongodb",
|
|
414
|
+
"desc": "MongoDB Model Context Protocol Server",
|
|
415
|
+
"pkg": "@mongodb-js/mcp-types",
|
|
416
|
+
"author": "mongodb-js",
|
|
417
|
+
"fields": [
|
|
418
|
+
{
|
|
419
|
+
"type": "env",
|
|
420
|
+
"key": "MONGODB_URI",
|
|
421
|
+
"prompt": " Enter MONGODB_URI: ",
|
|
422
|
+
"required": true
|
|
423
|
+
}
|
|
424
|
+
]
|
|
425
|
+
},
|
|
426
|
+
"searxng-search": {
|
|
427
|
+
"name": "SearXNG Search",
|
|
428
|
+
"desc": "MCP server for SearXNG — privacy-respecting web search with pagination, URL reading",
|
|
429
|
+
"pkg": "mcp-searxng",
|
|
430
|
+
"author": "ihor-sokoliuk",
|
|
431
|
+
"fields": []
|
|
432
|
+
},
|
|
433
|
+
"nuxt": {
|
|
434
|
+
"name": "Nuxt",
|
|
435
|
+
"desc": "MCP server helping models understand your Vite/Nuxt app.",
|
|
436
|
+
"pkg": "nuxt-mcp-dev",
|
|
437
|
+
"author": "antfu",
|
|
438
|
+
"fields": []
|
|
439
|
+
},
|
|
440
|
+
"atlassian": {
|
|
441
|
+
"name": "Atlassian",
|
|
442
|
+
"desc": "Atlassian Rovo MCP Server",
|
|
443
|
+
"pkg": "atlassian",
|
|
444
|
+
"author": "atlassian",
|
|
445
|
+
"fields": []
|
|
446
|
+
},
|
|
447
|
+
"vercel-next-dev-tools": {
|
|
448
|
+
"name": "Vercel Next Dev Tools",
|
|
449
|
+
"desc": "Next.js development tools MCP server with stdio transport",
|
|
450
|
+
"pkg": "@ai-sdk/mcp",
|
|
451
|
+
"author": "vercel",
|
|
452
|
+
"fields": []
|
|
453
|
+
},
|
|
454
|
+
"elasticsearch": {
|
|
455
|
+
"name": "Elasticsearch",
|
|
456
|
+
"desc": "MCP server for connecting to Elasticsearch data and indices. Supports search queries, mappings, ES|QL, and shard information through natural language interactions.",
|
|
457
|
+
"pkg": "banza-mcp",
|
|
458
|
+
"author": "elastic",
|
|
459
|
+
"fields": []
|
|
460
|
+
},
|
|
461
|
+
"neon": {
|
|
462
|
+
"name": "Neon",
|
|
463
|
+
"desc": "MCP server for interacting with Neon Management API and databases",
|
|
464
|
+
"pkg": "neon",
|
|
465
|
+
"author": "neondatabase",
|
|
466
|
+
"fields": []
|
|
467
|
+
},
|
|
468
|
+
"sonarsource-sonarqube": {
|
|
469
|
+
"name": "SonarSource Sonarqube",
|
|
470
|
+
"desc": "An MCP server that enables integration with SonarQube Server or Cloud for code quality and security.",
|
|
471
|
+
"pkg": "@modelcontextprotocol/server-sonarsource-sonarqube",
|
|
472
|
+
"author": "SonarSource",
|
|
473
|
+
"fields": []
|
|
474
|
+
},
|
|
475
|
+
"chroma": {
|
|
476
|
+
"name": "Chroma",
|
|
477
|
+
"desc": "Provides data retrieval capabilities powered by Chroma, enabling AI models to create collections over generated data and user inputs, and retrieve that data using vector search, full text search, metadata filtering, and more.",
|
|
478
|
+
"pkg": "chroma",
|
|
479
|
+
"author": "chroma-core",
|
|
480
|
+
"fields": []
|
|
481
|
+
},
|
|
482
|
+
"todoist": {
|
|
483
|
+
"name": "Todoist",
|
|
484
|
+
"desc": "A set of tools to connect to AI agents, to allow them to use Todoist on a user's behalf.",
|
|
485
|
+
"pkg": "@doist/todoist-mcp",
|
|
486
|
+
"author": "Doist",
|
|
487
|
+
"fields": [
|
|
488
|
+
{
|
|
489
|
+
"type": "env",
|
|
490
|
+
"key": "TODOIST_API_TOKEN",
|
|
491
|
+
"prompt": " Enter TODOIST_API_TOKEN: ",
|
|
492
|
+
"required": true
|
|
493
|
+
}
|
|
494
|
+
]
|
|
495
|
+
},
|
|
496
|
+
"monday": {
|
|
497
|
+
"name": "Monday",
|
|
498
|
+
"desc": "MCP server for monday.com integration.",
|
|
499
|
+
"pkg": "monday-mcp-server",
|
|
500
|
+
"author": "mondaycom",
|
|
501
|
+
"fields": [
|
|
502
|
+
{
|
|
503
|
+
"type": "env",
|
|
504
|
+
"key": "MONDAY_API_TOKEN",
|
|
505
|
+
"prompt": " Enter MONDAY_API_TOKEN: ",
|
|
506
|
+
"required": true
|
|
507
|
+
}
|
|
508
|
+
]
|
|
509
|
+
},
|
|
510
|
+
"mapbox": {
|
|
511
|
+
"name": "Mapbox",
|
|
512
|
+
"desc": "Geospatial intelligence with Mapbox APIs like geocoding, POI search, directions, isochrones, etc.",
|
|
513
|
+
"pkg": "@mapbox/mcp-server",
|
|
514
|
+
"author": "mapbox",
|
|
515
|
+
"fields": [
|
|
516
|
+
{
|
|
517
|
+
"type": "env",
|
|
518
|
+
"key": "MAPBOX_ACCESS_TOKEN",
|
|
519
|
+
"prompt": " Enter MAPBOX_ACCESS_TOKEN: ",
|
|
520
|
+
"required": true
|
|
521
|
+
}
|
|
522
|
+
]
|
|
523
|
+
},
|
|
524
|
+
"imagesorcery": {
|
|
525
|
+
"name": "Imagesorcery",
|
|
526
|
+
"desc": "Local image processing with computer vision capabilities including object detection, OCR, image editing, and transformations.",
|
|
527
|
+
"pkg": "@modelcontextprotocol/server-imagesorcery",
|
|
528
|
+
"author": "sunriseapps",
|
|
529
|
+
"fields": []
|
|
530
|
+
},
|
|
531
|
+
"zapier": {
|
|
532
|
+
"name": "Zapier",
|
|
533
|
+
"desc": "Zapier MCP is a remote MCP server that gives your AI direct access to 8,000+ apps and 30,000+ actions—no complex API integrations required.",
|
|
534
|
+
"pkg": "zapier",
|
|
535
|
+
"author": "zapier",
|
|
536
|
+
"fields": []
|
|
537
|
+
},
|
|
538
|
+
"svelte-mcp": {
|
|
539
|
+
"name": "Svelte MCP",
|
|
540
|
+
"desc": "The official Svelte MCP server providing docs and autofixing tools for Svelte development",
|
|
541
|
+
"pkg": "@orval/mcp",
|
|
542
|
+
"author": "sveltejs",
|
|
543
|
+
"fields": []
|
|
544
|
+
},
|
|
545
|
+
"postman": {
|
|
546
|
+
"name": "Postman",
|
|
547
|
+
"desc": "A basic MCP server to operate on the Postman API.",
|
|
548
|
+
"pkg": "postman",
|
|
549
|
+
"author": "postmanlabs",
|
|
550
|
+
"fields": [
|
|
551
|
+
{
|
|
552
|
+
"type": "env",
|
|
553
|
+
"key": "POSTMAN_API_KEY",
|
|
554
|
+
"prompt": " Enter POSTMAN_API_KEY: ",
|
|
555
|
+
"required": true
|
|
556
|
+
}
|
|
557
|
+
]
|
|
558
|
+
},
|
|
559
|
+
"hugging-face": {
|
|
560
|
+
"name": "Hugging Face",
|
|
561
|
+
"desc": "Access Hugging Face models, datasets, Spaces, papers, collections via MCP.",
|
|
562
|
+
"pkg": "@huggingface/mcp-server",
|
|
563
|
+
"author": "huggingface",
|
|
564
|
+
"fields": [
|
|
565
|
+
{
|
|
566
|
+
"type": "env",
|
|
567
|
+
"key": "HF_TOKEN",
|
|
568
|
+
"prompt": " Enter HF_TOKEN: ",
|
|
569
|
+
"required": true
|
|
570
|
+
}
|
|
571
|
+
]
|
|
572
|
+
},
|
|
573
|
+
"azure-ai-foundry": {
|
|
574
|
+
"name": "Azure AI Foundry",
|
|
575
|
+
"desc": "An experimental MCP server implementation for Azure AI Foundry that exposes unified tools for models, knowledge, evaluation and deployment.",
|
|
576
|
+
"pkg": "nascoder-azure-ai-mcp-server",
|
|
577
|
+
"author": "microsoft-foundry",
|
|
578
|
+
"fields": []
|
|
579
|
+
},
|
|
580
|
+
"crowdstrike-falcon-mcp-server": {
|
|
581
|
+
"name": "CrowdStrike Falcon MCP Server",
|
|
582
|
+
"desc": "Connects AI agents with CrowdStrike Falcon for security analysis and automation.",
|
|
583
|
+
"pkg": "mcp-proxy",
|
|
584
|
+
"author": "CrowdStrike",
|
|
585
|
+
"fields": []
|
|
586
|
+
},
|
|
587
|
+
"awesome-copilot-mcp-server": {
|
|
588
|
+
"name": "Awesome Copilot MCP Server",
|
|
589
|
+
"desc": "An MCP server that stores Copilot customizations from the Awesome Copilot repository",
|
|
590
|
+
"pkg": "@modelcontextprotocol/server-awesome-copilot-mcp-server",
|
|
591
|
+
"author": "microsoft",
|
|
592
|
+
"fields": []
|
|
593
|
+
},
|
|
594
|
+
"glean-remote-mcp-server": {
|
|
595
|
+
"name": "Glean Remote MCP Server",
|
|
596
|
+
"desc": "Remote MCP Server that securely connects Glean Enterprise Knowledge with your IDE, LLM, or agents.",
|
|
597
|
+
"pkg": "@modelcontextprotocol/server-glean-remote-mcp-server",
|
|
598
|
+
"author": "gleanwork",
|
|
599
|
+
"fields": []
|
|
600
|
+
},
|
|
601
|
+
"logfire": {
|
|
602
|
+
"name": "Logfire",
|
|
603
|
+
"desc": "Provides access to OpenTelemetry traces and metrics through Logfire.",
|
|
604
|
+
"pkg": "logfire",
|
|
605
|
+
"author": "pydantic",
|
|
606
|
+
"fields": []
|
|
607
|
+
},
|
|
608
|
+
"sap-fiori": {
|
|
609
|
+
"name": "SAP Fiori",
|
|
610
|
+
"desc": "SAP Fiori - Model Context Protocol (MCP) server",
|
|
611
|
+
"pkg": "@modelcontextprotocol/server-sap-fiori",
|
|
612
|
+
"author": "SAP",
|
|
613
|
+
"fields": []
|
|
614
|
+
},
|
|
615
|
+
"serpapi": {
|
|
616
|
+
"name": "Serpapi",
|
|
617
|
+
"desc": "Official SerpApi MCP server for Google, Bing, and other search engines.",
|
|
618
|
+
"pkg": "serpapi",
|
|
619
|
+
"author": "serpapi",
|
|
620
|
+
"fields": [
|
|
621
|
+
{
|
|
622
|
+
"type": "env",
|
|
623
|
+
"key": "SERPAPI_API_KEY",
|
|
624
|
+
"prompt": " Enter SERPAPI_API_KEY: ",
|
|
625
|
+
"required": true
|
|
626
|
+
}
|
|
627
|
+
]
|
|
628
|
+
},
|
|
629
|
+
"azure-kubernetes-service": {
|
|
630
|
+
"name": "Azure Kubernetes Service",
|
|
631
|
+
"desc": "Interact with Azure Kubernetes Service (AKS) from MCP clients.",
|
|
632
|
+
"pkg": "@modelcontextprotocol/server-azure-kubernetes-service",
|
|
633
|
+
"author": "Azure",
|
|
634
|
+
"fields": []
|
|
635
|
+
},
|
|
636
|
+
"webflow": {
|
|
637
|
+
"name": "Webflow",
|
|
638
|
+
"desc": "AI-powered design and management for Webflow Sites",
|
|
639
|
+
"pkg": "@webflow/webflow-cli",
|
|
640
|
+
"author": "webflow",
|
|
641
|
+
"fields": []
|
|
642
|
+
},
|
|
643
|
+
"dynatrace": {
|
|
644
|
+
"name": "Dynatrace",
|
|
645
|
+
"desc": "Access Dynatrace observability data: logs, metrics, problems, vulnerabilities via DQL and Davis AI",
|
|
646
|
+
"pkg": "@dynatrace-oss/dynatrace-mcp-server",
|
|
647
|
+
"author": "dynatrace-oss",
|
|
648
|
+
"fields": [
|
|
649
|
+
{
|
|
650
|
+
"type": "env",
|
|
651
|
+
"key": "DT_ENVIRONMENT",
|
|
652
|
+
"prompt": " Enter Dynatrace Environment URL (Platform URL): ",
|
|
653
|
+
"required": true
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
"type": "env",
|
|
657
|
+
"key": "DT_PLATFORM_TOKEN",
|
|
658
|
+
"prompt": " Enter Dynatrace Platform Token: ",
|
|
659
|
+
"required": true
|
|
660
|
+
}
|
|
661
|
+
]
|
|
662
|
+
},
|
|
663
|
+
"fabric-real-time-intelligence": {
|
|
664
|
+
"name": "Fabric Real-Time Intelligence",
|
|
665
|
+
"desc": "Query Eventhouse/ADX with KQL and manage Eventstreams.",
|
|
666
|
+
"pkg": "@mapbox/mcp-server",
|
|
667
|
+
"author": "microsoft",
|
|
668
|
+
"fields": []
|
|
669
|
+
},
|
|
670
|
+
"miro": {
|
|
671
|
+
"name": "Miro",
|
|
672
|
+
"desc": "Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.",
|
|
673
|
+
"pkg": "@mirohq/miro-api",
|
|
674
|
+
"author": "miroapp",
|
|
675
|
+
"fields": []
|
|
676
|
+
},
|
|
677
|
+
"cap-js": {
|
|
678
|
+
"name": "Cap JS",
|
|
679
|
+
"desc": "Model Context Protocol (MCP) server for AI-assisted development of CAP applications.",
|
|
680
|
+
"pkg": "@cap-js/mcp-server",
|
|
681
|
+
"author": "cap-js",
|
|
682
|
+
"fields": []
|
|
683
|
+
},
|
|
684
|
+
"octopus-deploy": {
|
|
685
|
+
"name": "Octopus Deploy",
|
|
686
|
+
"desc": "Deliver software to Kubernetes, multi-cloud, on-prem infrastructure, and anywhere else",
|
|
687
|
+
"pkg": "@octopusdeploy/mcp-server",
|
|
688
|
+
"author": "OctopusDeploy",
|
|
689
|
+
"fields": []
|
|
690
|
+
},
|
|
691
|
+
"ui5": {
|
|
692
|
+
"name": "UI5",
|
|
693
|
+
"desc": "MCP server for SAPUI5/OpenUI5 development",
|
|
694
|
+
"pkg": "@ui5/mcp-server",
|
|
695
|
+
"author": "UI5",
|
|
696
|
+
"fields": []
|
|
697
|
+
},
|
|
698
|
+
"clarity": {
|
|
699
|
+
"name": "Clarity",
|
|
700
|
+
"desc": "Fetch Clarity analytics via MCP clients.",
|
|
701
|
+
"pkg": "@microsoft/clarity-mcp-server",
|
|
702
|
+
"author": "microsoft",
|
|
703
|
+
"fields": []
|
|
704
|
+
},
|
|
705
|
+
"scrapegraphai-scrapegraph": {
|
|
706
|
+
"name": "ScrapeGraphAI Scrapegraph",
|
|
707
|
+
"desc": "AI-powered web scraping and data extraction capabilities through ScrapeGraph API",
|
|
708
|
+
"pkg": "mcp-proxy",
|
|
709
|
+
"author": "ScrapeGraphAI",
|
|
710
|
+
"fields": []
|
|
711
|
+
},
|
|
712
|
+
"arm-mcp-server": {
|
|
713
|
+
"name": "Arm MCP Server",
|
|
714
|
+
"desc": "Official Arm MCP server for code migration, optimization, and Arm architecture guidance",
|
|
715
|
+
"pkg": "mcp-proxy",
|
|
716
|
+
"author": "arm",
|
|
717
|
+
"fields": []
|
|
718
|
+
},
|
|
719
|
+
"deepwiki": {
|
|
720
|
+
"name": "DeepWiki",
|
|
721
|
+
"desc": "Devin-generated docs for any public repo",
|
|
722
|
+
"pkg": "mcp-deepwiki",
|
|
723
|
+
"author": "CognitionAI",
|
|
724
|
+
"fields": []
|
|
725
|
+
},
|
|
726
|
+
"sonatype-dependency-management": {
|
|
727
|
+
"name": "Sonatype Dependency Management",
|
|
728
|
+
"desc": "Sonatype component intelligence: versions, security analysis, and Trust Score recommendations",
|
|
729
|
+
"pkg": "mcp-proxy",
|
|
730
|
+
"author": "sonatype",
|
|
731
|
+
"fields": []
|
|
732
|
+
},
|
|
733
|
+
"pagerduty": {
|
|
734
|
+
"name": "PagerDuty",
|
|
735
|
+
"desc": "PagerDuty's official MCP server which provides tools to interact with your PagerDuty account.",
|
|
736
|
+
"pkg": "mcp-proxy",
|
|
737
|
+
"author": "PagerDuty",
|
|
738
|
+
"fields": [
|
|
739
|
+
{
|
|
740
|
+
"type": "env",
|
|
741
|
+
"key": "PAGERDUTY_API_KEY",
|
|
742
|
+
"prompt": " Enter PAGERDUTY_API_KEY: ",
|
|
743
|
+
"required": true
|
|
744
|
+
}
|
|
745
|
+
]
|
|
746
|
+
},
|
|
747
|
+
"codacy": {
|
|
748
|
+
"name": "Codacy",
|
|
749
|
+
"desc": "MCP Server for the Codacy API, enabling access to repositories, files, quality, coverage, security and more.",
|
|
750
|
+
"pkg": "@codacy/codacy-mcp",
|
|
751
|
+
"author": "codacy",
|
|
752
|
+
"fields": []
|
|
753
|
+
},
|
|
754
|
+
"mapbox-mcp-devkit-server": {
|
|
755
|
+
"name": "Mapbox MCP Devkit Server",
|
|
756
|
+
"desc": "Provides AI assistants with direct access to Mapbox developer APIs and documentation.",
|
|
757
|
+
"pkg": "mcp-proxy",
|
|
758
|
+
"author": "mapbox",
|
|
759
|
+
"fields": [
|
|
760
|
+
{
|
|
761
|
+
"type": "env",
|
|
762
|
+
"key": "MAPBOX_ACCESS_TOKEN",
|
|
763
|
+
"prompt": " Enter MAPBOX_ACCESS_TOKEN: ",
|
|
764
|
+
"required": true
|
|
765
|
+
}
|
|
766
|
+
]
|
|
767
|
+
},
|
|
768
|
+
"snyk": {
|
|
769
|
+
"name": "Snyk",
|
|
770
|
+
"desc": "Easily find and fix security issues in your applications leveraging Snyk platform capabilities.",
|
|
771
|
+
"pkg": "snyk",
|
|
772
|
+
"author": "snyk",
|
|
773
|
+
"fields": [
|
|
774
|
+
{
|
|
775
|
+
"type": "env",
|
|
776
|
+
"key": "SNYK_TOKEN",
|
|
777
|
+
"prompt": " Enter SNYK_TOKEN: ",
|
|
778
|
+
"required": true
|
|
779
|
+
}
|
|
780
|
+
]
|
|
781
|
+
},
|
|
782
|
+
"amplitude": {
|
|
783
|
+
"name": "Amplitude",
|
|
784
|
+
"desc": "Search, access, and get insights on your Amplitude data",
|
|
785
|
+
"pkg": "amplitude",
|
|
786
|
+
"author": "amplitude",
|
|
787
|
+
"fields": [
|
|
788
|
+
{
|
|
789
|
+
"type": "env",
|
|
790
|
+
"key": "AMPLITUDE_API_KEY",
|
|
791
|
+
"prompt": " Enter AMPLITUDE_API_KEY: ",
|
|
792
|
+
"required": true
|
|
793
|
+
}
|
|
794
|
+
]
|
|
795
|
+
},
|
|
796
|
+
"microsoft-mcp-server-for-enterprise": {
|
|
797
|
+
"name": "Microsoft MCP Server for Enterprise",
|
|
798
|
+
"desc": "Official Microsoft MCP Server to query Microsoft Entra data using natural language",
|
|
799
|
+
"pkg": "@playwright/mcp",
|
|
800
|
+
"author": "microsoft",
|
|
801
|
+
"fields": []
|
|
802
|
+
},
|
|
803
|
+
"zscaler-zero-trust-exchange": {
|
|
804
|
+
"name": "Zscaler Zero Trust Exchange",
|
|
805
|
+
"desc": "Manage Zscaler Zero Trust Exchange via 280+ tools — ZPA, ZIA, ZDX, ZCC, EASM, and more.",
|
|
806
|
+
"pkg": "@modelcontextprotocol/server-zscaler-zero-trust-exchange",
|
|
807
|
+
"author": "zscaler",
|
|
808
|
+
"fields": []
|
|
809
|
+
},
|
|
810
|
+
"smartbear-mcp": {
|
|
811
|
+
"name": "SmartBear MCP",
|
|
812
|
+
"desc": "MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow, QTM4J.",
|
|
813
|
+
"pkg": "@modelcontextprotocol/server-smartbear-mcp",
|
|
814
|
+
"author": "SmartBear",
|
|
815
|
+
"fields": []
|
|
816
|
+
},
|
|
817
|
+
"contextstream-mcp-server": {
|
|
818
|
+
"name": "ContextStream MCP Server",
|
|
819
|
+
"desc": "ContextStream MCP server for code context, memory, search, and AI tools.",
|
|
820
|
+
"pkg": "@modelcontextprotocol/server-contextstream-mcp-server",
|
|
821
|
+
"author": "contextstream",
|
|
822
|
+
"fields": []
|
|
823
|
+
},
|
|
824
|
+
"promptschat-mcp-server": {
|
|
825
|
+
"name": "prompts.chat MCP Server",
|
|
826
|
+
"desc": "Search and retrieve AI prompts from prompts.chat, the social platform for AI prompts.",
|
|
827
|
+
"pkg": "@modelcontextprotocol/server-promptschat-mcp-server",
|
|
828
|
+
"author": "f",
|
|
829
|
+
"fields": []
|
|
830
|
+
},
|
|
831
|
+
"pubnub-mcp-server": {
|
|
832
|
+
"name": "PubNub MCP Server",
|
|
833
|
+
"desc": "PubNub Model Context Protocol MCP Server for Cursor and Claude",
|
|
834
|
+
"pkg": "@modelcontextprotocol/server-pubnub-mcp-server",
|
|
835
|
+
"author": "pubnub",
|
|
836
|
+
"fields": []
|
|
837
|
+
},
|
|
838
|
+
"justcall-mcp-server": {
|
|
839
|
+
"name": "JustCall MCP Server",
|
|
840
|
+
"desc": "JustCall MCP Server enables LLMs and AI agents to make voice calls and send SMS via JustCall APIs.",
|
|
841
|
+
"pkg": "@modelcontextprotocol/server-justcall-mcp-server",
|
|
842
|
+
"author": "saaslabsco",
|
|
843
|
+
"fields": []
|
|
844
|
+
},
|
|
845
|
+
"the-mcp-server-for-goreleaser": {
|
|
846
|
+
"name": "The MCP server for GoReleaser",
|
|
847
|
+
"desc": "GoReleaser MCP server",
|
|
848
|
+
"pkg": "@modelcontextprotocol/server-the-mcp-server-for-goreleaser",
|
|
849
|
+
"author": "goreleaser",
|
|
850
|
+
"fields": []
|
|
851
|
+
},
|
|
852
|
+
"dynatrace-managed": {
|
|
853
|
+
"name": "Dynatrace Managed",
|
|
854
|
+
"desc": "MCP server for Dynatrace Managed to access logs, events, and metrics.",
|
|
855
|
+
"pkg": "@modelcontextprotocol/server-dynatrace-managed",
|
|
856
|
+
"author": "dynatrace-oss",
|
|
857
|
+
"fields": [
|
|
858
|
+
{
|
|
859
|
+
"type": "env",
|
|
860
|
+
"key": "DT_ENVIRONMENT",
|
|
861
|
+
"prompt": " Enter Dynatrace Managed Environment URL: ",
|
|
862
|
+
"required": true
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"type": "env",
|
|
866
|
+
"key": "DT_PLATFORM_TOKEN",
|
|
867
|
+
"prompt": " Enter Dynatrace Platform Token: ",
|
|
868
|
+
"required": true
|
|
869
|
+
}
|
|
870
|
+
]
|
|
871
|
+
},
|
|
872
|
+
"rigour": {
|
|
873
|
+
"name": "Rigour",
|
|
874
|
+
"desc": "Quality gates for AI agents. Lint, test, build checks with memory persistence.",
|
|
875
|
+
"pkg": "rigour",
|
|
876
|
+
"author": "rigour-labs",
|
|
877
|
+
"fields": []
|
|
878
|
+
},
|
|
879
|
+
"launchdarkly": {
|
|
880
|
+
"name": "Launchdarkly",
|
|
881
|
+
"desc": "Official LaunchDarkly MCP Server for feature flag management and experimentation. Enables AI agents to interact with LaunchDarkly APIs for managing feature flags, AI configs, targeting rules, and gradual rollouts across multiple environments.",
|
|
882
|
+
"pkg": "@launchdarkly/mcp-server",
|
|
883
|
+
"author": "launchdarkly",
|
|
884
|
+
"fields": [
|
|
885
|
+
{
|
|
886
|
+
"type": "env",
|
|
887
|
+
"key": "LAUNCHDARKLY_ACCESS_TOKEN",
|
|
888
|
+
"prompt": " Enter LAUNCHDARKLY_ACCESS_TOKEN: ",
|
|
889
|
+
"required": true
|
|
890
|
+
}
|
|
891
|
+
]
|
|
892
|
+
},
|
|
893
|
+
"venomseven-nslookup": {
|
|
894
|
+
"name": "Venomseven Nslookup",
|
|
895
|
+
"desc": "DNS lookups, health reports, SSL certs, security scans, GEO scoring, uptime checks",
|
|
896
|
+
"pkg": "mcp-proxy",
|
|
897
|
+
"author": "NsLookup-io",
|
|
898
|
+
"fields": []
|
|
899
|
+
},
|
|
900
|
+
"ui5-webcomponents": {
|
|
901
|
+
"name": "UI5 Webcomponents",
|
|
902
|
+
"desc": "MCP server for UI5 Web Components development assistance",
|
|
903
|
+
"pkg": "@ui5/webcomponents-mcp-server",
|
|
904
|
+
"author": "UI5",
|
|
905
|
+
"fields": []
|
|
906
|
+
},
|
|
907
|
+
"stack-overflow-mcp-server": {
|
|
908
|
+
"name": "Stack Overflow MCP Server",
|
|
909
|
+
"desc": "Access Stack Overflow's trusted and verified technical questions and answers.",
|
|
910
|
+
"pkg": "@stackexchange/mcp-server",
|
|
911
|
+
"author": "StackExchange",
|
|
912
|
+
"fields": []
|
|
913
|
+
},
|
|
914
|
+
"port": {
|
|
915
|
+
"name": "Port",
|
|
916
|
+
"desc": "Port.io mcp server",
|
|
917
|
+
"pkg": "port",
|
|
918
|
+
"author": "port-labs",
|
|
919
|
+
"fields": []
|
|
920
|
+
},
|
|
921
|
+
"wix": {
|
|
922
|
+
"name": "Wix",
|
|
923
|
+
"desc": "A Model Context Protocol server for Wix AI tools",
|
|
924
|
+
"pkg": "wix",
|
|
925
|
+
"author": "wix",
|
|
926
|
+
"fields": []
|
|
927
|
+
},
|
|
928
|
+
"sourcegraph-mcp-server": {
|
|
929
|
+
"name": "Sourcegraph MCP Server",
|
|
930
|
+
"desc": "Sourcegraph code search, semantic search, go-to-definition, find-references, and diff search.",
|
|
931
|
+
"pkg": "sourcegraph-mcp-server",
|
|
932
|
+
"author": "sourcegraph-community",
|
|
933
|
+
"fields": []
|
|
934
|
+
},
|
|
935
|
+
"axiom": {
|
|
936
|
+
"name": "Axiom",
|
|
937
|
+
"desc": "List datasets, schemas, run APL queries, and use prompts for exploration, anomalies, and monitoring.",
|
|
938
|
+
"pkg": "axiom",
|
|
939
|
+
"author": "axiomhq",
|
|
940
|
+
"fields": [
|
|
941
|
+
{
|
|
942
|
+
"type": "env",
|
|
943
|
+
"key": "AXIOM_TOKEN",
|
|
944
|
+
"prompt": " Enter AXIOM_TOKEN: ",
|
|
945
|
+
"required": true
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"type": "env",
|
|
949
|
+
"key": "AXIOM_ORG_ID",
|
|
950
|
+
"prompt": " Enter AXIOM_ORG_ID (optional): ",
|
|
951
|
+
"required": false
|
|
952
|
+
}
|
|
953
|
+
]
|
|
954
|
+
},
|
|
955
|
+
"dev-box": {
|
|
956
|
+
"name": "Dev Box",
|
|
957
|
+
"desc": "This server enables natural language interactions for developer-focused operations like managing Dev Boxes, configurations, and pools.",
|
|
958
|
+
"pkg": "@microsoft/devbox-mcp",
|
|
959
|
+
"author": "microsoft",
|
|
960
|
+
"fields": []
|
|
961
|
+
},
|
|
962
|
+
"vercel": {
|
|
963
|
+
"name": "Vercel",
|
|
964
|
+
"desc": "An MCP server for Vercel",
|
|
965
|
+
"pkg": "mcp-server-vercel",
|
|
966
|
+
"author": "vercel",
|
|
967
|
+
"fields": []
|
|
968
|
+
},
|
|
969
|
+
"jfrog-remote-mcp-server": {
|
|
970
|
+
"name": "JFrog Remote MCP Server",
|
|
971
|
+
"desc": "MCP Server for JFrog, providing tools for development and artifact management.",
|
|
972
|
+
"pkg": "mcp-remote",
|
|
973
|
+
"author": "jfrog",
|
|
974
|
+
"fields": []
|
|
975
|
+
},
|
|
976
|
+
"stackhawk": {
|
|
977
|
+
"name": "Stackhawk",
|
|
978
|
+
"desc": "An MCP server that provides interaction with StackHawk's security scanning platform.",
|
|
979
|
+
"pkg": "@modelcontextprotocol/sdk",
|
|
980
|
+
"author": "stackhawk",
|
|
981
|
+
"fields": []
|
|
982
|
+
},
|
|
983
|
+
"intercom": {
|
|
984
|
+
"name": "Intercom",
|
|
985
|
+
"desc": "Enable AI agents to securely access and interact with your Intercom data whenever helpful.",
|
|
986
|
+
"pkg": "@intercom/messenger-js-sdk",
|
|
987
|
+
"author": "intercom",
|
|
988
|
+
"fields": [
|
|
989
|
+
{
|
|
990
|
+
"type": "env",
|
|
991
|
+
"key": "INTERCOM_ACCESS_TOKEN",
|
|
992
|
+
"prompt": " Enter INTERCOM_ACCESS_TOKEN: ",
|
|
993
|
+
"required": true
|
|
994
|
+
}
|
|
995
|
+
]
|
|
996
|
+
},
|
|
997
|
+
"anima-mcp-server": {
|
|
998
|
+
"name": "Anima MCP Server",
|
|
999
|
+
"desc": "Connect AI coding agents to Anima Playground, Figma, and your design system.",
|
|
1000
|
+
"pkg": "@modelcontextprotocol/sdk",
|
|
1001
|
+
"author": "AnimaApp",
|
|
1002
|
+
"fields": []
|
|
1003
|
+
},
|
|
1004
|
+
"box": {
|
|
1005
|
+
"name": "Box",
|
|
1006
|
+
"desc": "Securely connect AI agents to your enterprise content in Box",
|
|
1007
|
+
"pkg": "mcp-box-minimal",
|
|
1008
|
+
"author": "box",
|
|
1009
|
+
"fields": [
|
|
1010
|
+
{
|
|
1011
|
+
"type": "env",
|
|
1012
|
+
"key": "BOX_DEVELOPER_TOKEN",
|
|
1013
|
+
"prompt": " Enter BOX_DEVELOPER_TOKEN: ",
|
|
1014
|
+
"required": true
|
|
1015
|
+
}
|
|
1016
|
+
]
|
|
1017
|
+
},
|
|
1018
|
+
"holomodular-servicebricks": {
|
|
1019
|
+
"name": "Holomodular Servicebricks",
|
|
1020
|
+
"desc": "Generate a ServiceBricks C# .NET microservice as a ZIP file.",
|
|
1021
|
+
"pkg": "@modelcontextprotocol/sdk",
|
|
1022
|
+
"author": "holomodular",
|
|
1023
|
+
"fields": []
|
|
1024
|
+
},
|
|
1025
|
+
"livecheck-ai": {
|
|
1026
|
+
"name": "LiveCheck AI",
|
|
1027
|
+
"desc": "Secure MCP runtime server for scanning and autofixing code issues",
|
|
1028
|
+
"pkg": "@ai-sdk/mcp",
|
|
1029
|
+
"author": "qualityclouds",
|
|
1030
|
+
"fields": []
|
|
1031
|
+
},
|
|
1032
|
+
"wopee": {
|
|
1033
|
+
"name": "Wopee",
|
|
1034
|
+
"desc": "AI testing agents for web apps — dispatch test runs, crawls, fetch artifacts and status.",
|
|
1035
|
+
"pkg": "wopee-mcp",
|
|
1036
|
+
"author": "Wopee-io",
|
|
1037
|
+
"fields": []
|
|
1038
|
+
},
|
|
1039
|
+
"shipstatic": {
|
|
1040
|
+
"name": "ShipStatic",
|
|
1041
|
+
"desc": "Deploy websites from AI agents. Free at mcp.shipstatic.com. Install for the full toolset.",
|
|
1042
|
+
"pkg": "@shipstatic/mcp",
|
|
1043
|
+
"author": "shipstatic",
|
|
1044
|
+
"fields": []
|
|
1045
|
+
},
|
|
1046
|
+
"guru-remote-mcp-server": {
|
|
1047
|
+
"name": "Guru Remote MCP Server",
|
|
1048
|
+
"desc": "Guru MCP Server - Connect AI tools to your Guru knowledge base",
|
|
1049
|
+
"pkg": "mcp-remote",
|
|
1050
|
+
"author": "guruhq",
|
|
1051
|
+
"fields": []
|
|
1052
|
+
},
|
|
1053
|
+
"microsoft-sentinel-data-exploration": {
|
|
1054
|
+
"name": "Microsoft Sentinel Data Exploration",
|
|
1055
|
+
"desc": "Find relevant security data from Sentinel data lake for building effective agents. More:aka.ms/s/de",
|
|
1056
|
+
"pkg": "@playwright/mcp",
|
|
1057
|
+
"author": "microsoft",
|
|
1058
|
+
"fields": []
|
|
1059
|
+
},
|
|
1060
|
+
"oakallow": {
|
|
1061
|
+
"name": "Oakallow",
|
|
1062
|
+
"desc": "Runtime permission, approval, and audit layer for AI agent tool execution.",
|
|
1063
|
+
"pkg": "mcp-proxy",
|
|
1064
|
+
"author": "oakallow",
|
|
1065
|
+
"fields": []
|
|
1066
|
+
},
|
|
1067
|
+
"shipbook": {
|
|
1068
|
+
"name": "Shipbook",
|
|
1069
|
+
"desc": "Debug production issues using Shipbook logs and Loglytics error insights.",
|
|
1070
|
+
"pkg": "mcp-proxy",
|
|
1071
|
+
"author": "ShipBook",
|
|
1072
|
+
"fields": []
|
|
1073
|
+
},
|
|
1074
|
+
"lucid": {
|
|
1075
|
+
"name": "Lucid",
|
|
1076
|
+
"desc": "Lucid’s connector creates diagrams, searches, edits, shares, and retrieves docs to summarize.",
|
|
1077
|
+
"pkg": "mcp-proxy",
|
|
1078
|
+
"author": "lucidsoftware",
|
|
1079
|
+
"fields": []
|
|
1080
|
+
},
|
|
1081
|
+
"git": {
|
|
1082
|
+
"name": "Git",
|
|
1083
|
+
"desc": "Read, search, and manipulate Git repositories.",
|
|
1084
|
+
"pkg": "mcp-server-git",
|
|
1085
|
+
"author": "modelcontextprotocol",
|
|
1086
|
+
"fields": []
|
|
1087
|
+
},
|
|
1088
|
+
"time": {
|
|
1089
|
+
"name": "Time",
|
|
1090
|
+
"desc": "Get current time, convert timezones, and display local times.",
|
|
1091
|
+
"pkg": "@guanxiong/mcp-server-time",
|
|
1092
|
+
"author": "modelcontextprotocol",
|
|
1093
|
+
"fields": []
|
|
1094
|
+
},
|
|
1095
|
+
"sequentialthinking": {
|
|
1096
|
+
"name": "Sequential Thinking",
|
|
1097
|
+
"desc": "A thinking tool for LLMs to think through problem solving steps sequentially.",
|
|
1098
|
+
"pkg": "@modelcontextprotocol/server-sequential-thinking",
|
|
1099
|
+
"author": "modelcontextprotocol",
|
|
1100
|
+
"fields": []
|
|
1101
|
+
}
|
|
1102
|
+
}
|