query_resource

Pack: podatki-si · Endpoint: https://gateway.pipeworx.io/podatki-si/mcp

Pull rows from a tabular Slovenia Open Data resource (CKAN DataStore) by resource_id (from a dataset’s resources). Optional full-text q, limit, offset. Note: only resources with the DataStore enabled are queryable.

Parameters

NameTypeRequiredDescription
resource_idstringyesA resource_id from dataset/search_datasets.
qstringnoOptional full-text filter over the rows.
limitnumbernoMax rows (default 100).
offsetnumbernoPagination offset.

Example call

Arguments

{
  "resource_id": "d8f5c3e2-1a9b-4f2e-8c7d-5e3f9a2b1c0d"
}

curl

curl -X POST https://gateway.pipeworx.io/podatki-si/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"query_resource","arguments":{"resource_id":"d8f5c3e2-1a9b-4f2e-8c7d-5e3f9a2b1c0d"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('query_resource', {
  "resource_id": "d8f5c3e2-1a9b-4f2e-8c7d-5e3f9a2b1c0d"
});

More examples

{
  "resource_id": "d8f5c3e2-1a9b-4f2e-8c7d-5e3f9a2b1c0d",
  "q": "Ljubljana",
  "limit": 50
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "podatki-si": {
      "url": "https://gateway.pipeworx.io/podatki-si/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 10, 2026