echr_judgment

Pack: hudoc · Endpoint: https://gateway.pipeworx.io/hudoc/mcp

Fetch the full text of one ECHR document by its itemid (from echr_search, e.g. “001-249132”). Returns the judgment/decision body converted to plain text, paged. Very recently published items (within a few days) sometimes have no converted text yet — the tool says so rather than returning nothing silently; echr_search’s conclusion field is available immediately even then.

Parameters

NameTypeRequiredDescription
itemidstringyesHUDOC itemid from echr_search, e.g. “001-249132”.
max_charsnumbernoMax characters to return (default 12000, max 40000).
offsetnumbernoCharacter offset, for paging through a long judgment (default 0).

Example call

Arguments

{
  "itemid": "001-249132"
}

curl

curl -X POST https://gateway.pipeworx.io/hudoc/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"echr_judgment","arguments":{"itemid":"001-249132"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('echr_judgment', {
  "itemid": "001-249132"
});

Connect

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

{
  "mcpServers": {
    "hudoc": {
      "url": "https://gateway.pipeworx.io/hudoc/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 13, 2026