datastore_search
Search and retrieve data from specified resources in the Datagov Israel MCP datastore, with options to filter, sort, and limit results for precise queries.
Instructions
Search a datastore resource.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
distinct | No | ||
fields | No | ||
include_total | No | ||
limit | No | ||
offset | No | ||
plain | No | ||
q | No | ||
records_format | No | objects | |
resource_id | Yes | ||
sort | No |
Input Schema (JSON Schema)
{
"properties": {
"distinct": {
"default": false,
"title": "Distinct",
"type": "boolean"
},
"fields": {
"default": "",
"title": "Fields",
"type": "string"
},
"include_total": {
"default": true,
"title": "Include Total",
"type": "boolean"
},
"limit": {
"default": 100,
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"title": "Offset",
"type": "integer"
},
"plain": {
"default": true,
"title": "Plain",
"type": "boolean"
},
"q": {
"default": "",
"title": "Q",
"type": "string"
},
"records_format": {
"default": "objects",
"title": "Records Format",
"type": "string"
},
"resource_id": {
"title": "Resource Id",
"type": "string"
},
"sort": {
"default": "",
"title": "Sort",
"type": "string"
}
},
"required": [
"resource_id"
],
"type": "object"
}