HUDOC MCP
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@HUDOC MCPfind ECHR rulings on Article 8 surveillance in France"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@pipeworx/hudoc
European Court of Human Rights (ECHR / Strasbourg) case law — 231,000+ judgments, decisions, advisory opinions, resolutions and communicated cases across the 46 Council of Europe states, served live from the Court's own HUDOC database.
Part of Pipeworx — an MCP gateway connecting AI agents to 1573+ live data sources.
Tools
echr_search(query?, article?, respondent?, collection?, importance?, date_from?, date_to?, limit?)— search case law by free text, Convention Article, respondent state and/or date. Returns case name, application number(s), Article(s), conclusion (violation/no violation) and the itemid to read the full text with.echr_judgment(itemid, max_chars?, offset?)— full text of one document by its HUDOC itemid, paged.
Related MCP server: JurisCassation MCP Server
Auth
Keyless. No registration, no API key.
Data sources
https://hudoc.echr.coe.int/app/query/results — the search API HUDOC's own web UI calls. Query syntax is a Lucene-ish field grammar (
contentsitename=ECHR AND (documentcollectionid2:JUDGMENTS) AND article=8 AND respondent=FRA AND kpdate>=2024-01-01 AND "surveillance"). Free text is a bare double-quoted phrase with no field name — a field-qualified phrase likeconclusion="freedom of expression"silently returns zero results.https://hudoc.echr.coe.int/app/conversion/docx/html/body?library=ECHR&id=... — the document body, converted from the Court's stored DOCX to HTML. This is NOT the
/eng?i=...page URL: that URL is a static Angular SPA shell — same ~15.7KB byte-for-byte regardless of itemid, including nonexistent ones — and never contains the judgment text. The conversion endpoint is what the SPA itself calls client-side to render the document.Very recently published documents (seen: within ~2-4 days) can 204 on the conversion endpoint — the HTML conversion lags the search index.
echr_judgmentreports this explicitly (found: false, reason: "not_yet_converted") rather than returning empty text silently;echr_search'sconclusionfield is populated immediately regardless.French-language-only documents (
doctypestartingHF) frequently 204 on the same endpoint even when old;echr_searchdefaults tolanguageisocode=ENGand excludesdoctype=PR(press-release stubs, which otherwise leak into every collection filter) to route around both traps.respondenttakes an ISO3166-1 alpha-3 code (FRA,GBR, ...); the tool also accepts common country names via a small lookup table covering all 46 member states plus Russia (expelled 2022, but its pre-expulsion case law is still in HUDOC and still gets asked about).
Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"hudoc": {
"url": "https://gateway.pipeworx.io/hudoc/mcp"
}
}
}What this endpoint actually serves
tools/list at https://gateway.pipeworx.io/hudoc/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}Both URLs reach the same gateway and the same 1573+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Standalone (no gateway account)
This package also runs as a local stdio MCP server — no Pipeworx account, no gateway round-trip:
{
"mcpServers": {
"hudoc": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-hudoc"]
}
}
}Or run it directly to confirm it starts:
npx -y @pipeworx/mcp-hudocIt speaks MCP over stdin/stdout and answers initialize/tools/list/tools/call
for only this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.
Using with ask_pipeworx
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Hudoc data" })The gateway picks the right tool and fills the arguments automatically.
More
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Search U.S. case law, fetch opinions, and ask matter-aware legal questions over your documents.
LawOracle — 20 legal AI tools: case law search, contracts, EU regulations, citation graph.
Search US court opinions, federal dockets, judges, citations, and oral arguments via CourtListener.
Case law search, court decisions and súmulas, across indexed public sources (STF, STJ, TST, state co
Related MCP Servers
- AlicenseNot gradedqualityNot gradedmaintenanceProvides access to Swiss court decisions through the entscheidsuche.ch API, enabling search, retrieval, and analysis of legal documents across different cantons and courts using natural language queries.-
- FlicenseNot gradedqualityDmaintenanceProvides AI agents with access to Moroccan Court of Cassation decisions through search tools and PDF retrieval. Enables both real-time queries against the official portal and local searches across indexed decisions.-
- AlicenseAqualityAmaintenanceEnables searching and retrieving EU legal documents (regulations, directives, court decisions) via the EUR-Lex Cellar API, supporting full-text search, metadata, citations, and consolidated versions without requiring an API key.11500 npm6MIT
- AlicenseAqualityDmaintenanceEnables searching and retrieving Russian legal cases, court documents, participant information, judge statistics, and hearing schedules from Casebook/Pravo.ru.88 npmMIT