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.
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 +257 -62
  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 +257 -59
  38. package/tools/reports/sentiment-reports.js.map +1 -1
  39. package/tools/reports/sentiment-reports.mjs +257 -59
  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
@@ -1,5 +1,4 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
- import { maybeFilter } from 'profound-mcp/filtering';
3
2
  import { asTextContentResult } from 'profound-mcp/tools/types';
4
3
  export const metadata = {
5
4
  resource: 'reports',
@@ -11,7 +10,7 @@ export const metadata = {
11
10
  };
12
11
  export const tool = {
13
12
  name: 'sentiment_reports',
14
- 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 citations for a given category.\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/report_response',\n $defs: {\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```",
13
+ description: 'Get citations for a given category.',
15
14
  inputSchema: {
16
15
  type: 'object',
17
16
  properties: {
@@ -57,61 +56,265 @@ export const tool = {
57
56
  filters: {
58
57
  type: 'array',
59
58
  title: 'Filters',
60
- description: 'List of filters to apply to the report. Each filter has an operator, field, and value.',
59
+ description: 'List of filters to apply to the sentiment report.',
61
60
  items: {
62
- type: 'object',
63
- title: "Filter[Literal['asset_name', 'theme', 'region', 'topic', 'model', 'tag']]",
64
- properties: {
65
- field: {
66
- type: 'string',
67
- title: 'Field',
68
- enum: ['asset_name', 'theme', 'region', 'topic', 'model', 'tag'],
61
+ anyOf: [
62
+ {
63
+ type: 'object',
64
+ title: 'AssetNameFilter',
65
+ description: 'Filter by asset name',
66
+ properties: {
67
+ field: {
68
+ type: 'string',
69
+ title: 'Field',
70
+ enum: ['asset_name'],
71
+ },
72
+ operator: {
73
+ type: 'string',
74
+ title: 'Operator',
75
+ enum: [
76
+ 'is',
77
+ 'not_is',
78
+ 'in',
79
+ 'not_in',
80
+ 'contains',
81
+ 'not_contains',
82
+ 'matches',
83
+ 'contains_case_insensitive',
84
+ 'not_contains_case_insensitive',
85
+ ],
86
+ },
87
+ value: {
88
+ anyOf: [
89
+ {
90
+ type: 'string',
91
+ },
92
+ {
93
+ type: 'array',
94
+ items: {
95
+ type: 'string',
96
+ },
97
+ },
98
+ ],
99
+ title: 'Value',
100
+ },
101
+ },
102
+ required: ['field', 'operator', 'value'],
69
103
  },
70
- operator: {
71
- type: 'string',
72
- title: 'Operator',
73
- enum: [
74
- 'is',
75
- 'not_is',
76
- 'in',
77
- 'not_in',
78
- 'contains',
79
- 'not_contains',
80
- 'contains_case_insensitive',
81
- 'not_contains_case_insensitive',
82
- 'matches',
83
- ],
104
+ {
105
+ type: 'object',
106
+ title: 'ThemeFilter',
107
+ description: 'Filter by theme',
108
+ properties: {
109
+ field: {
110
+ type: 'string',
111
+ title: 'Field',
112
+ enum: ['theme'],
113
+ },
114
+ operator: {
115
+ type: 'string',
116
+ title: 'Operator',
117
+ enum: [
118
+ 'is',
119
+ 'not_is',
120
+ 'in',
121
+ 'not_in',
122
+ 'contains',
123
+ 'not_contains',
124
+ 'matches',
125
+ 'contains_case_insensitive',
126
+ 'not_contains_case_insensitive',
127
+ ],
128
+ },
129
+ value: {
130
+ anyOf: [
131
+ {
132
+ type: 'string',
133
+ },
134
+ {
135
+ type: 'array',
136
+ items: {
137
+ type: 'string',
138
+ },
139
+ },
140
+ ],
141
+ title: 'Value',
142
+ },
143
+ },
144
+ required: ['field', 'operator', 'value'],
84
145
  },
85
- value: {
86
- anyOf: [
87
- {
146
+ {
147
+ type: 'object',
148
+ title: 'RegionIdFilter',
149
+ properties: {
150
+ field: {
88
151
  type: 'string',
89
- title: 'FilterStringValue',
90
- },
91
- {
92
- type: 'array',
93
- title: 'FilterStringListValue',
94
- items: {
95
- type: 'string',
96
- },
97
- },
98
- {
99
- type: 'integer',
100
- title: 'FilterIntegerValue',
101
- },
102
- {
103
- type: 'array',
104
- title: 'FilterIntegerListValue',
105
- items: {
106
- type: 'integer',
107
- },
108
- },
109
- ],
110
- title: 'Value',
111
- description: 'Value for the filter. Can be a single value or a list of depending on the operator.',
152
+ title: 'Field',
153
+ description: '- `region` - Deprecated',
154
+ enum: ['region_id', 'region'],
155
+ },
156
+ operator: {
157
+ type: 'string',
158
+ title: 'Operator',
159
+ enum: ['is', 'not_is', 'in', 'not_in'],
160
+ },
161
+ value: {
162
+ anyOf: [
163
+ {
164
+ type: 'string',
165
+ },
166
+ {
167
+ type: 'array',
168
+ items: {
169
+ type: 'string',
170
+ },
171
+ },
172
+ ],
173
+ title: 'Value',
174
+ },
175
+ },
176
+ required: ['field', 'operator', 'value'],
112
177
  },
113
- },
114
- required: ['field', 'operator', 'value'],
178
+ {
179
+ type: 'object',
180
+ title: 'TopicIdFilter',
181
+ properties: {
182
+ field: {
183
+ type: 'string',
184
+ title: 'Field',
185
+ description: '- `topic` - Deprecated',
186
+ enum: ['topic_id', 'topic'],
187
+ },
188
+ operator: {
189
+ type: 'string',
190
+ title: 'Operator',
191
+ enum: ['is', 'not_is', 'in', 'not_in'],
192
+ },
193
+ value: {
194
+ anyOf: [
195
+ {
196
+ type: 'string',
197
+ },
198
+ {
199
+ type: 'array',
200
+ items: {
201
+ type: 'string',
202
+ },
203
+ },
204
+ ],
205
+ title: 'Value',
206
+ },
207
+ },
208
+ required: ['field', 'operator', 'value'],
209
+ },
210
+ {
211
+ type: 'object',
212
+ title: 'ModelIdFilter',
213
+ properties: {
214
+ field: {
215
+ type: 'string',
216
+ title: 'Field',
217
+ description: '- `model` - Deprecated',
218
+ enum: ['model_id', 'model'],
219
+ },
220
+ operator: {
221
+ type: 'string',
222
+ title: 'Operator',
223
+ enum: ['is', 'not_is', 'in', 'not_in'],
224
+ },
225
+ value: {
226
+ anyOf: [
227
+ {
228
+ type: 'string',
229
+ },
230
+ {
231
+ type: 'array',
232
+ items: {
233
+ type: 'string',
234
+ },
235
+ },
236
+ ],
237
+ title: 'Value',
238
+ },
239
+ },
240
+ required: ['field', 'operator', 'value'],
241
+ },
242
+ {
243
+ type: 'object',
244
+ title: 'TagIdFilter',
245
+ properties: {
246
+ field: {
247
+ type: 'string',
248
+ title: 'Field',
249
+ description: '- `tag` - Deprecated',
250
+ enum: ['tag_id', 'tag'],
251
+ },
252
+ operator: {
253
+ type: 'string',
254
+ title: 'Operator',
255
+ enum: ['is', 'not_is', 'in', 'not_in'],
256
+ },
257
+ value: {
258
+ anyOf: [
259
+ {
260
+ type: 'string',
261
+ },
262
+ {
263
+ type: 'array',
264
+ items: {
265
+ type: 'string',
266
+ },
267
+ },
268
+ ],
269
+ title: 'Value',
270
+ },
271
+ },
272
+ required: ['field', 'operator', 'value'],
273
+ },
274
+ {
275
+ type: 'object',
276
+ title: 'PromptFilter',
277
+ description: 'Filter by prompt text',
278
+ properties: {
279
+ field: {
280
+ type: 'string',
281
+ title: 'Field',
282
+ enum: ['prompt'],
283
+ },
284
+ operator: {
285
+ type: 'string',
286
+ title: 'Operator',
287
+ enum: [
288
+ 'is',
289
+ 'not_is',
290
+ 'in',
291
+ 'not_in',
292
+ 'contains',
293
+ 'not_contains',
294
+ 'matches',
295
+ 'contains_case_insensitive',
296
+ 'not_contains_case_insensitive',
297
+ ],
298
+ },
299
+ value: {
300
+ anyOf: [
301
+ {
302
+ type: 'string',
303
+ },
304
+ {
305
+ type: 'array',
306
+ items: {
307
+ type: 'string',
308
+ },
309
+ },
310
+ ],
311
+ title: 'Value',
312
+ },
313
+ },
314
+ required: ['field', 'operator', 'value'],
315
+ },
316
+ ],
317
+ description: 'Filter by asset name',
115
318
  },
116
319
  },
117
320
  order_by: {
@@ -123,11 +326,6 @@ export const tool = {
123
326
  pagination: {
124
327
  $ref: '#/$defs/pagination',
125
328
  },
126
- jq_filter: {
127
- type: 'string',
128
- title: 'jq Filter',
129
- 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/).',
130
- },
131
329
  },
132
330
  required: ['category_id', 'end_date', 'metrics', 'start_date'],
133
331
  $defs: {
@@ -153,8 +351,8 @@ export const tool = {
153
351
  annotations: {},
154
352
  };
155
353
  export const handler = async (client, args) => {
156
- const { jq_filter, ...body } = args;
157
- return asTextContentResult(await maybeFilter(jq_filter, await client.reports.sentiment(body)));
354
+ const body = args;
355
+ return asTextContentResult(await client.reports.sentiment(body));
158
356
  };
159
357
  export default { metadata, tool, handler };
160
358
  //# sourceMappingURL=sentiment-reports.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"sentiment-reports.mjs","sourceRoot":"","sources":["../../src/tools/reports/sentiment-reports.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"sentiment-reports.mjs","sourceRoot":"","sources":["../../src/tools/reports/sentiment-reports.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"visibility-reports.d.mts","sourceRoot":"","sources":["../../src/tools/reports/visibility-reports.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,0BAA0B;OAEjE,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,QAAQ,MAAM,YAAY;AAEjC,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAoJlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,QAAQ,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,+DAGxF,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAHoC,QAAQ,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAKzF,wBAA2C"}
1
+ {"version":3,"file":"visibility-reports.d.mts","sourceRoot":"","sources":["../../src/tools/reports/visibility-reports.ts"],"names":[],"mappings":"OAEO,EAAE,QAAQ,EAAuB,MAAM,0BAA0B;OAEjE,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,QAAQ,MAAM,YAAY;AAEjC,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IA8SlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,QAAQ,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,+DAGxF,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAHoC,QAAQ,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAKzF,wBAA2C"}
@@ -1 +1 @@
1
- {"version":3,"file":"visibility-reports.d.ts","sourceRoot":"","sources":["../../src/tools/reports/visibility-reports.ts"],"names":[],"mappings":"OAGO,EAAE,QAAQ,EAAuB,MAAM,0BAA0B;OAEjE,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,QAAQ,MAAM,YAAY;AAEjC,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IAoJlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,QAAQ,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,+DAGxF,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAHoC,QAAQ,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAKzF,wBAA2C"}
1
+ {"version":3,"file":"visibility-reports.d.ts","sourceRoot":"","sources":["../../src/tools/reports/visibility-reports.ts"],"names":[],"mappings":"OAEO,EAAE,QAAQ,EAAuB,MAAM,0BAA0B;OAEjE,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,QAAQ,MAAM,YAAY;AAEjC,eAAO,MAAM,QAAQ,EAAE,QAOtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IA8SlB,CAAC;AAEF,eAAO,MAAM,OAAO,GAAU,QAAQ,QAAQ,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,+DAGxF,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAHoC,QAAQ,QAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS;;AAKzF,wBAA2C"}