tags

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

List or search keyword tags used to annotate datasets on the EU open-data portal; pass query to filter by prefix, limit controls page size (default 100).

Parameters

NameTypeRequiredDescription
querystringno
limitnumberno

Example call

Arguments

{
  "query": "climate"
}

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "query": "energy",
  "limit": 15
}

Response shape

FieldTypeDescription
dataarrayArray of tags
Full JSON Schema
{
  "type": "object",
  "description": "List or search results of tags",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of tags",
      "items": {
        "type": "object",
        "description": "Tag 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