list_datasets

Pack: eurostat · Endpoint: https://gateway.pipeworx.io/eurostat/mcp

List popular Eurostat datasets organized by theme. Returns a curated list of commonly used dataset codes with descriptions. No parameters needed.

Example call

Arguments

{}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('list_datasets', {});

Response shape

Always returns: note, datasets

FieldTypeDescription
notestringUsage note about the curated list
datasetsarrayCurated list of popular Eurostat datasets
Full JSON Schema
{
  "type": "object",
  "properties": {
    "note": {
      "type": "string",
      "description": "Usage note about the curated list"
    },
    "datasets": {
      "type": "array",
      "description": "Curated list of popular Eurostat datasets",
      "items": {
        "type": "object",
        "properties": {
          "code": {
            "type": "string",
            "description": "Dataset code identifier"
          },
          "theme": {
            "type": "string",
            "description": "Thematic category (e.g. Economy, Prices, Labour)"
          },
          "title": {
            "type": "string",
            "description": "Dataset title"
          }
        },
        "required": [
          "code",
          "theme",
          "title"
        ]
      }
    }
  },
  "required": [
    "note",
    "datasets"
  ]
}

Connect

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

{
  "mcpServers": {
    "eurostat": {
      "url": "https://gateway.pipeworx.io/eurostat/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026