list_articles

Pack: eur-lex · Endpoint: https://gateway.pipeworx.io/eur-lex/mcp

Table of contents for an act: every Article number and its heading. Use to discover which Article to quote before calling get_article.

Parameters

NameTypeRequiredDescription
celexstringyesCELEX id or a known alias (e.g. “DORA”).
langstringnoISO 639-2/B language code (default “eng”).

Example call

Arguments

{
  "celex": "GDPR"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('list_articles', {
  "celex": "GDPR"
});

More examples

{
  "celex": "32023R1230",
  "lang": "deu"
}

Connect

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

{
  "mcpServers": {
    "eur-lex": {
      "url": "https://gateway.pipeworx.io/eur-lex/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 10, 2026