profound-mcp 0.7.1 → 0.9.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.
Files changed (46) hide show
  1. package/package.json +2 -2
  2. package/server.js +1 -1
  3. package/server.mjs +1 -1
  4. package/src/server.ts +1 -1
  5. package/src/tools/logs/raw/bots-logs-raw.ts +416 -75
  6. package/src/tools/logs/raw/logs-logs-raw.ts +436 -64
  7. package/src/tools/prompts/answers-prompts.ts +181 -57
  8. package/src/tools/reports/citations-reports.ts +344 -74
  9. package/src/tools/reports/sentiment-reports.ts +269 -64
  10. package/src/tools/reports/visibility-reports.ts +215 -62
  11. package/tools/logs/raw/bots-logs-raw.d.mts.map +1 -1
  12. package/tools/logs/raw/bots-logs-raw.d.ts.map +1 -1
  13. package/tools/logs/raw/bots-logs-raw.js +416 -71
  14. package/tools/logs/raw/bots-logs-raw.js.map +1 -1
  15. package/tools/logs/raw/bots-logs-raw.mjs +416 -71
  16. package/tools/logs/raw/bots-logs-raw.mjs.map +1 -1
  17. package/tools/logs/raw/logs-logs-raw.d.mts.map +1 -1
  18. package/tools/logs/raw/logs-logs-raw.d.ts.map +1 -1
  19. package/tools/logs/raw/logs-logs-raw.js +436 -60
  20. package/tools/logs/raw/logs-logs-raw.js.map +1 -1
  21. package/tools/logs/raw/logs-logs-raw.mjs +436 -60
  22. package/tools/logs/raw/logs-logs-raw.mjs.map +1 -1
  23. package/tools/prompts/answers-prompts.d.mts.map +1 -1
  24. package/tools/prompts/answers-prompts.d.ts.map +1 -1
  25. package/tools/prompts/answers-prompts.js +181 -54
  26. package/tools/prompts/answers-prompts.js.map +1 -1
  27. package/tools/prompts/answers-prompts.mjs +181 -54
  28. package/tools/prompts/answers-prompts.mjs.map +1 -1
  29. package/tools/reports/citations-reports.d.mts.map +1 -1
  30. package/tools/reports/citations-reports.d.ts.map +1 -1
  31. package/tools/reports/citations-reports.js +344 -70
  32. package/tools/reports/citations-reports.js.map +1 -1
  33. package/tools/reports/citations-reports.mjs +344 -70
  34. package/tools/reports/citations-reports.mjs.map +1 -1
  35. package/tools/reports/sentiment-reports.d.mts.map +1 -1
  36. package/tools/reports/sentiment-reports.d.ts.map +1 -1
  37. package/tools/reports/sentiment-reports.js +269 -61
  38. package/tools/reports/sentiment-reports.js.map +1 -1
  39. package/tools/reports/sentiment-reports.mjs +269 -61
  40. package/tools/reports/sentiment-reports.mjs.map +1 -1
  41. package/tools/reports/visibility-reports.d.mts.map +1 -1
  42. package/tools/reports/visibility-reports.d.ts.map +1 -1
  43. package/tools/reports/visibility-reports.js +215 -59
  44. package/tools/reports/visibility-reports.js.map +1 -1
  45. package/tools/reports/visibility-reports.mjs +215 -59
  46. 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: "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nGet all logs with filters\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/raw_logs_response',\n $defs: {\n raw_logs_response: {\n anyOf: [ {\n type: 'array',\n title: 'LogVisitList',\n items: {\n type: 'object',\n title: 'LogVisit',\n description: 'DB Model for a log visit.',\n properties: {\n host: {\n type: 'string',\n title: 'Host'\n },\n ip: {\n type: 'string',\n title: 'Ip'\n },\n method: {\n type: 'string',\n title: 'Method'\n },\n org_id: {\n type: 'string',\n title: 'Org Id'\n },\n path: {\n type: 'string',\n title: 'Path'\n },\n status_code: {\n type: 'integer',\n title: 'Status Code'\n },\n timestamp: {\n type: 'string',\n title: 'Timestamp',\n format: 'date-time'\n },\n user_agent: {\n type: 'string',\n title: 'User Agent'\n },\n bytes_sent: {\n type: 'integer',\n title: 'Bytes Sent'\n },\n duration_ms: {\n type: 'integer',\n title: 'Duration Ms'\n },\n query_params: {\n type: 'object',\n title: 'Query Params',\n additionalProperties: true\n },\n referer: {\n type: 'string',\n title: 'Referer'\n }\n },\n required: [ 'host',\n 'ip',\n 'method',\n 'org_id',\n 'path',\n 'status_code',\n 'timestamp',\n 'user_agent'\n ]\n }\n },\n {\n $ref: '#/$defs/report_response'\n }\n ],\n title: 'Response Get Logs V1 Logs Raw Post',\n description: 'Base response model for reports.'\n },\n report_response: {\n type: 'object',\n title: 'Response',\n description: 'Base response model for reports.',\n properties: {\n data: {\n type: 'array',\n title: 'Data',\n items: {\n $ref: '#/$defs/report_result'\n }\n },\n info: {\n $ref: '#/$defs/report_info'\n }\n },\n required: [ 'data',\n 'info'\n ]\n },\n report_result: {\n type: 'object',\n title: 'Result',\n description: 'Base model for report results.',\n properties: {\n dimensions: {\n type: 'array',\n title: 'Dimensions',\n items: {\n type: 'string'\n }\n },\n metrics: {\n type: 'array',\n title: 'Metrics',\n items: {\n type: 'number'\n }\n }\n },\n required: [ 'dimensions',\n 'metrics'\n ]\n },\n report_info: {\n type: 'object',\n title: 'Info',\n description: 'Base model for report information.',\n properties: {\n total_rows: {\n type: 'integer',\n title: 'Total Rows'\n },\n query: {\n type: 'object',\n title: 'Query',\n additionalProperties: true\n }\n },\n required: [ 'total_rows'\n ]\n }\n }\n}\n```",
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: 'List of filters to apply to the report. Each filter has an operator, field, and value.',
75
+ description: 'Filters to apply to the logs query.',
77
76
  items: {
78
- type: 'object',
79
- title: "Filter[Literal['method', 'path', 'status_code', 'ip', 'user_agent', 'referer', 'query_params']]",
80
- properties: {
81
- field: {
82
- type: 'string',
83
- title: 'Field',
84
- enum: ['method', 'path', 'status_code', 'ip', 'user_agent', 'referer', 'query_params'],
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
- operator: {
87
- type: 'string',
88
- title: 'Operator',
89
- enum: [
90
- 'is',
91
- 'not_is',
92
- 'in',
93
- 'not_in',
94
- 'contains',
95
- 'not_contains',
96
- 'contains_case_insensitive',
97
- 'not_contains_case_insensitive',
98
- 'matches',
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
- value: {
102
- anyOf: [
103
- {
104
- type: 'string',
105
- title: 'FilterStringValue',
106
- },
107
- {
108
- type: 'array',
109
- title: 'FilterStringListValue',
110
- items: {
111
- type: 'string',
112
- },
113
- },
114
- {
115
- type: 'integer',
116
- title: 'FilterIntegerValue',
117
- },
118
- {
119
- type: 'array',
120
- title: 'FilterIntegerListValue',
121
- items: {
122
- type: 'integer',
123
- },
124
- },
125
- ],
126
- title: 'Value',
127
- description: 'Value for the filter. Can be a single value or a list of depending on the operator.',
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
- required: ['field', 'operator', 'value'],
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 { jq_filter, ...body } = args;
173
- return (0, types_1.asTextContentResult)(await (0, filtering_1.maybeFilter)(jq_filter, await client.logs.raw.logs(body)));
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":"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"}
1
+ {"version":3,"file":"logs-logs-raw.js","sourceRoot":"","sources":["../../../src/tools/logs/raw/logs-logs-raw.ts"],"names":[],"mappings":"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"}