-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmcp-integration-tools.js
More file actions
434 lines (402 loc) · 12.2 KB
/
mcp-integration-tools.js
File metadata and controls
434 lines (402 loc) · 12.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
import { getRedisAdapter } from './core/integrations/redis/redis-adapter.js';
import { getKnowledgeStore } from './core/integrations/knowledge/knowledge-store.js';
import { getBrowserController } from './core/integrations/browser/browser-controller.js';
import { isFeatureEnabled } from './core/config/project-config-loader.js';
export function getIntegrationTools() {
const tools = [];
if (isFeatureEnabled('redis')) {
tools.push(...getRedisTools());
}
if (isFeatureEnabled('knowledgeBase')) {
tools.push(...getKnowledgeTools());
}
if (isFeatureEnabled('browser')) {
tools.push(...getBrowserTools());
}
return tools;
}
function getRedisTools() {
return [
{
name: 'redis_get',
description: 'Get a value from Redis cache',
inputSchema: {
type: 'object',
properties: {
key: { type: 'string', description: 'Cache key' }
},
required: ['key']
}
},
{
name: 'redis_set',
description: 'Set a value in Redis cache',
inputSchema: {
type: 'object',
properties: {
key: { type: 'string', description: 'Cache key' },
value: { type: 'string', description: 'Value to store' },
ttl: { type: 'number', description: 'Time to live in seconds (optional)' }
},
required: ['key', 'value']
}
},
{
name: 'redis_del',
description: 'Delete a key from Redis cache',
inputSchema: {
type: 'object',
properties: {
key: { type: 'string', description: 'Cache key' }
},
required: ['key']
}
},
{
name: 'redis_exists',
description: 'Check if a key exists in Redis',
inputSchema: {
type: 'object',
properties: {
key: { type: 'string', description: 'Cache key' }
},
required: ['key']
}
},
{
name: 'redis_keys',
description: 'Find keys matching a pattern in Redis',
inputSchema: {
type: 'object',
properties: {
pattern: { type: 'string', description: 'Pattern to match (use * for wildcard)' }
},
required: ['pattern']
}
}
];
}
function getKnowledgeTools() {
return [
{
name: 'store_knowledge',
description: 'Store structured knowledge in the knowledge base',
inputSchema: {
type: 'object',
properties: {
data: {
type: 'object',
properties: {
title: { type: 'string' },
content: { type: 'string' },
tags: { type: 'array', items: { type: 'string' } }
}
},
metadata: {
type: 'object',
properties: {
type: { type: 'string', description: 'Type of knowledge (document, snippet, etc.)' },
id: { type: 'string', description: 'Optional custom ID' }
}
}
},
required: ['data']
}
},
{
name: 'search_knowledge',
description: 'Search the knowledge base',
inputSchema: {
type: 'object',
properties: {
query: { type: 'string', description: 'Search query' },
type: { type: 'string', description: 'Filter by type (optional)' },
tags: { type: 'array', items: { type: 'string' }, description: 'Filter by tags (optional)' },
limit: { type: 'number', description: 'Max results (default 10)' }
}
}
},
{
name: 'get_knowledge',
description: 'Get a specific knowledge entry by ID',
inputSchema: {
type: 'object',
properties: {
id: { type: 'string', description: 'Knowledge entry ID' }
},
required: ['id']
}
},
{
name: 'update_knowledge',
description: 'Update a knowledge entry',
inputSchema: {
type: 'object',
properties: {
id: { type: 'string', description: 'Knowledge entry ID' },
data: { type: 'object', description: 'Fields to update' }
},
required: ['id', 'data']
}
},
{
name: 'delete_knowledge',
description: 'Delete a knowledge entry',
inputSchema: {
type: 'object',
properties: {
id: { type: 'string', description: 'Knowledge entry ID' }
},
required: ['id']
}
}
];
}
function getBrowserTools() {
return [
{
name: 'browser_open',
description: 'Open a browser session and navigate to URL',
inputSchema: {
type: 'object',
properties: {
sessionId: { type: 'string', description: 'Session ID for the browser' },
url: { type: 'string', description: 'URL to navigate to' }
},
required: ['sessionId', 'url']
}
},
{
name: 'browser_navigate',
description: 'Navigate to a URL in an existing session',
inputSchema: {
type: 'object',
properties: {
sessionId: { type: 'string', description: 'Session ID' },
url: { type: 'string', description: 'URL to navigate to' }
},
required: ['sessionId', 'url']
}
},
{
name: 'browser_get_content',
description: 'Get page content',
inputSchema: {
type: 'object',
properties: {
sessionId: { type: 'string', description: 'Session ID' },
format: { type: 'string', enum: ['text', 'html'], description: 'Content format' }
},
required: ['sessionId']
}
},
{
name: 'browser_click',
description: 'Click an element by CSS selector',
inputSchema: {
type: 'object',
properties: {
sessionId: { type: 'string', description: 'Session ID' },
selector: { type: 'string', description: 'CSS selector' }
},
required: ['sessionId', 'selector']
}
},
{
name: 'browser_fill',
description: 'Fill an input field',
inputSchema: {
type: 'object',
properties: {
sessionId: { type: 'string', description: 'Session ID' },
selector: { type: 'string', description: 'Input CSS selector' },
value: { type: 'string', description: 'Value to fill' }
},
required: ['sessionId', 'selector', 'value']
}
},
{
name: 'browser_evaluate',
description: 'Execute JavaScript in the browser context',
inputSchema: {
type: 'object',
properties: {
sessionId: { type: 'string', description: 'Session ID' },
script: { type: 'string', description: 'JavaScript code to execute' }
},
required: ['sessionId', 'script']
}
},
{
name: 'browser_screenshot',
description: 'Take a screenshot of the current page',
inputSchema: {
type: 'object',
properties: {
sessionId: { type: 'string', description: 'Session ID' },
fullPage: { type: 'boolean', description: 'Capture full page' }
},
required: ['sessionId']
}
},
{
name: 'browser_close',
description: 'Close a browser session',
inputSchema: {
type: 'object',
properties: {
sessionId: { type: 'string', description: 'Session ID to close' }
},
required: ['sessionId']
}
},
{
name: 'browser_list_sessions',
description: 'List active browser sessions',
inputSchema: {
type: 'object',
properties: {}
}
}
];
}
export async function handleIntegrationTool(name, args) {
switch (name) {
case 'redis_get':
return handleRedisGet(args);
case 'redis_set':
return handleRedisSet(args);
case 'redis_del':
return handleRedisDel(args);
case 'redis_exists':
return handleRedisExists(args);
case 'redis_keys':
return handleRedisKeys(args);
case 'store_knowledge':
return handleStoreKnowledge(args);
case 'search_knowledge':
return handleSearchKnowledge(args);
case 'get_knowledge':
return handleGetKnowledge(args);
case 'update_knowledge':
return handleUpdateKnowledge(args);
case 'delete_knowledge':
return handleDeleteKnowledge(args);
case 'browser_open':
return handleBrowserOpen(args);
case 'browser_navigate':
return handleBrowserNavigate(args);
case 'browser_get_content':
return handleBrowserGetContent(args);
case 'browser_click':
return handleBrowserClick(args);
case 'browser_fill':
return handleBrowserFill(args);
case 'browser_evaluate':
return handleBrowserEvaluate(args);
case 'browser_screenshot':
return handleBrowserScreenshot(args);
case 'browser_close':
return handleBrowserClose(args);
case 'browser_list_sessions':
return handleBrowserListSessions(args);
default:
throw new Error(`Unknown integration tool: ${name}`);
}
}
async function handleRedisGet(args) {
const redis = await getRedisAdapter();
const value = await redis.get(args.key);
return { key: args.key, value, exists: value !== null };
}
async function handleRedisSet(args) {
const redis = await getRedisAdapter();
await redis.set(args.key, args.value, args.ttl);
return { success: true, key: args.key };
}
async function handleRedisDel(args) {
const redis = await getRedisAdapter();
await redis.del(args.key);
return { success: true, key: args.key };
}
async function handleRedisExists(args) {
const redis = await getRedisAdapter();
const exists = await redis.exists(args.key);
return { key: args.key, exists: exists > 0 };
}
async function handleRedisKeys(args) {
const redis = await getRedisAdapter();
const keys = await redis.keys(args.pattern);
return { pattern: args.pattern, keys };
}
async function handleStoreKnowledge(args) {
const store = await getKnowledgeStore();
const result = await store.store(args.data, args.metadata || {});
return result;
}
async function handleSearchKnowledge(args) {
const store = await getKnowledgeStore();
const results = await store.query(args);
return { results, count: results.length };
}
async function handleGetKnowledge(args) {
const store = await getKnowledgeStore();
const result = await store.get(args.id);
return result || { error: 'Not found' };
}
async function handleUpdateKnowledge(args) {
const store = await getKnowledgeStore();
const result = await store.update(args.id, args.data, args.metadata || {});
return result;
}
async function handleDeleteKnowledge(args) {
const store = await getKnowledgeStore();
const result = await store.delete(args.id);
return result;
}
async function handleBrowserOpen(args) {
const browser = await getBrowserController();
const result = await browser.open(args.sessionId, args.url);
return result;
}
async function handleBrowserNavigate(args) {
const browser = await getBrowserController();
const result = await browser.navigate(args.sessionId, args.url);
return result;
}
async function handleBrowserGetContent(args) {
const browser = await getBrowserController();
const content = await browser.getPageContent(args.sessionId, args.format || 'text');
return { sessionId: args.sessionId, content };
}
async function handleBrowserClick(args) {
const browser = await getBrowserController();
const result = await browser.clickElement(args.sessionId, args.selector);
return result;
}
async function handleBrowserFill(args) {
const browser = await getBrowserController();
const result = await browser.fillInput(args.sessionId, args.selector, args.value);
return result;
}
async function handleBrowserEvaluate(args) {
const browser = await getBrowserController();
const result = await browser.evaluateScript(args.sessionId, args.script);
return result;
}
async function handleBrowserScreenshot(args) {
const browser = await getBrowserController();
const result = await browser.takeScreenshot(args.sessionId, { fullPage: args.fullPage });
return result;
}
async function handleBrowserClose(args) {
const browser = await getBrowserController();
const result = await browser.closeSession(args.sessionId);
return result;
}
async function handleBrowserListSessions(args) {
const browser = await getBrowserController();
const sessions = browser.getActiveSessions();
return { sessions, count: sessions.length };
}
export default { getIntegrationTools, handleIntegrationTool };