search_datasets

Pack: jersey-opendata · Endpoint: https://gateway.pipeworx.io/jersey-opendata/mcp

Search the Government of Jersey open-data catalogue (opendata.gov.je, CKAN package_search). Jersey is a Channel Island Crown Dependency; data is published by Statistics Jersey. Returns matching datasets with titles/descriptions/resources (English).

Parameters

NameTypeRequiredDescription
querystringyesSearch terms. e.g. “population”, “RPI inflation”, “census”, “GVA”.
fqstringnoSolr filter query, e.g. “organization:statistics-jersey” or “groups:economy-and-business”.
rowsnumbernoMax results, 1-1000 (default 25).
startnumberno0-based offset for paging.
sortstringnoSort spec, e.g. “metadata_modified desc”.

Example call

Arguments

{
  "query": "population"
}

curl

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "query": "RPI inflation",
  "fq": "organization:statistics-jersey",
  "rows": 50
}

Connect

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

{
  "mcpServers": {
    "jersey-opendata": {
      "url": "https://gateway.pipeworx.io/jersey-opendata/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 1, 2026