search_datasets

Pack: dati-it · Endpoint: https://gateway.pipeworx.io/dati-it/mcp

Search the dati.gov.it catalogue of Italian public-administration open data (CKAN package_search). Returns matching datasets with titles/descriptions (mostly Italian). Query may be Italian or English; Italian matches far more.

Parameters

NameTypeRequiredDescription
querystringyesSearch terms, Italian or English. e.g. “trasporti”, “salute”, “bilancio”, “health”.
fqstringnoSolr filter query, e.g. “organization:aci”, “tags:turismo”, or “res_format:CSV”.
rowsnumbernoMax results, 1-1000 (default 25).
startnumberno0-based offset for paging.
sortstringnoSort spec, e.g. “metadata_modified desc”.

Example call

Arguments

{
  "query": "trasporti"
}

curl

curl -X POST https://gateway.pipeworx.io/dati-it/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_datasets","arguments":{"query":"trasporti"}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "query": "salute",
  "fq": "res_format:CSV",
  "rows": 50
}

Connect

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

{
  "mcpServers": {
    "dati-it": {
      "url": "https://gateway.pipeworx.io/dati-it/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 1, 2026