profound-mcp 0.7.1 → 0.8.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/package.json +2 -2
- package/server.js +1 -1
- package/server.mjs +1 -1
- package/src/server.ts +1 -1
- package/src/tools/logs/raw/bots-logs-raw.ts +416 -75
- package/src/tools/logs/raw/logs-logs-raw.ts +436 -64
- package/src/tools/prompts/answers-prompts.ts +181 -57
- package/src/tools/reports/citations-reports.ts +344 -74
- package/src/tools/reports/sentiment-reports.ts +257 -62
- package/src/tools/reports/visibility-reports.ts +215 -62
- package/tools/logs/raw/bots-logs-raw.d.mts.map +1 -1
- package/tools/logs/raw/bots-logs-raw.d.ts.map +1 -1
- package/tools/logs/raw/bots-logs-raw.js +416 -71
- package/tools/logs/raw/bots-logs-raw.js.map +1 -1
- package/tools/logs/raw/bots-logs-raw.mjs +416 -71
- package/tools/logs/raw/bots-logs-raw.mjs.map +1 -1
- package/tools/logs/raw/logs-logs-raw.d.mts.map +1 -1
- package/tools/logs/raw/logs-logs-raw.d.ts.map +1 -1
- package/tools/logs/raw/logs-logs-raw.js +436 -60
- package/tools/logs/raw/logs-logs-raw.js.map +1 -1
- package/tools/logs/raw/logs-logs-raw.mjs +436 -60
- package/tools/logs/raw/logs-logs-raw.mjs.map +1 -1
- package/tools/prompts/answers-prompts.d.mts.map +1 -1
- package/tools/prompts/answers-prompts.d.ts.map +1 -1
- package/tools/prompts/answers-prompts.js +181 -54
- package/tools/prompts/answers-prompts.js.map +1 -1
- package/tools/prompts/answers-prompts.mjs +181 -54
- package/tools/prompts/answers-prompts.mjs.map +1 -1
- package/tools/reports/citations-reports.d.mts.map +1 -1
- package/tools/reports/citations-reports.d.ts.map +1 -1
- package/tools/reports/citations-reports.js +344 -70
- package/tools/reports/citations-reports.js.map +1 -1
- package/tools/reports/citations-reports.mjs +344 -70
- package/tools/reports/citations-reports.mjs.map +1 -1
- package/tools/reports/sentiment-reports.d.mts.map +1 -1
- package/tools/reports/sentiment-reports.d.ts.map +1 -1
- package/tools/reports/sentiment-reports.js +257 -59
- package/tools/reports/sentiment-reports.js.map +1 -1
- package/tools/reports/sentiment-reports.mjs +257 -59
- package/tools/reports/sentiment-reports.mjs.map +1 -1
- package/tools/reports/visibility-reports.d.mts.map +1 -1
- package/tools/reports/visibility-reports.d.ts.map +1 -1
- package/tools/reports/visibility-reports.js +215 -59
- package/tools/reports/visibility-reports.js.map +1 -1
- package/tools/reports/visibility-reports.mjs +215 -59
- package/tools/reports/visibility-reports.mjs.map +1 -1
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
exports.handler = exports.tool = exports.metadata = void 0;
|
|
5
|
-
const filtering_1 = require("profound-mcp/filtering");
|
|
6
5
|
const types_1 = require("profound-mcp/tools/types");
|
|
7
6
|
exports.metadata = {
|
|
8
7
|
resource: 'logs.raw',
|
|
@@ -14,7 +13,7 @@ exports.metadata = {
|
|
|
14
13
|
};
|
|
15
14
|
exports.tool = {
|
|
16
15
|
name: 'logs_logs_raw',
|
|
17
|
-
description:
|
|
16
|
+
description: 'Get all logs with filters',
|
|
18
17
|
inputSchema: {
|
|
19
18
|
type: 'object',
|
|
20
19
|
properties: {
|
|
@@ -73,61 +72,443 @@ exports.tool = {
|
|
|
73
72
|
filters: {
|
|
74
73
|
type: 'array',
|
|
75
74
|
title: 'Filters',
|
|
76
|
-
description: '
|
|
75
|
+
description: 'Filters to apply to the logs query.',
|
|
77
76
|
items: {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
77
|
+
anyOf: [
|
|
78
|
+
{
|
|
79
|
+
type: 'object',
|
|
80
|
+
title: 'MethodFilter',
|
|
81
|
+
description: 'Filter by HTTP method',
|
|
82
|
+
properties: {
|
|
83
|
+
field: {
|
|
84
|
+
type: 'string',
|
|
85
|
+
title: 'Field',
|
|
86
|
+
enum: ['method'],
|
|
87
|
+
},
|
|
88
|
+
operator: {
|
|
89
|
+
type: 'string',
|
|
90
|
+
title: 'Operator',
|
|
91
|
+
enum: [
|
|
92
|
+
'is',
|
|
93
|
+
'not_is',
|
|
94
|
+
'in',
|
|
95
|
+
'not_in',
|
|
96
|
+
'contains',
|
|
97
|
+
'not_contains',
|
|
98
|
+
'matches',
|
|
99
|
+
'contains_case_insensitive',
|
|
100
|
+
'not_contains_case_insensitive',
|
|
101
|
+
],
|
|
102
|
+
},
|
|
103
|
+
value: {
|
|
104
|
+
anyOf: [
|
|
105
|
+
{
|
|
106
|
+
type: 'string',
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
type: 'array',
|
|
110
|
+
items: {
|
|
111
|
+
type: 'string',
|
|
112
|
+
},
|
|
113
|
+
},
|
|
114
|
+
],
|
|
115
|
+
title: 'Value',
|
|
116
|
+
},
|
|
117
|
+
},
|
|
118
|
+
required: ['field', 'operator', 'value'],
|
|
85
119
|
},
|
|
86
|
-
|
|
87
|
-
type: '
|
|
88
|
-
title: '
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
120
|
+
{
|
|
121
|
+
type: 'object',
|
|
122
|
+
title: 'HostFilter',
|
|
123
|
+
description: 'Filter by host',
|
|
124
|
+
properties: {
|
|
125
|
+
field: {
|
|
126
|
+
type: 'string',
|
|
127
|
+
title: 'Field',
|
|
128
|
+
enum: ['host'],
|
|
129
|
+
},
|
|
130
|
+
operator: {
|
|
131
|
+
type: 'string',
|
|
132
|
+
title: 'Operator',
|
|
133
|
+
enum: [
|
|
134
|
+
'is',
|
|
135
|
+
'not_is',
|
|
136
|
+
'in',
|
|
137
|
+
'not_in',
|
|
138
|
+
'contains',
|
|
139
|
+
'not_contains',
|
|
140
|
+
'matches',
|
|
141
|
+
'contains_case_insensitive',
|
|
142
|
+
'not_contains_case_insensitive',
|
|
143
|
+
],
|
|
144
|
+
},
|
|
145
|
+
value: {
|
|
146
|
+
anyOf: [
|
|
147
|
+
{
|
|
148
|
+
type: 'string',
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
type: 'array',
|
|
152
|
+
items: {
|
|
153
|
+
type: 'string',
|
|
154
|
+
},
|
|
155
|
+
},
|
|
156
|
+
],
|
|
157
|
+
title: 'Value',
|
|
158
|
+
},
|
|
159
|
+
},
|
|
160
|
+
required: ['field', 'operator', 'value'],
|
|
100
161
|
},
|
|
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
|
-
|
|
162
|
+
{
|
|
163
|
+
type: 'object',
|
|
164
|
+
title: 'PathFilter',
|
|
165
|
+
description: 'Filter by request path',
|
|
166
|
+
properties: {
|
|
167
|
+
field: {
|
|
168
|
+
type: 'string',
|
|
169
|
+
title: 'Field',
|
|
170
|
+
enum: ['path'],
|
|
171
|
+
},
|
|
172
|
+
operator: {
|
|
173
|
+
type: 'string',
|
|
174
|
+
title: 'Operator',
|
|
175
|
+
enum: [
|
|
176
|
+
'is',
|
|
177
|
+
'not_is',
|
|
178
|
+
'in',
|
|
179
|
+
'not_in',
|
|
180
|
+
'contains',
|
|
181
|
+
'not_contains',
|
|
182
|
+
'matches',
|
|
183
|
+
'contains_case_insensitive',
|
|
184
|
+
'not_contains_case_insensitive',
|
|
185
|
+
],
|
|
186
|
+
},
|
|
187
|
+
value: {
|
|
188
|
+
anyOf: [
|
|
189
|
+
{
|
|
190
|
+
type: 'string',
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
type: 'array',
|
|
194
|
+
items: {
|
|
195
|
+
type: 'string',
|
|
196
|
+
},
|
|
197
|
+
},
|
|
198
|
+
],
|
|
199
|
+
title: 'Value',
|
|
200
|
+
},
|
|
201
|
+
},
|
|
202
|
+
required: ['field', 'operator', 'value'],
|
|
128
203
|
},
|
|
129
|
-
|
|
130
|
-
|
|
204
|
+
{
|
|
205
|
+
type: 'object',
|
|
206
|
+
title: 'StatusCodeFilter',
|
|
207
|
+
description: 'Filter by HTTP status code',
|
|
208
|
+
properties: {
|
|
209
|
+
field: {
|
|
210
|
+
type: 'string',
|
|
211
|
+
title: 'Field',
|
|
212
|
+
enum: ['status_code'],
|
|
213
|
+
},
|
|
214
|
+
operator: {
|
|
215
|
+
type: 'string',
|
|
216
|
+
title: 'Operator',
|
|
217
|
+
enum: ['is', 'not_is', 'in', 'not_in'],
|
|
218
|
+
},
|
|
219
|
+
value: {
|
|
220
|
+
anyOf: [
|
|
221
|
+
{
|
|
222
|
+
type: 'integer',
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
type: 'array',
|
|
226
|
+
items: {
|
|
227
|
+
type: 'integer',
|
|
228
|
+
},
|
|
229
|
+
},
|
|
230
|
+
],
|
|
231
|
+
title: 'Value',
|
|
232
|
+
},
|
|
233
|
+
},
|
|
234
|
+
required: ['field', 'operator', 'value'],
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
type: 'object',
|
|
238
|
+
title: 'IpFilter',
|
|
239
|
+
description: 'Filter by IP address',
|
|
240
|
+
properties: {
|
|
241
|
+
field: {
|
|
242
|
+
type: 'string',
|
|
243
|
+
title: 'Field',
|
|
244
|
+
enum: ['ip'],
|
|
245
|
+
},
|
|
246
|
+
operator: {
|
|
247
|
+
type: 'string',
|
|
248
|
+
title: 'Operator',
|
|
249
|
+
enum: [
|
|
250
|
+
'is',
|
|
251
|
+
'not_is',
|
|
252
|
+
'in',
|
|
253
|
+
'not_in',
|
|
254
|
+
'contains',
|
|
255
|
+
'not_contains',
|
|
256
|
+
'matches',
|
|
257
|
+
'contains_case_insensitive',
|
|
258
|
+
'not_contains_case_insensitive',
|
|
259
|
+
],
|
|
260
|
+
},
|
|
261
|
+
value: {
|
|
262
|
+
anyOf: [
|
|
263
|
+
{
|
|
264
|
+
type: 'string',
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
type: 'array',
|
|
268
|
+
items: {
|
|
269
|
+
type: 'string',
|
|
270
|
+
},
|
|
271
|
+
},
|
|
272
|
+
],
|
|
273
|
+
title: 'Value',
|
|
274
|
+
},
|
|
275
|
+
},
|
|
276
|
+
required: ['field', 'operator', 'value'],
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
type: 'object',
|
|
280
|
+
title: 'UserAgentFilter',
|
|
281
|
+
description: 'Filter by user agent',
|
|
282
|
+
properties: {
|
|
283
|
+
field: {
|
|
284
|
+
type: 'string',
|
|
285
|
+
title: 'Field',
|
|
286
|
+
enum: ['user_agent'],
|
|
287
|
+
},
|
|
288
|
+
operator: {
|
|
289
|
+
type: 'string',
|
|
290
|
+
title: 'Operator',
|
|
291
|
+
enum: [
|
|
292
|
+
'is',
|
|
293
|
+
'not_is',
|
|
294
|
+
'in',
|
|
295
|
+
'not_in',
|
|
296
|
+
'contains',
|
|
297
|
+
'not_contains',
|
|
298
|
+
'matches',
|
|
299
|
+
'contains_case_insensitive',
|
|
300
|
+
'not_contains_case_insensitive',
|
|
301
|
+
],
|
|
302
|
+
},
|
|
303
|
+
value: {
|
|
304
|
+
anyOf: [
|
|
305
|
+
{
|
|
306
|
+
type: 'string',
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
type: 'array',
|
|
310
|
+
items: {
|
|
311
|
+
type: 'string',
|
|
312
|
+
},
|
|
313
|
+
},
|
|
314
|
+
],
|
|
315
|
+
title: 'Value',
|
|
316
|
+
},
|
|
317
|
+
},
|
|
318
|
+
required: ['field', 'operator', 'value'],
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
type: 'object',
|
|
322
|
+
title: 'RefererFilter',
|
|
323
|
+
description: 'Filter by referer',
|
|
324
|
+
properties: {
|
|
325
|
+
field: {
|
|
326
|
+
type: 'string',
|
|
327
|
+
title: 'Field',
|
|
328
|
+
enum: ['referer'],
|
|
329
|
+
},
|
|
330
|
+
operator: {
|
|
331
|
+
type: 'string',
|
|
332
|
+
title: 'Operator',
|
|
333
|
+
enum: [
|
|
334
|
+
'is',
|
|
335
|
+
'not_is',
|
|
336
|
+
'in',
|
|
337
|
+
'not_in',
|
|
338
|
+
'contains',
|
|
339
|
+
'not_contains',
|
|
340
|
+
'matches',
|
|
341
|
+
'contains_case_insensitive',
|
|
342
|
+
'not_contains_case_insensitive',
|
|
343
|
+
],
|
|
344
|
+
},
|
|
345
|
+
value: {
|
|
346
|
+
anyOf: [
|
|
347
|
+
{
|
|
348
|
+
type: 'string',
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
type: 'array',
|
|
352
|
+
items: {
|
|
353
|
+
type: 'string',
|
|
354
|
+
},
|
|
355
|
+
},
|
|
356
|
+
],
|
|
357
|
+
title: 'Value',
|
|
358
|
+
},
|
|
359
|
+
},
|
|
360
|
+
required: ['field', 'operator', 'value'],
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
type: 'object',
|
|
364
|
+
title: 'ProviderFilter',
|
|
365
|
+
description: 'Filter by provider',
|
|
366
|
+
properties: {
|
|
367
|
+
field: {
|
|
368
|
+
type: 'string',
|
|
369
|
+
title: 'Field',
|
|
370
|
+
enum: ['provider'],
|
|
371
|
+
},
|
|
372
|
+
operator: {
|
|
373
|
+
type: 'string',
|
|
374
|
+
title: 'Operator',
|
|
375
|
+
enum: [
|
|
376
|
+
'is',
|
|
377
|
+
'not_is',
|
|
378
|
+
'in',
|
|
379
|
+
'not_in',
|
|
380
|
+
'contains',
|
|
381
|
+
'not_contains',
|
|
382
|
+
'matches',
|
|
383
|
+
'contains_case_insensitive',
|
|
384
|
+
'not_contains_case_insensitive',
|
|
385
|
+
],
|
|
386
|
+
},
|
|
387
|
+
value: {
|
|
388
|
+
anyOf: [
|
|
389
|
+
{
|
|
390
|
+
type: 'string',
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
type: 'array',
|
|
394
|
+
items: {
|
|
395
|
+
type: 'string',
|
|
396
|
+
},
|
|
397
|
+
},
|
|
398
|
+
],
|
|
399
|
+
title: 'Value',
|
|
400
|
+
},
|
|
401
|
+
},
|
|
402
|
+
required: ['field', 'operator', 'value'],
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
type: 'object',
|
|
406
|
+
title: 'QueryParamsFilter',
|
|
407
|
+
description: 'Filter by query parameters',
|
|
408
|
+
properties: {
|
|
409
|
+
field: {
|
|
410
|
+
type: 'string',
|
|
411
|
+
title: 'Field',
|
|
412
|
+
enum: ['query_params'],
|
|
413
|
+
},
|
|
414
|
+
operator: {
|
|
415
|
+
type: 'string',
|
|
416
|
+
title: 'Operator',
|
|
417
|
+
enum: [
|
|
418
|
+
'is',
|
|
419
|
+
'not_is',
|
|
420
|
+
'in',
|
|
421
|
+
'not_in',
|
|
422
|
+
'contains',
|
|
423
|
+
'not_contains',
|
|
424
|
+
'matches',
|
|
425
|
+
'contains_case_insensitive',
|
|
426
|
+
'not_contains_case_insensitive',
|
|
427
|
+
],
|
|
428
|
+
},
|
|
429
|
+
value: {
|
|
430
|
+
anyOf: [
|
|
431
|
+
{
|
|
432
|
+
type: 'string',
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
type: 'array',
|
|
436
|
+
items: {
|
|
437
|
+
type: 'string',
|
|
438
|
+
},
|
|
439
|
+
},
|
|
440
|
+
],
|
|
441
|
+
title: 'Value',
|
|
442
|
+
},
|
|
443
|
+
},
|
|
444
|
+
required: ['field', 'operator', 'value'],
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
type: 'object',
|
|
448
|
+
title: 'BytesSentFilter',
|
|
449
|
+
description: 'Filter by bytes sent',
|
|
450
|
+
properties: {
|
|
451
|
+
field: {
|
|
452
|
+
type: 'string',
|
|
453
|
+
title: 'Field',
|
|
454
|
+
enum: ['bytes_sent'],
|
|
455
|
+
},
|
|
456
|
+
operator: {
|
|
457
|
+
type: 'string',
|
|
458
|
+
title: 'Operator',
|
|
459
|
+
enum: ['is', 'not_is', 'in', 'not_in'],
|
|
460
|
+
},
|
|
461
|
+
value: {
|
|
462
|
+
anyOf: [
|
|
463
|
+
{
|
|
464
|
+
type: 'integer',
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
type: 'array',
|
|
468
|
+
items: {
|
|
469
|
+
type: 'integer',
|
|
470
|
+
},
|
|
471
|
+
},
|
|
472
|
+
],
|
|
473
|
+
title: 'Value',
|
|
474
|
+
},
|
|
475
|
+
},
|
|
476
|
+
required: ['field', 'operator', 'value'],
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
type: 'object',
|
|
480
|
+
title: 'DurationMsFilter',
|
|
481
|
+
description: 'Filter by duration in milliseconds',
|
|
482
|
+
properties: {
|
|
483
|
+
field: {
|
|
484
|
+
type: 'string',
|
|
485
|
+
title: 'Field',
|
|
486
|
+
enum: ['duration_ms'],
|
|
487
|
+
},
|
|
488
|
+
operator: {
|
|
489
|
+
type: 'string',
|
|
490
|
+
title: 'Operator',
|
|
491
|
+
enum: ['is', 'not_is', 'in', 'not_in'],
|
|
492
|
+
},
|
|
493
|
+
value: {
|
|
494
|
+
anyOf: [
|
|
495
|
+
{
|
|
496
|
+
type: 'integer',
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
type: 'array',
|
|
500
|
+
items: {
|
|
501
|
+
type: 'integer',
|
|
502
|
+
},
|
|
503
|
+
},
|
|
504
|
+
],
|
|
505
|
+
title: 'Value',
|
|
506
|
+
},
|
|
507
|
+
},
|
|
508
|
+
required: ['field', 'operator', 'value'],
|
|
509
|
+
},
|
|
510
|
+
],
|
|
511
|
+
description: 'Filter by HTTP method',
|
|
131
512
|
},
|
|
132
513
|
},
|
|
133
514
|
order_by: {
|
|
@@ -139,11 +520,6 @@ exports.tool = {
|
|
|
139
520
|
pagination: {
|
|
140
521
|
$ref: '#/$defs/pagination',
|
|
141
522
|
},
|
|
142
|
-
jq_filter: {
|
|
143
|
-
type: 'string',
|
|
144
|
-
title: 'jq Filter',
|
|
145
|
-
description: 'A jq filter to apply to the response to include certain fields. Consult the output schema in the tool description to see the fields that are available.\n\nFor example: to include only the `name` field in every object of a results array, you can provide ".results[].name".\n\nFor more information, see the [jq documentation](https://jqlang.org/manual/).',
|
|
146
|
-
},
|
|
147
523
|
},
|
|
148
524
|
required: ['domain', 'metrics', 'start_date'],
|
|
149
525
|
$defs: {
|
|
@@ -169,8 +545,8 @@ exports.tool = {
|
|
|
169
545
|
annotations: {},
|
|
170
546
|
};
|
|
171
547
|
const handler = async (client, args) => {
|
|
172
|
-
const
|
|
173
|
-
return (0, types_1.asTextContentResult)(await
|
|
548
|
+
const body = args;
|
|
549
|
+
return (0, types_1.asTextContentResult)(await client.logs.raw.logs(body));
|
|
174
550
|
};
|
|
175
551
|
exports.handler = handler;
|
|
176
552
|
exports.default = { metadata: exports.metadata, tool: exports.tool, handler: exports.handler };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"logs-logs-raw.js","sourceRoot":"","sources":["../../../src/tools/logs/raw/logs-logs-raw.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,
|
|
1
|
+
{"version":3,"file":"logs-logs-raw.js","sourceRoot":"","sources":["../../../src/tools/logs/raw/logs-logs-raw.ts"],"names":[],"mappings":"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"}
|