groups

Pack: data-europa · Endpoint: https://gateway.pipeworx.io/data-europa/mcp

List thematic dataset categories (groups) on the EU open-data portal (e.g. environment, transport, economy); returns category names and IDs for use as filters in search.

Parameters

NameTypeRequiredDescription
limitnumberno

Example call

Arguments

{
  "limit": 20
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('groups', {
  "limit": 20
});

Response shape

FieldTypeDescription
dataarrayArray of groups
Full JSON Schema
{
  "type": "object",
  "description": "List of themes/groups/categories",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of groups",
      "items": {
        "type": "object",
        "description": "Group/category metadata"
      }
    }
  }
}

Connect

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

{
  "mcpServers": {
    "data-europa": {
      "url": "https://gateway.pipeworx.io/data-europa/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026