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
@@ -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: 'reports',
@@ -14,7 +13,7 @@ exports.metadata = {
14
13
  };
15
14
  exports.tool = {
16
15
  name: 'visibility_reports',
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\nQuery visibility report.\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```",
16
+ description: 'Query visibility report.',
18
17
  inputSchema: {
19
18
  type: 'object',
20
19
  properties: {
@@ -60,61 +59,223 @@ exports.tool = {
60
59
  filters: {
61
60
  type: 'array',
62
61
  title: 'Filters',
63
- description: 'List of filters to apply to the report. Each filter has an operator, field, and value.',
62
+ description: 'List of filters to apply to the visibility report.',
64
63
  items: {
65
- type: 'object',
66
- title: "Filter[Literal['region', 'topic', 'model', 'asset_name', 'prompt', 'tag']]",
67
- properties: {
68
- field: {
69
- type: 'string',
70
- title: 'Field',
71
- enum: ['region', 'topic', 'model', 'asset_name', 'prompt', 'tag'],
64
+ anyOf: [
65
+ {
66
+ type: 'object',
67
+ title: 'RegionIdFilter',
68
+ properties: {
69
+ field: {
70
+ type: 'string',
71
+ title: 'Field',
72
+ description: '- `region` - Deprecated',
73
+ enum: ['region_id', 'region'],
74
+ },
75
+ operator: {
76
+ type: 'string',
77
+ title: 'Operator',
78
+ enum: ['is', 'not_is', 'in', 'not_in'],
79
+ },
80
+ value: {
81
+ anyOf: [
82
+ {
83
+ type: 'string',
84
+ },
85
+ {
86
+ type: 'array',
87
+ items: {
88
+ type: 'string',
89
+ },
90
+ },
91
+ ],
92
+ title: 'Value',
93
+ },
94
+ },
95
+ required: ['field', 'operator', 'value'],
72
96
  },
73
- operator: {
74
- type: 'string',
75
- title: 'Operator',
76
- enum: [
77
- 'is',
78
- 'not_is',
79
- 'in',
80
- 'not_in',
81
- 'contains',
82
- 'not_contains',
83
- 'contains_case_insensitive',
84
- 'not_contains_case_insensitive',
85
- 'matches',
86
- ],
97
+ {
98
+ type: 'object',
99
+ title: 'ModelIdFilter',
100
+ properties: {
101
+ field: {
102
+ type: 'string',
103
+ title: 'Field',
104
+ description: '- `model` - Deprecated',
105
+ enum: ['model_id', 'model'],
106
+ },
107
+ operator: {
108
+ type: 'string',
109
+ title: 'Operator',
110
+ enum: ['is', 'not_is', 'in', 'not_in'],
111
+ },
112
+ value: {
113
+ anyOf: [
114
+ {
115
+ type: 'string',
116
+ },
117
+ {
118
+ type: 'array',
119
+ items: {
120
+ type: 'string',
121
+ },
122
+ },
123
+ ],
124
+ title: 'Value',
125
+ },
126
+ },
127
+ required: ['field', 'operator', 'value'],
87
128
  },
88
- value: {
89
- anyOf: [
90
- {
129
+ {
130
+ type: 'object',
131
+ title: 'TopicIdFilter',
132
+ properties: {
133
+ field: {
134
+ type: 'string',
135
+ title: 'Field',
136
+ description: '- `topic` - Deprecated',
137
+ enum: ['topic_id', 'topic'],
138
+ },
139
+ operator: {
91
140
  type: 'string',
92
- title: 'FilterStringValue',
93
- },
94
- {
95
- type: 'array',
96
- title: 'FilterStringListValue',
97
- items: {
98
- type: 'string',
99
- },
100
- },
101
- {
102
- type: 'integer',
103
- title: 'FilterIntegerValue',
104
- },
105
- {
106
- type: 'array',
107
- title: 'FilterIntegerListValue',
108
- items: {
109
- type: 'integer',
110
- },
111
- },
112
- ],
113
- title: 'Value',
114
- description: 'Value for the filter. Can be a single value or a list of depending on the operator.',
141
+ title: 'Operator',
142
+ enum: ['is', 'not_is', 'in', 'not_in'],
143
+ },
144
+ value: {
145
+ anyOf: [
146
+ {
147
+ type: 'string',
148
+ },
149
+ {
150
+ type: 'array',
151
+ items: {
152
+ type: 'string',
153
+ },
154
+ },
155
+ ],
156
+ title: 'Value',
157
+ },
158
+ },
159
+ required: ['field', 'operator', 'value'],
115
160
  },
116
- },
117
- required: ['field', 'operator', 'value'],
161
+ {
162
+ type: 'object',
163
+ title: 'AssetNameFilter',
164
+ description: 'Filter by asset name',
165
+ properties: {
166
+ field: {
167
+ type: 'string',
168
+ title: 'Field',
169
+ enum: ['asset_name'],
170
+ },
171
+ operator: {
172
+ type: 'string',
173
+ title: 'Operator',
174
+ enum: [
175
+ 'is',
176
+ 'not_is',
177
+ 'in',
178
+ 'not_in',
179
+ 'contains',
180
+ 'not_contains',
181
+ 'matches',
182
+ 'contains_case_insensitive',
183
+ 'not_contains_case_insensitive',
184
+ ],
185
+ },
186
+ value: {
187
+ anyOf: [
188
+ {
189
+ type: 'string',
190
+ },
191
+ {
192
+ type: 'array',
193
+ items: {
194
+ type: 'string',
195
+ },
196
+ },
197
+ ],
198
+ title: 'Value',
199
+ },
200
+ },
201
+ required: ['field', 'operator', 'value'],
202
+ },
203
+ {
204
+ type: 'object',
205
+ title: 'TagIdFilter',
206
+ properties: {
207
+ field: {
208
+ type: 'string',
209
+ title: 'Field',
210
+ description: '- `tag` - Deprecated',
211
+ enum: ['tag_id', 'tag'],
212
+ },
213
+ operator: {
214
+ type: 'string',
215
+ title: 'Operator',
216
+ enum: ['is', 'not_is', 'in', 'not_in'],
217
+ },
218
+ value: {
219
+ anyOf: [
220
+ {
221
+ type: 'string',
222
+ },
223
+ {
224
+ type: 'array',
225
+ items: {
226
+ type: 'string',
227
+ },
228
+ },
229
+ ],
230
+ title: 'Value',
231
+ },
232
+ },
233
+ required: ['field', 'operator', 'value'],
234
+ },
235
+ {
236
+ type: 'object',
237
+ title: 'PromptFilter',
238
+ description: 'Filter by prompt text',
239
+ properties: {
240
+ field: {
241
+ type: 'string',
242
+ title: 'Field',
243
+ enum: ['prompt'],
244
+ },
245
+ operator: {
246
+ type: 'string',
247
+ title: 'Operator',
248
+ enum: [
249
+ 'is',
250
+ 'not_is',
251
+ 'in',
252
+ 'not_in',
253
+ 'contains',
254
+ 'not_contains',
255
+ 'matches',
256
+ 'contains_case_insensitive',
257
+ 'not_contains_case_insensitive',
258
+ ],
259
+ },
260
+ value: {
261
+ anyOf: [
262
+ {
263
+ type: 'string',
264
+ },
265
+ {
266
+ type: 'array',
267
+ items: {
268
+ type: 'string',
269
+ },
270
+ },
271
+ ],
272
+ title: 'Value',
273
+ },
274
+ },
275
+ required: ['field', 'operator', 'value'],
276
+ },
277
+ ],
278
+ description: 'Filter by asset name',
118
279
  },
119
280
  },
120
281
  order_by: {
@@ -126,11 +287,6 @@ exports.tool = {
126
287
  pagination: {
127
288
  $ref: '#/$defs/pagination',
128
289
  },
129
- jq_filter: {
130
- type: 'string',
131
- title: 'jq Filter',
132
- 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/).',
133
- },
134
290
  },
135
291
  required: ['category_id', 'end_date', 'metrics', 'start_date'],
136
292
  $defs: {
@@ -156,8 +312,8 @@ exports.tool = {
156
312
  annotations: {},
157
313
  };
158
314
  const handler = async (client, args) => {
159
- const { jq_filter, ...body } = args;
160
- return (0, types_1.asTextContentResult)(await (0, filtering_1.maybeFilter)(jq_filter, await client.reports.visibility(body)));
315
+ const body = args;
316
+ return (0, types_1.asTextContentResult)(await client.reports.visibility(body));
161
317
  };
162
318
  exports.handler = handler;
163
319
  exports.default = { metadata: exports.metadata, tool: exports.tool, handler: exports.handler };
@@ -1 +1 @@
1
- {"version":3,"file":"visibility-reports.js","sourceRoot":"","sources":["../../src/tools/reports/visibility-reports.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"visibility-reports.js","sourceRoot":"","sources":["../../src/tools/reports/visibility-reports.ts"],"names":[],"mappings":"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"}