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