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
| Name | Type | Required | Description |
|---|---|---|---|
case_number | string | yes | As cited, e.g. “C-97/23” (Court of Justice) or “T-144/25” (General Court). A CELEX id like “62023CJ0097” also works. |
max_chars | number | no | Max characters to return (default 12000, max 40000). |
offset | number | no | Character 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.