cjeu_judgment

Pack: eur-lex · Connect: https://pipeworx.io/mcp (see Connect below for a single-pack URL)

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/cjeu_judgment for the schema, then POST the same URL with its arguments for the data.

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 — every tool in the catalog, including this one — or use one-click install buttons:

{
  "mcpServers": {
    "pipeworx": {
      "url": "https://pipeworx.io/mcp"
    }
  }
}
Connect to just the eur-lex pack
{
  "mcpServers": {
    "eur-lex": {
      "url": "https://gateway.pipeworx.io/eur-lex/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 25, 2026