@missionsquad/mcp-defillama 1.0.0 → 1.2.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/dist/tools.d.ts CHANGED
@@ -4,11 +4,21 @@ export declare const tools: ({
4
4
  inputSchema: {
5
5
  type: string;
6
6
  properties: {
7
+ full: {
8
+ type: string;
9
+ description: string;
10
+ };
11
+ limit: {
12
+ type: string;
13
+ description: string;
14
+ };
7
15
  protocol?: undefined;
8
- chain?: undefined;
9
16
  coins?: undefined;
10
17
  timestamp?: undefined;
11
- asset?: undefined;
18
+ searchWidth?: undefined;
19
+ lookForward?: undefined;
20
+ period?: undefined;
21
+ chain?: undefined;
12
22
  };
13
23
  required: never[];
14
24
  };
@@ -18,13 +28,28 @@ export declare const tools: ({
18
28
  inputSchema: {
19
29
  type: string;
20
30
  properties: {
31
+ full: {
32
+ type: string;
33
+ description: string;
34
+ };
35
+ includeTokens: {
36
+ type: string;
37
+ description: string;
38
+ };
39
+ points: {
40
+ type: string;
41
+ description: string;
42
+ };
21
43
  protocol: {
22
44
  type: string;
45
+ description: string;
23
46
  };
24
- chain?: undefined;
25
47
  coins?: undefined;
26
48
  timestamp?: undefined;
27
- asset?: undefined;
49
+ searchWidth?: undefined;
50
+ lookForward?: undefined;
51
+ period?: undefined;
52
+ chain?: undefined;
28
53
  };
29
54
  required: string[];
30
55
  };
@@ -34,13 +59,89 @@ export declare const tools: ({
34
59
  inputSchema: {
35
60
  type: string;
36
61
  properties: {
62
+ full: {
63
+ type: string;
64
+ description: string;
65
+ };
66
+ points: {
67
+ type: string;
68
+ description: string;
69
+ };
70
+ protocol?: undefined;
71
+ coins?: undefined;
72
+ timestamp?: undefined;
73
+ searchWidth?: undefined;
74
+ lookForward?: undefined;
75
+ period?: undefined;
76
+ chain?: undefined;
77
+ };
78
+ required: never[];
79
+ };
80
+ } | {
81
+ name: string;
82
+ description: string;
83
+ inputSchema: {
84
+ type: string;
85
+ properties: {
86
+ full: {
87
+ type: string;
88
+ description: string;
89
+ };
90
+ points: {
91
+ type: string;
92
+ description: string;
93
+ };
37
94
  chain: {
38
95
  type: string;
96
+ description: string;
39
97
  };
40
98
  protocol?: undefined;
41
99
  coins?: undefined;
42
100
  timestamp?: undefined;
43
- asset?: undefined;
101
+ searchWidth?: undefined;
102
+ lookForward?: undefined;
103
+ period?: undefined;
104
+ };
105
+ required: string[];
106
+ };
107
+ } | {
108
+ name: string;
109
+ description: string;
110
+ inputSchema: {
111
+ type: string;
112
+ properties: {
113
+ protocol: {
114
+ type: string;
115
+ description: string;
116
+ };
117
+ coins?: undefined;
118
+ timestamp?: undefined;
119
+ searchWidth?: undefined;
120
+ lookForward?: undefined;
121
+ period?: undefined;
122
+ chain?: undefined;
123
+ };
124
+ required: string[];
125
+ };
126
+ } | {
127
+ name: string;
128
+ description: string;
129
+ inputSchema: {
130
+ type: string;
131
+ properties: {
132
+ coins: {
133
+ type: string;
134
+ description: string;
135
+ items: {
136
+ type: string;
137
+ };
138
+ };
139
+ protocol?: undefined;
140
+ timestamp?: undefined;
141
+ searchWidth?: undefined;
142
+ lookForward?: undefined;
143
+ period?: undefined;
144
+ chain?: undefined;
44
145
  };
45
146
  required: string[];
46
147
  };
@@ -52,14 +153,96 @@ export declare const tools: ({
52
153
  properties: {
53
154
  coins: {
54
155
  type: string;
156
+ description: string;
55
157
  items: {
56
158
  type: string;
57
159
  };
58
160
  };
161
+ timestamp: {
162
+ type: string;
163
+ description: string;
164
+ };
165
+ protocol?: undefined;
166
+ searchWidth?: undefined;
167
+ lookForward?: undefined;
168
+ period?: undefined;
169
+ chain?: undefined;
170
+ };
171
+ required: string[];
172
+ };
173
+ } | {
174
+ name: string;
175
+ description: string;
176
+ inputSchema: {
177
+ type: string;
178
+ properties: {
179
+ coins: {
180
+ type: string;
181
+ description: string;
182
+ additionalProperties: {
183
+ type: string;
184
+ items: {
185
+ type: string;
186
+ };
187
+ };
188
+ };
189
+ searchWidth: {
190
+ type: string;
191
+ description: string;
192
+ };
59
193
  protocol?: undefined;
194
+ timestamp?: undefined;
195
+ lookForward?: undefined;
196
+ period?: undefined;
60
197
  chain?: undefined;
198
+ };
199
+ required: string[];
200
+ };
201
+ } | {
202
+ name: string;
203
+ description: string;
204
+ inputSchema: {
205
+ type: string;
206
+ properties: {
207
+ full: {
208
+ type: string;
209
+ description: string;
210
+ };
211
+ points: {
212
+ type: string;
213
+ description: string;
214
+ };
215
+ coins: {
216
+ type: string;
217
+ description: string;
218
+ items: {
219
+ type: string;
220
+ };
221
+ };
222
+ start: {
223
+ type: string;
224
+ description: string;
225
+ };
226
+ end: {
227
+ type: string;
228
+ description: string;
229
+ };
230
+ span: {
231
+ type: string;
232
+ description: string;
233
+ };
234
+ period: {
235
+ type: string;
236
+ description: string;
237
+ };
238
+ searchWidth: {
239
+ type: string;
240
+ description: string;
241
+ };
242
+ protocol?: undefined;
61
243
  timestamp?: undefined;
62
- asset?: undefined;
244
+ lookForward?: undefined;
245
+ chain?: undefined;
63
246
  };
64
247
  required: string[];
65
248
  };
@@ -71,16 +254,26 @@ export declare const tools: ({
71
254
  properties: {
72
255
  coins: {
73
256
  type: string;
257
+ description: string;
74
258
  items: {
75
259
  type: string;
76
260
  };
77
261
  };
78
262
  timestamp: {
79
263
  type: string;
264
+ description: string;
265
+ };
266
+ lookForward: {
267
+ type: string;
268
+ description: string;
269
+ };
270
+ period: {
271
+ type: string;
272
+ description: string;
80
273
  };
81
274
  protocol?: undefined;
275
+ searchWidth?: undefined;
82
276
  chain?: undefined;
83
- asset?: undefined;
84
277
  };
85
278
  required: string[];
86
279
  };
@@ -90,13 +283,288 @@ export declare const tools: ({
90
283
  inputSchema: {
91
284
  type: string;
92
285
  properties: {
286
+ chain: {
287
+ type: string;
288
+ description: string;
289
+ };
290
+ timestamp: {
291
+ type: string;
292
+ description: string;
293
+ };
294
+ protocol?: undefined;
295
+ coins?: undefined;
296
+ searchWidth?: undefined;
297
+ lookForward?: undefined;
298
+ period?: undefined;
299
+ };
300
+ required: string[];
301
+ };
302
+ } | {
303
+ name: string;
304
+ description: string;
305
+ inputSchema: {
306
+ type: string;
307
+ properties: {
308
+ full: {
309
+ type: string;
310
+ description: string;
311
+ };
312
+ limit: {
313
+ type: string;
314
+ description: string;
315
+ };
316
+ includePrices: {
317
+ type: string;
318
+ description: string;
319
+ };
320
+ protocol?: undefined;
321
+ coins?: undefined;
322
+ timestamp?: undefined;
323
+ searchWidth?: undefined;
324
+ lookForward?: undefined;
325
+ period?: undefined;
326
+ chain?: undefined;
327
+ };
328
+ required: never[];
329
+ };
330
+ } | {
331
+ name: string;
332
+ description: string;
333
+ inputSchema: {
334
+ type: string;
335
+ properties: {
336
+ full: {
337
+ type: string;
338
+ description: string;
339
+ };
340
+ points: {
341
+ type: string;
342
+ description: string;
343
+ };
344
+ stablecoin: {
345
+ type: string;
346
+ description: string;
347
+ };
348
+ protocol?: undefined;
349
+ coins?: undefined;
350
+ timestamp?: undefined;
351
+ searchWidth?: undefined;
352
+ lookForward?: undefined;
353
+ period?: undefined;
354
+ chain?: undefined;
355
+ };
356
+ required: never[];
357
+ };
358
+ } | {
359
+ name: string;
360
+ description: string;
361
+ inputSchema: {
362
+ type: string;
363
+ properties: {
364
+ full: {
365
+ type: string;
366
+ description: string;
367
+ };
368
+ points: {
369
+ type: string;
370
+ description: string;
371
+ };
372
+ chain: {
373
+ type: string;
374
+ description: string;
375
+ };
376
+ stablecoin: {
377
+ type: string;
378
+ description: string;
379
+ };
380
+ protocol?: undefined;
381
+ coins?: undefined;
382
+ timestamp?: undefined;
383
+ searchWidth?: undefined;
384
+ lookForward?: undefined;
385
+ period?: undefined;
386
+ };
387
+ required: string[];
388
+ };
389
+ } | {
390
+ name: string;
391
+ description: string;
392
+ inputSchema: {
393
+ type: string;
394
+ properties: {
395
+ full: {
396
+ type: string;
397
+ description: string;
398
+ };
399
+ includeTokens: {
400
+ type: string;
401
+ description: string;
402
+ };
93
403
  asset: {
94
404
  type: string;
405
+ description: string;
95
406
  };
96
407
  protocol?: undefined;
408
+ coins?: undefined;
409
+ timestamp?: undefined;
410
+ searchWidth?: undefined;
411
+ lookForward?: undefined;
412
+ period?: undefined;
97
413
  chain?: undefined;
414
+ };
415
+ required: string[];
416
+ };
417
+ } | {
418
+ name: string;
419
+ description: string;
420
+ inputSchema: {
421
+ type: string;
422
+ properties: {
423
+ full: {
424
+ type: string;
425
+ description: string;
426
+ };
427
+ points: {
428
+ type: string;
429
+ description: string;
430
+ };
431
+ pool: {
432
+ type: string;
433
+ description: string;
434
+ };
435
+ protocol?: undefined;
98
436
  coins?: undefined;
99
437
  timestamp?: undefined;
438
+ searchWidth?: undefined;
439
+ lookForward?: undefined;
440
+ period?: undefined;
441
+ chain?: undefined;
442
+ };
443
+ required: string[];
444
+ };
445
+ } | {
446
+ name: string;
447
+ description: string;
448
+ inputSchema: {
449
+ type: string;
450
+ properties: {
451
+ full: {
452
+ type: string;
453
+ description: string;
454
+ };
455
+ limit: {
456
+ type: string;
457
+ description: string;
458
+ };
459
+ points: {
460
+ type: string;
461
+ description: string;
462
+ };
463
+ dataType: {
464
+ type: string;
465
+ description: string;
466
+ };
467
+ excludeTotalDataChart: {
468
+ type: string;
469
+ description: string;
470
+ };
471
+ excludeTotalDataChartBreakdown: {
472
+ type: string;
473
+ description: string;
474
+ };
475
+ protocol?: undefined;
476
+ coins?: undefined;
477
+ timestamp?: undefined;
478
+ searchWidth?: undefined;
479
+ lookForward?: undefined;
480
+ period?: undefined;
481
+ chain?: undefined;
482
+ };
483
+ required: never[];
484
+ };
485
+ } | {
486
+ name: string;
487
+ description: string;
488
+ inputSchema: {
489
+ type: string;
490
+ properties: {
491
+ full: {
492
+ type: string;
493
+ description: string;
494
+ };
495
+ limit: {
496
+ type: string;
497
+ description: string;
498
+ };
499
+ points: {
500
+ type: string;
501
+ description: string;
502
+ };
503
+ dataType: {
504
+ type: string;
505
+ description: string;
506
+ };
507
+ excludeTotalDataChart: {
508
+ type: string;
509
+ description: string;
510
+ };
511
+ excludeTotalDataChartBreakdown: {
512
+ type: string;
513
+ description: string;
514
+ };
515
+ chain: {
516
+ type: string;
517
+ description: string;
518
+ };
519
+ protocol?: undefined;
520
+ coins?: undefined;
521
+ timestamp?: undefined;
522
+ searchWidth?: undefined;
523
+ lookForward?: undefined;
524
+ period?: undefined;
525
+ };
526
+ required: string[];
527
+ };
528
+ } | {
529
+ name: string;
530
+ description: string;
531
+ inputSchema: {
532
+ type: string;
533
+ properties: {
534
+ full: {
535
+ type: string;
536
+ description: string;
537
+ };
538
+ limit: {
539
+ type: string;
540
+ description: string;
541
+ };
542
+ points: {
543
+ type: string;
544
+ description: string;
545
+ };
546
+ dataType: {
547
+ type: string;
548
+ description: string;
549
+ };
550
+ excludeTotalDataChart: {
551
+ type: string;
552
+ description: string;
553
+ };
554
+ excludeTotalDataChartBreakdown: {
555
+ type: string;
556
+ description: string;
557
+ };
558
+ protocol: {
559
+ type: string;
560
+ description: string;
561
+ };
562
+ coins?: undefined;
563
+ timestamp?: undefined;
564
+ searchWidth?: undefined;
565
+ lookForward?: undefined;
566
+ period?: undefined;
567
+ chain?: undefined;
100
568
  };
101
569
  required: string[];
102
570
  };