data.gov.il (Israel)
liveGovernmentDataIsrael national open-data portal (CKAN API).
Tools
search_datasetsSearch the data.gov.il catalogue (CKAN package_search). Returns matching datasets with titles/descriptions (mostly Hebrew). Query may be Hebrew or English.
No parameters required.
Try it
dataset_detailsFull dataset record by id or slug (CKAN package_show), including its resources. Read each resource's "id" (resource_id) and "datastore_active" flag to know which can be queried row-by-row via datastor
No parameters required.
Try it
datastore_queryRead actual table rows from a resource via CKAN datastore_search. Works only for resources with datastore_active=true (get the resource_id from dataset_details). Field names and values are often Hebre
No parameters required.
Try it
list_organizationsList publishing organizations (ministries/agencies) on data.gov.il (CKAN organization_list).
No parameters required.
Try it
list_groupsList thematic groups/categories on data.gov.il (CKAN group_list).
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/datagov-il/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/datagov-il/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_datasets","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search_datasets", {});// Or ask in plain English:
const answer = await px.ask("israel national open-data portal (ckan api)");