search_legislation

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

Full-text search of EU legislation titles via the EUR-Lex SPARQL endpoint. Returns CELEX id, English title and document date. Use when the act is not in compliance_index, or to find related/amending acts.

Parameters

NameTypeRequiredDescription
querystringyesKeyword(s) that must appear in the English title, e.g. “cybersecurity certification”.
typestringnoOptional: restrict to a legal act type.
limitnumbernoMax results (default 10, max 25).

Example call

Arguments

{
  "query": "cybersecurity certification"
}

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":"search_legislation","arguments":{"query":"cybersecurity certification"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search_legislation', {
  "query": "cybersecurity certification"
});

More examples

{
  "query": "data protection",
  "type": "regulation",
  "limit": 15
}

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