You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"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\nCreate a download URL for a dataset.\n\nCreates a secure, time-limited download URL that allows downloading\nthe dataset data. The URL can be used to access the dataset file\nwithout requiring authentication.\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/dataset_create_download_url_response',\n $defs: {\n dataset_create_download_url_response: {\n type: 'string',\n title: 'Response Create Download Url Datasets Dataset Id Create Download Url Get'\n }\n }\n}\n```",
22
+
inputSchema: {
23
+
type: 'object',
24
+
properties: {
25
+
dataset_id: {
26
+
type: 'string',
27
+
title: 'Dataset Id',
28
+
},
29
+
jq_filter: {
30
+
type: 'string',
31
+
title: 'jq Filter',
32
+
description:
33
+
'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/).',
"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\nDelete a dataset by ID.\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/dataset_delete_response',\n $defs: {\n dataset_delete_response: {\n type: 'boolean',\n title: 'Response Delete Dataset Datasets Dataset Id Delete'\n }\n }\n}\n```",
22
+
inputSchema: {
23
+
type: 'object',
24
+
properties: {
25
+
dataset_id: {
26
+
type: 'string',
27
+
title: 'Dataset Id',
28
+
},
29
+
jq_filter: {
30
+
type: 'string',
31
+
title: 'jq Filter',
32
+
description:
33
+
'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/).',
"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\nList all datasets for the specified project.\n\nRetrieves all datasets that belong to the specified project.\nThe project must belong to the current user's tenant.\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/dataset_list_response',\n $defs: {\n dataset_list_response: {\n type: 'array',\n title: 'Response List Datasets Datasets Get',\n items: {\n $ref: '#/$defs/dataset'\n }\n },\n dataset: {\n type: 'object',\n title: 'Dataset',\n description: 'Dataset database model.',\n properties: {\n name: {\n type: 'string',\n title: 'Name'\n },\n projectId: {\n type: 'string',\n title: 'Projectid'\n },\n id: {\n type: 'string',\n title: 'Id'\n },\n createdAt: {\n type: 'string',\n title: 'Createdat',\n description: 'Timestamp when the record was created',\n format: 'date-time'\n },\n description: {\n type: 'string',\n title: 'Description'\n },\n entries: {\n type: 'integer',\n title: 'Entries'\n },\n schema: {\n type: 'string',\n title: 'Schema'\n },\n source: {\n type: 'string',\n title: 'DatasetSourceEnum',\n enum: [ 'UPLOADED',\n 'GENERATED'\n ]\n },\n status: {\n type: 'string',\n title: 'DatasetStatus',\n enum: [ 'READY',\n 'EMPTY',\n 'GENERATING'\n ]\n },\n storageBytes: {\n type: 'integer',\n title: 'Storagebytes'\n },\n updatedAt: {\n type: 'string',\n title: 'Updatedat',\n description: 'Timestamp when the record was last updated',\n format: 'date-time'\n }\n },\n required: [ 'name',\n 'projectId'\n ]\n }\n }\n}\n```",
22
+
inputSchema: {
23
+
type: 'object',
24
+
properties: {
25
+
projectId: {
26
+
type: 'string',
27
+
title: 'Projectid',
28
+
description: 'The ID of the project',
29
+
},
30
+
jq_filter: {
31
+
type: 'string',
32
+
title: 'jq Filter',
33
+
description:
34
+
'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/).',
"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 a dataset by ID.\n\nRetrieves a specific dataset by its ID. The dataset must belong to the\nspecified project, which must belong to the current user's tenant.\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/dataset',\n $defs: {\n dataset: {\n type: 'object',\n title: 'Dataset',\n description: 'Dataset database model.',\n properties: {\n name: {\n type: 'string',\n title: 'Name'\n },\n projectId: {\n type: 'string',\n title: 'Projectid'\n },\n id: {\n type: 'string',\n title: 'Id'\n },\n createdAt: {\n type: 'string',\n title: 'Createdat',\n description: 'Timestamp when the record was created',\n format: 'date-time'\n },\n description: {\n type: 'string',\n title: 'Description'\n },\n entries: {\n type: 'integer',\n title: 'Entries'\n },\n schema: {\n type: 'string',\n title: 'Schema'\n },\n source: {\n type: 'string',\n title: 'DatasetSourceEnum',\n enum: [ 'UPLOADED',\n 'GENERATED'\n ]\n },\n status: {\n type: 'string',\n title: 'DatasetStatus',\n enum: [ 'READY',\n 'EMPTY',\n 'GENERATING'\n ]\n },\n storageBytes: {\n type: 'integer',\n title: 'Storagebytes'\n },\n updatedAt: {\n type: 'string',\n title: 'Updatedat',\n description: 'Timestamp when the record was last updated',\n format: 'date-time'\n }\n },\n required: [ 'name',\n 'projectId'\n ]\n }\n }\n}\n```",
22
+
inputSchema: {
23
+
type: 'object',
24
+
properties: {
25
+
dataset_id: {
26
+
type: 'string',
27
+
title: 'Dataset Id',
28
+
},
29
+
jq_filter: {
30
+
type: 'string',
31
+
title: 'jq Filter',
32
+
description:
33
+
'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/).',
0 commit comments