search_datasets

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

Search Slovenia Open Data (Slovenia) for datasets by keyword. Returns each dataset’s id/name, title, organization, and its resources (each with a resource_id for query_resource).

Parameters

NameTypeRequiredDescription
querystringnoKeyword(s); blank/”*” lists all.
limitnumbernoMax datasets (1-100, default 20).
offsetnumbernoPagination offset.

Example call

Arguments

{
  "query": "budget"
}

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":"search_datasets","arguments":{"query":"budget"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search_datasets', {
  "query": "budget"
});

More examples

{
  "query": "population",
  "limit": 10,
  "offset": 0
}

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