cjeu_judgment

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

Get the FULL TEXT of an EU court judgment from its case number — “C-97/23”, “T-144/25” — or its CELEX id. Resolves the case number people actually cite into the document. Use after cjeu_search, or whenever a case number appears in a filing or article.

Parameters

NameTypeRequiredDescription
case_numberstringyesAs cited, e.g. “C-97/23” (Court of Justice) or “T-144/25” (General Court). A CELEX id like “62023CJ0097” also works.
max_charsnumbernoMax characters to return (default 12000, max 40000).
offsetnumbernoCharacter offset, for paging through a long judgment (default 0).

Example call

Arguments

{
  "case_number": "C-97/23"
}

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":"cjeu_judgment","arguments":{"case_number":"C-97/23"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('cjeu_judgment', {
  "case_number": "C-97/23"
});

More examples

{
  "case_number": "T-144/25"
}

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 August 12, 2026