@trops/dash-core 0.1.5 → 0.1.6
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/dist/mcp/mcpServerCatalog.json +319 -0
- package/package.json +2 -2
|
@@ -0,0 +1,319 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"servers": [
|
|
4
|
+
{
|
|
5
|
+
"id": "github",
|
|
6
|
+
"name": "GitHub",
|
|
7
|
+
"description": "Access GitHub repositories, issues, pull requests, and more via the GitHub API.",
|
|
8
|
+
"icon": "github",
|
|
9
|
+
"tags": ["developer", "git", "code"],
|
|
10
|
+
"mcpConfig": {
|
|
11
|
+
"transport": "stdio",
|
|
12
|
+
"command": "npx",
|
|
13
|
+
"args": ["-y", "@modelcontextprotocol/server-github"],
|
|
14
|
+
"envMapping": {
|
|
15
|
+
"GITHUB_PERSONAL_ACCESS_TOKEN": "token"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"credentialSchema": {
|
|
19
|
+
"token": {
|
|
20
|
+
"type": "text",
|
|
21
|
+
"displayName": "Personal Access Token",
|
|
22
|
+
"required": true,
|
|
23
|
+
"secret": true,
|
|
24
|
+
"instructions": "Generate a Personal Access Token at github.com/settings/tokens with the required scopes."
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"id": "slack",
|
|
30
|
+
"name": "Slack",
|
|
31
|
+
"description": "Send messages, read channels, and manage Slack workspaces.",
|
|
32
|
+
"icon": "slack",
|
|
33
|
+
"tags": ["communication", "messaging", "team"],
|
|
34
|
+
"mcpConfig": {
|
|
35
|
+
"transport": "stdio",
|
|
36
|
+
"command": "npx",
|
|
37
|
+
"args": ["-y", "@modelcontextprotocol/server-slack"],
|
|
38
|
+
"envMapping": {
|
|
39
|
+
"SLACK_BOT_TOKEN": "botToken",
|
|
40
|
+
"SLACK_TEAM_ID": "teamId"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"credentialSchema": {
|
|
44
|
+
"botToken": {
|
|
45
|
+
"type": "text",
|
|
46
|
+
"displayName": "Bot Token",
|
|
47
|
+
"required": true,
|
|
48
|
+
"secret": true,
|
|
49
|
+
"instructions": "Create a Slack app and install it to your workspace to get a Bot Token (xoxb-...)."
|
|
50
|
+
},
|
|
51
|
+
"teamId": {
|
|
52
|
+
"type": "text",
|
|
53
|
+
"displayName": "Team ID",
|
|
54
|
+
"required": true,
|
|
55
|
+
"secret": false,
|
|
56
|
+
"instructions": "Find your Team ID in Slack workspace settings."
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"id": "notion",
|
|
62
|
+
"name": "Notion",
|
|
63
|
+
"description": "Read and search Notion pages, databases, and comments.",
|
|
64
|
+
"icon": "book",
|
|
65
|
+
"tags": ["productivity", "notes", "wiki"],
|
|
66
|
+
"mcpConfig": {
|
|
67
|
+
"transport": "stdio",
|
|
68
|
+
"command": "npx",
|
|
69
|
+
"args": ["-y", "@notionhq/notion-mcp-server"],
|
|
70
|
+
"envMapping": {
|
|
71
|
+
"OPENAPI_MCP_HEADERS": "authHeader"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"credentialSchema": {
|
|
75
|
+
"authHeader": {
|
|
76
|
+
"type": "text",
|
|
77
|
+
"displayName": "API Key (as Authorization header JSON)",
|
|
78
|
+
"required": true,
|
|
79
|
+
"secret": true,
|
|
80
|
+
"instructions": "Create an integration at notion.so/my-integrations. Provide as JSON: {\"Authorization\": \"Bearer ntn_...\", \"Notion-Version\": \"2022-06-28\"}"
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"id": "brave-search",
|
|
86
|
+
"name": "Brave Search",
|
|
87
|
+
"description": "Search the web using the Brave Search API.",
|
|
88
|
+
"icon": "search",
|
|
89
|
+
"tags": ["search", "web", "research"],
|
|
90
|
+
"mcpConfig": {
|
|
91
|
+
"transport": "stdio",
|
|
92
|
+
"command": "npx",
|
|
93
|
+
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
|
|
94
|
+
"envMapping": {
|
|
95
|
+
"BRAVE_API_KEY": "apiKey"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"credentialSchema": {
|
|
99
|
+
"apiKey": {
|
|
100
|
+
"type": "text",
|
|
101
|
+
"displayName": "API Key",
|
|
102
|
+
"required": true,
|
|
103
|
+
"secret": true,
|
|
104
|
+
"instructions": "Get an API key from brave.com/search/api."
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"id": "filesystem",
|
|
110
|
+
"name": "Filesystem",
|
|
111
|
+
"description": "Read, write, and manage files on your local filesystem.",
|
|
112
|
+
"icon": "folder",
|
|
113
|
+
"tags": ["files", "local", "storage"],
|
|
114
|
+
"mcpConfig": {
|
|
115
|
+
"transport": "stdio",
|
|
116
|
+
"command": "npx",
|
|
117
|
+
"args": ["-y", "@modelcontextprotocol/server-filesystem"],
|
|
118
|
+
"envMapping": {}
|
|
119
|
+
},
|
|
120
|
+
"credentialSchema": {
|
|
121
|
+
"allowedPaths": {
|
|
122
|
+
"type": "text",
|
|
123
|
+
"displayName": "Allowed Paths",
|
|
124
|
+
"required": true,
|
|
125
|
+
"secret": false,
|
|
126
|
+
"instructions": "Comma-separated list of directory paths the server can access (e.g., /Users/you/Documents,/tmp)."
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"id": "postgres",
|
|
132
|
+
"name": "PostgreSQL",
|
|
133
|
+
"description": "Query and manage PostgreSQL databases.",
|
|
134
|
+
"icon": "database",
|
|
135
|
+
"tags": ["database", "sql", "data"],
|
|
136
|
+
"mcpConfig": {
|
|
137
|
+
"transport": "stdio",
|
|
138
|
+
"command": "npx",
|
|
139
|
+
"args": ["-y", "@modelcontextprotocol/server-postgres"],
|
|
140
|
+
"envMapping": {
|
|
141
|
+
"POSTGRES_CONNECTION_STRING": "connectionString"
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
"credentialSchema": {
|
|
145
|
+
"connectionString": {
|
|
146
|
+
"type": "text",
|
|
147
|
+
"displayName": "Connection String",
|
|
148
|
+
"required": true,
|
|
149
|
+
"secret": true,
|
|
150
|
+
"instructions": "PostgreSQL connection string (e.g., postgresql://user:password@localhost:5432/dbname)."
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"id": "linear",
|
|
156
|
+
"name": "Linear",
|
|
157
|
+
"description": "Manage Linear issues, projects, and teams.",
|
|
158
|
+
"icon": "clipboard-list",
|
|
159
|
+
"tags": ["project-management", "issues", "team"],
|
|
160
|
+
"mcpConfig": {
|
|
161
|
+
"transport": "stdio",
|
|
162
|
+
"command": "npx",
|
|
163
|
+
"args": ["-y", "mcp-linear"],
|
|
164
|
+
"envMapping": {
|
|
165
|
+
"LINEAR_API_KEY": "apiKey"
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
"credentialSchema": {
|
|
169
|
+
"apiKey": {
|
|
170
|
+
"type": "text",
|
|
171
|
+
"displayName": "API Key",
|
|
172
|
+
"required": true,
|
|
173
|
+
"secret": true,
|
|
174
|
+
"instructions": "Generate a Personal API Key in Linear Settings > API."
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"id": "memory",
|
|
180
|
+
"name": "Memory",
|
|
181
|
+
"description": "Persistent key-value memory storage using a knowledge graph.",
|
|
182
|
+
"icon": "brain",
|
|
183
|
+
"tags": ["storage", "memory", "knowledge"],
|
|
184
|
+
"mcpConfig": {
|
|
185
|
+
"transport": "stdio",
|
|
186
|
+
"command": "npx",
|
|
187
|
+
"args": ["-y", "@modelcontextprotocol/server-memory"],
|
|
188
|
+
"envMapping": {}
|
|
189
|
+
},
|
|
190
|
+
"credentialSchema": {}
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"id": "google-drive",
|
|
194
|
+
"name": "Google Drive",
|
|
195
|
+
"description": "List, read, and search files in Google Drive with automatic format conversion for Docs, Sheets, and Slides.",
|
|
196
|
+
"icon": "google-drive",
|
|
197
|
+
"tags": ["google", "files", "cloud-storage"],
|
|
198
|
+
"mcpConfig": {
|
|
199
|
+
"transport": "stdio",
|
|
200
|
+
"command": "npx",
|
|
201
|
+
"args": ["-y", "@modelcontextprotocol/server-gdrive"],
|
|
202
|
+
"envMapping": {
|
|
203
|
+
"GDRIVE_CREDENTIALS_PATH": "credentialsPath",
|
|
204
|
+
"GDRIVE_TOKEN_PATH": "tokenPath"
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
"credentialSchema": {
|
|
208
|
+
"credentialsPath": {
|
|
209
|
+
"type": "text",
|
|
210
|
+
"displayName": "OAuth Credentials File Path",
|
|
211
|
+
"required": true,
|
|
212
|
+
"secret": false,
|
|
213
|
+
"instructions": "Path to your Google OAuth credentials.json file. Create one at console.cloud.google.com > APIs & Services > Credentials > OAuth 2.0 Client IDs."
|
|
214
|
+
},
|
|
215
|
+
"tokenPath": {
|
|
216
|
+
"type": "text",
|
|
217
|
+
"displayName": "Token File Path",
|
|
218
|
+
"required": false,
|
|
219
|
+
"secret": false,
|
|
220
|
+
"instructions": "Path where the OAuth token will be stored (e.g., ~/.config/gdrive-mcp/token.json). Created automatically on first auth."
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"id": "gmail",
|
|
226
|
+
"name": "Gmail",
|
|
227
|
+
"description": "Search, read, send, and manage Gmail messages and threads.",
|
|
228
|
+
"icon": "envelope",
|
|
229
|
+
"tags": ["google", "email", "communication"],
|
|
230
|
+
"mcpConfig": {
|
|
231
|
+
"transport": "stdio",
|
|
232
|
+
"command": "npx",
|
|
233
|
+
"args": ["-y", "@gongrzhe/server-gmail-autoauth-mcp"],
|
|
234
|
+
"envMapping": {
|
|
235
|
+
"GMAIL_CREDENTIALS_PATH": "credentialsPath",
|
|
236
|
+
"GMAIL_TOKEN_PATH": "tokenPath"
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
"credentialSchema": {
|
|
240
|
+
"credentialsPath": {
|
|
241
|
+
"type": "text",
|
|
242
|
+
"displayName": "OAuth Credentials File Path",
|
|
243
|
+
"required": true,
|
|
244
|
+
"secret": false,
|
|
245
|
+
"instructions": "Path to your Google OAuth credentials.json file. Enable the Gmail API at console.cloud.google.com, then create OAuth 2.0 credentials."
|
|
246
|
+
},
|
|
247
|
+
"tokenPath": {
|
|
248
|
+
"type": "text",
|
|
249
|
+
"displayName": "Token File Path",
|
|
250
|
+
"required": false,
|
|
251
|
+
"secret": false,
|
|
252
|
+
"instructions": "Path where the OAuth token will be stored (e.g., ~/.config/gmail-mcp/token.json). Created automatically on first auth."
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"id": "google-calendar",
|
|
258
|
+
"name": "Google Calendar",
|
|
259
|
+
"description": "List calendars, create, read, update, and delete events in Google Calendar.",
|
|
260
|
+
"icon": "calendar-alt",
|
|
261
|
+
"tags": ["google", "calendar", "scheduling"],
|
|
262
|
+
"mcpConfig": {
|
|
263
|
+
"transport": "stdio",
|
|
264
|
+
"command": "npx",
|
|
265
|
+
"args": ["-y", "@cocal/google-calendar-mcp"],
|
|
266
|
+
"envMapping": {
|
|
267
|
+
"GOOGLE_CREDENTIALS_PATH": "credentialsPath",
|
|
268
|
+
"GOOGLE_TOKEN_PATH": "tokenPath"
|
|
269
|
+
}
|
|
270
|
+
},
|
|
271
|
+
"credentialSchema": {
|
|
272
|
+
"credentialsPath": {
|
|
273
|
+
"type": "text",
|
|
274
|
+
"displayName": "OAuth Credentials File Path",
|
|
275
|
+
"required": true,
|
|
276
|
+
"secret": false,
|
|
277
|
+
"instructions": "Path to your Google OAuth credentials.json file. Enable the Google Calendar API at console.cloud.google.com, then create OAuth 2.0 credentials."
|
|
278
|
+
},
|
|
279
|
+
"tokenPath": {
|
|
280
|
+
"type": "text",
|
|
281
|
+
"displayName": "Token File Path",
|
|
282
|
+
"required": false,
|
|
283
|
+
"secret": false,
|
|
284
|
+
"instructions": "Path where the OAuth token will be stored (e.g., ~/.config/gcal-mcp/token.json). Created automatically on first auth."
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"id": "algolia",
|
|
290
|
+
"name": "Algolia",
|
|
291
|
+
"description": "Search, browse, and manage Algolia indices via Algolia's hosted MCP endpoint. No local process needed.",
|
|
292
|
+
"icon": "search-plus",
|
|
293
|
+
"tags": ["search", "data", "analytics"],
|
|
294
|
+
"mcpConfig": {
|
|
295
|
+
"transport": "streamable_http",
|
|
296
|
+
"url": "{{url}}",
|
|
297
|
+
"headerTemplate": {
|
|
298
|
+
"Authorization": "Bearer {{apiKey}}"
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
"credentialSchema": {
|
|
302
|
+
"url": {
|
|
303
|
+
"type": "text",
|
|
304
|
+
"displayName": "MCP Server URL",
|
|
305
|
+
"required": true,
|
|
306
|
+
"secret": false,
|
|
307
|
+
"instructions": "Your Algolia MCP endpoint URL from the Algolia dashboard (e.g., https://mcp.us.algolia.com/1/abc123/mcp)."
|
|
308
|
+
},
|
|
309
|
+
"apiKey": {
|
|
310
|
+
"type": "text",
|
|
311
|
+
"displayName": "API Key",
|
|
312
|
+
"required": true,
|
|
313
|
+
"secret": true,
|
|
314
|
+
"instructions": "Your Algolia Search API Key, found in the Algolia dashboard under API Keys."
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
]
|
|
319
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trops/dash-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Core framework for Dash dashboard applications",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"scripts": {
|
|
20
20
|
"build": "npm run build:renderer && npm run build:electron",
|
|
21
21
|
"build:renderer": "rollup -c rollup.config.renderer.mjs",
|
|
22
|
-
"build:electron": "rollup -c rollup.config.electron.mjs",
|
|
22
|
+
"build:electron": "rollup -c rollup.config.electron.mjs && mkdir -p dist/mcp && cp electron/mcp/mcpServerCatalog.json dist/mcp/",
|
|
23
23
|
"clean": "rm -rf dist",
|
|
24
24
|
"prepublishOnly": "npm run clean && npm run build",
|
|
25
25
|
"prettify": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\" \"electron/**/*.js\""
|