Skip to main content
Glama

Server Details

Search French and European case law and French legal texts (codes, statutes, treaties).

Ownership verified
Status
Healthy
OAuth
Works in Glama
Last Tested
Transport
Streamable HTTP
URL
Repository
librejustice/librejustice
GitHub Stars
28
Server Listing
LibreJustice

Available Tools

5 tools
get_decisionGet DecisionA
Read-onlyIdempotent
Inspect

Fetch the full text and metadata of a decision by its url. The text carries inline markdown links to cited articles (/texte/, open with get_legal_text) and cited decisions (/decision/, open with get_decision); a citation spanning several articles (« articles 3 à 6 », « et suivants ») links its first article and appends the others as labelled links right after the span. appellateFate states in one line what became of THIS decision on review (INFIRMATION = reversed, it no longer stands; CONFIRMATION = upheld): read it before citing the decision as authority. caseChronology lists the prior AND subsequent decisions of the same case (appeal, pourvoi, renvoi). An absent fate or chronology never proves no recourse exists, only that none is linked in the corpus. commentaires carries the institutional commentary (official analyses inline, links to the rapporteur public's conclusions and related court documents): context, never the ruling, so quote the decision text and not a commentaire.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesA librejustice.fr decision URL, from a search_decisions hit or an inline citation link; search_decisions first if you have neither.

Output Schema

ParametersJSON Schema
NameRequiredDescription
urlYes
seatNo
textYes
titleYes
officeNo
solutionNo
procedureNo
dateLectureNo
legalDomainNo
officialUrlNo
publicationNo
commentairesNo
appellateFateNo
docketNumbersNo
caseChronologyNo
jurisdictionCodeNo
jurisdictionTypeYes

TDQS

A4.8/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, but the description adds significant behavioral context beyond that: how citation spans are linked, what appellateFate and caseChronology mean, and that commentaires are contextual and must not be quoted as the ruling. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense and somewhat long, but every sentence contributes essential operational or interpretive guidance. It front-loads the core fetch action and then systematically covers link handling, fate semantics, chronology, and commentary caveats. It could be tightened, but it is not padded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has an output schema and only one parameter, the description is complete for an agent to invoke it correctly: it explains the source of the URL, how to choose siblings, and how to interpret the key result fields. Nothing essential is missing for correct selection or invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema fully documents the single `url` parameter, so the baseline is 3. The description adds useful meaning by specifying that the URL should be a librejustice.fr decision URL obtained from a search_decisions hit or an inline citation link, which improves an agent's ability to supply the correct value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Fetch the full text and metadata of a decision by its `url`.' It clearly distinguishes get_decision from siblings by explaining that inline links to cited articles open with get_legal_text and cited decisions open with get_decision, and it routes URL discovery through search_decisions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says to call search_decisions first if you have neither a decision URL nor an inline citation link, and it tells the agent which sibling to use for cited articles versus cited decisions. It also warns that an absent appellateFate or caseChronology never proves no recourse exists, which is critical guidance for correct usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_my_activityList My ActivityA
Read-onlyIdempotent
Inspect

List the authenticated user's own activity, most recent first. kind selects which tab: 'searches' (past queries with their structured filters and source), 'bookmarks' or 'readingHistory' (decisions, each with title, a summary and the url to chain into get_decision), or 'all' to get the three at once. Only the requested tab(s) are populated. In readingHistory, lastSource == 'web' means the user opened the decision manually at least once (a genuine read); 'mcp' means it was only ever opened through this connector. Requires a connected account.

ParametersJSON Schema
NameRequiredDescriptionDefault
kindNoWhich tab to list: 'searches', 'bookmarks', 'readingHistory', or 'all' (default) for the three at once.all
limitNoMaximum number of entries per tab (1–100, default 50).

Output Schema

ParametersJSON Schema
NameRequiredDescription
searchesNo
bookmarksNo
readingHistoryNo

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already mark the operation read-only, idempotent, and non-destructive, and the description adds genuinely new behavioral context: most-recent-first ordering, only requested tabs being populated, the meaning of lastSource 'web' vs 'mcp', and the requirement of a connected account. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The first sentence is a front-loaded summary, and the subsequent sentences expand the kind parameter with no filler. It is dense but every clause carries decision-relevant information about behavior, output interpretation, or prerequisites.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With an output schema present, return-value details do not need repeating. The description covers authentication, ordering, tab population, chaining to get_decision, and per-kind semantics, leaving nothing an agent needs to select and invoke the tool correctly missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already documents both parameters with defaults and ranges, so the baseline is 3. The description goes beyond the schema by explaining what each kind returns, noting that 'all' returns the three tabs at once, and defining the readingHistory lastSource semantics relevant to returned data.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource—'List the authenticated user's own activity'—and immediately states ordering. It enumerates the three tab kinds and the 'all' aggregate, making the tool's scope clear and distinguishable from the sibling decision-search and retrieval tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives strong when-to-use context: for viewing the user's recent searches, bookmarks, or reading history, and explicitly says URLs from readingHistory chain into get_decision. It does not explicitly name sibling alternatives or exclusion cases, but the tab semantics make the intended use unambiguous.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_decisionsSearch DecisionsA
Read-onlyIdempotent
Inspect

Search decisions by meaning and keywords combined. Returns a shortlist: title, url, an overview (aiSummary: AI-written summary of what the decision is about, a machine paraphrase never quotable as the court's words; or snippet: the verbatim passage where your keywords matched) and metadata; get_decision reads the full text. Put constraints in the structured filters (jurisdiction, dates, articles, codes), keep the query for the legal issue. Values within one filter are OR'd; different filters are AND'd. The response carries a facets block: per filter name, a map of filter value to decision count under the current query. Reuse those keys verbatim to refine. Hit metadata fields carry the same tokens under the same names: a hit's jurisdictionCode, legalDomain or solution passes back verbatim into the matching filter.

ParametersJSON Schema
NameRequiredDescriptionDefault
modeNo'auto' is the right choice in almost all cases, it picks the regime from the query shape. auto: combines meaning and keyword matching on plain queries; switches to keyword-only when the query contains ET / OU / SAUF or quoted phrases. lexical: force keyword-only matching. Every term becomes required and nothing recovers a miss, so it fits a string you expect word for word (a consecrated formula, the direction of a holding, a party named in the text) and an empty answer is then an answer. semantic: force the meaning+keyword hybrid even on quoted or operator queries (where auto would fall back to keyword-only).auto
seatNoRestrict to one or more seats, as a dotted path from the court type down to the room: "CC", "CC.SOCIALE", "CA.PARIS", "CA.PARIS.P5.C3". A path matches itself and everything below it, so this one filter also covers what jurisdiction_type and jurisdiction_code express. Take the paths from facets.seat.
sortNoResult ordering. Use 'relevance' (default) unless the user wants chronological order.relevance
limitNoMaximum number of results (default 10).
queryYesFrench query, the primary input. Two regimes, pick the right tool for the job: (a) Natural language or descriptive keywords for legal-issue searches; the engine handles synonyms and reformulations. Examples: « responsabilité hôpital infection nosocomiale » ; « étranger malade soins inaccessibles dans son pays d'origine » ; « licenciement discrimination syndicale charge de la preuve ». (b) Quoted exact phrases and ET / OU / SAUF operators for a named entity (company, municipality, person), a precise legal formula, or the direction of a holding: semantic matching ignores negations (« n'est pas X » ranks like « est X »), and only an exact phrase targets which way the court ruled. Examples: « "Société Générale" » ; « "commune de Saint-Denis" SAUF Réunion » ; « "force majeure" ET épidémie ». Using operators or quotes switches the engine to keyword-only matching for the whole query (no synonyms), so do not mix the two regimes.
officeNoFilter by specialised judge/office (JLD, JAF, JCP, JEX, juge des enfants, premier président, magistrat désigné). Absent value = ordinary bench.
date_toNoLatest decision date, inclusive (YYYY-MM-DD).
solutionNoFilter by the ruling of the operative part (référentiel solution). REJET / IRRECEVABILITE / DESISTEMENT / NON_LIEU_A_STATUER are procedural or negative endings; CONFIRMATION / INFIRMATION* / REFORMATION are appeal outcomes; CASSATION* is cassation-specific; ANNULATION covers administrative annulment; SATISFACTION_TOTALE / SATISFACTION_PARTIELLE cover first-instance civil rulings granting the claim.
ai_rerankNoWhen enabled (default), reorders results by actual relevance to the query using an LLM reranker. Keep on for agentic use, shortlist quality is significantly higher. Cost: a few seconds of extra latency. Disable only for high-rate exploratory searches where latency matters more than ranking quality.
date_fromNoEarliest decision date, inclusive (YYYY-MM-DD).
procedureNoFilter by procedural track (référés, QPC, EU referral, révision, tierce opposition…). Absent value = ordinary contentious procedure.
publicationNoFilter by publication, at the grain the Cour de cassation itself uses (any-of, membership is multiple: a decision matches every value whose code it carries). Judicial order: PUBLIE_RAPPORT (annual report, the strongest signal), PUBLIE_BULLETIN, LETTRE_CHAMBRE, COMMUNIQUE, INEDIT_BULLETIN. Administrative order: PUBLIE_LEBON, MENTIONNE_LEBON, INEDIT_LEBON. Lower courts carry no publication statement and match no value.
legal_domainNoFilter by legal domain (curated domain tree): 9 roots and their leaves (e.g. CIVIL_DROIT_LOCATIF). Selecting a root also matches all its leaves.
legal_articleNoRestrict to decisions citing a specific article of a specific code, as a composite key "<instrument>|<article>" where <instrument> is a slug or an exact text name, resolved like legal_instrument (e.g. "code-civil|1240", "code-de-justice-administrative|L761-1"). The instrument prefix is required: the same article number exists in several codes.
legal_instrumentNoRestrict to decisions citing one or more given codes or statutes. Accepts a slug from facets.legal_instrument (e.g. "code-civil") or an exact text name resolved server-side (e.g. "Code civil").
jurisdiction_codeNoRestrict to one or more precise court units by referential code. Code shapes: "cc" (Cour de cassation), "ce" (Conseil d'État), "cnda", "cedh", "cjue"; "ca_<city>", "caa_<city>", "ta_<city>", "tj_<city>", "tcom_<city>" (e.g. "ca_paris", "ta_marseille", "tj_paris", "tcom_lyon"). When unsure, guess with the city name in the code: the error names the nearest valid ones. Each code is a court; a room inside it is reached with seat, which also expresses this filter as a path.
jurisdiction_typeNoRestrict to one or more court categories: TJ (tribunal judiciaire), CA (cour d'appel), CC (Cour de cassation), TCOM (tribunal des activités économiques), TA (tribunal administratif), CAA (cour administrative d'appel), CE (Conseil d'État), CNDA (asylum), CONSTIT (Conseil constitutionnel), TC (Tribunal des conflits), CNIL (sanctions), CEDH and CJUE (European courts).

Output Schema

ParametersJSON Schema
NameRequiredDescription
hitsYes
queryYes
totalYes
facetsNo
pinnedNo
filterRewrittenNo

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Adds substantial behavior beyond the annotations: aiSummary is an AI paraphrase never quotable as the court's words, snippet is the verbatim match, values within one filter are OR'd while filters are AND'd, and facet keys can be reused verbatim. This is valuable operational context not present in the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with purpose, then covers result shape, filter strategy, combinatorics, and facet reuse in efficient sentences. For a tool with 17 parameters, this is appropriately sized and every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the rich schema, annotations, and presence of an output schema, the description covers the essential strategic context: what results look like, how to structure queries, how to refine with facets, and when to follow up with get_decision. The agent has enough to select and invoke the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the per-parameter descriptions carry most of the load. The description adds meaningful cross-parameter semantics: OR within filters, AND across filters, and facet/hit metadata keys round-tripping into filters. It does not enumerate every parameter, but it does not need to.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description opens with a specific verb and resource: 'Search decisions by meaning and keywords combined.' It clearly distinguishes itself from the sibling get_decision by stating that get_decision reads the full text, and the focus on 'decisions' separates it from search_legal_texts.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides strong usage guidance: keep the query for the legal issue, put constraints in structured filters, and use get_decision for full text. It does not explicitly describe when to prefer search_legal_texts or get_legal_text, but the decision-vs-text distinction is implied clearly enough.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 5 tool updates
    • Changedget_decision17 fields changed
      • removedOutput schema / description
        Removed value: -"Metadata fields carry search_decisions filter tokens: each field matches the filter of the same name (jurisdictionType → jurisdiction_type, legalDomain → legal_domain…) and its value passes back verbatim to filter."
      • removedOutput schema / properties / appellateFate / description
        Removed value: -"Fate of THIS decision before the court that reviewed it, precomputed from caseChronology: 'INFIRMATION, Cour d'appel de Paris, 1 juillet 2025 (url)'. INFIRMATION = this decision was reversed and no longer stands; CONFIRMATION = upheld. Absent = no recourse known to the corpus, which never proves the decision is final."
      • removedOutput schema / properties / caseChronology / description
        Removed value: -"Prior and subsequent decisions of the same case (appeal, pourvoi, renvoi), most recent first, current decision included. The fate of a judgment reads in the solution of the decision that reviewed it (INFIRMATION = reversed, CONFIRMATION = upheld). Absent chronology never proves no recourse exists."
      • removedOutput schema / properties / caseChronology / items / properties / linkToNext / description
        Removed value: -"Link nature to the step below (the attacked decision): APPEL_DE | POURVOI_CONTRE | RENVOI_APRES_CASSATION."
      • removedOutput schema / properties / caseChronology / items / properties / url / description
        Removed value: -"Absent when the corpus does not hold that step: it is named by the decision that attacks it, and cannot be opened."
      • removedOutput schema / properties / chamber
        Removed value: -{
        -  "anyOf": [
        -    {
        -      "type": "string"
        -    },
        -    {
        -      "type": "null"
        -    }
        -  ],
        -  "default": null,
        -  "description": "Chamber that heard the case, as \"<court>|<chamber>\", reusable verbatim as the chamber filter."
        -}
      • removedOutput schema / properties / commentaires / description
        Removed value: -"Institutional commentary anchored on this document: court-written analyses served inline (`body`), plus outbound links (`url`) to the rapporteur public's conclusions and to related institutional documents (reports, opinions, press releases). Context, never the ruling itself. Quote the decision text, not a commentaire, as the court's words."
      • changedOutput schema / properties / commentaires / items / properties / access / anyOf
        Previous value: -[
        -  {
        -    "type": "string"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "enum": [
        +      "libre",
        +      "abonnes"
        +    ],
        +    "type": "string"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • removedOutput schema / properties / commentaires / items / properties / access / description
        Removed value: -"libre | abonnes"
      • removedOutput schema / properties / commentaires / items / properties / kind / description
        Removed value: -"analyse = official court-written abstract, full content in `body`. conclusions = the rapporteur public's conclusions, `url` only (copyright-protected, existence + official link). note = linked institutional document (report, avocat général's opinion, press release, doctrine note), `url` + `title` + `publisher`."
      • addedOutput schema / properties / commentaires / items / properties / kind / enum
        Added value: +[
        +  "analyse",
        +  "conclusions",
        +  "note"
        +]
      • removedOutput schema / properties / commentaires / items / properties / renvois / description
        Removed value: -"Doctrinal cross-references of the analyse (« Cf. CE, … »)."
      • removedOutput schema / properties / commentaires / items / properties / rubriques / description
        Removed value: -"Official classification headings (analyse)."
      • removedOutput schema / properties / commentaires / items / properties / url / description
        Removed value: -"External link, to hand to the user, not openable by an MCP tool."
      • removedOutput schema / properties / officialUrl / description
        Removed value: -"The decision on its official publisher: legifrance.gouv.fr, courdecassation.fr, opendata.justice-administrative.fr, conseil-constitutionnel.fr, hudoc, eur-lex. Cite this when the deliverable requires the authoritative source; `url` is the LibreJustice page. Absent when the publisher exposes no per-decision permalink."
      • removedOutput schema / properties / publication / description
        Removed value: -"Publication values carried, reusable verbatim as the publication filter."
      • addedOutput schema / properties / seat
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null
        +}
    • Changedget_legal_text14 fields changed
      • removedOutput schema / properties / articleCount / description
        Removed value: -"Number of articles the text carries. Present only on the root of a text with articles."
      • removedOutput schema / properties / articles / description
        Removed value: -"Contents of a text root or of one of its divisions, in reading order. Each `url` goes back to get_legal_text; a `section` entry returns all its articles at once, which is the cheapest way to read a chapter. `text` is joined only within the inline reading budget."
      • removedOutput schema / properties / articles / items / properties / num / description
        Removed value: -"Article number, or the division title when `kind` is `section`."
      • removedOutput schema / properties / commentaires / description
        Removed value: -"Institutional commentary anchored on this document: court-written analyses served inline (`body`), plus outbound links (`url`) to the rapporteur public's conclusions and to related institutional documents (reports, opinions, press releases). Context, never the ruling itself. Quote the decision text, not a commentaire, as the court's words."
      • changedOutput schema / properties / commentaires / items / properties / access / anyOf
        Previous value: -[
        -  {
        -    "type": "string"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "enum": [
        +      "libre",
        +      "abonnes"
        +    ],
        +    "type": "string"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • removedOutput schema / properties / commentaires / items / properties / access / description
        Removed value: -"libre | abonnes"
      • removedOutput schema / properties / commentaires / items / properties / kind / description
        Removed value: -"analyse = official court-written abstract, full content in `body`. conclusions = the rapporteur public's conclusions, `url` only (copyright-protected, existence + official link). note = linked institutional document (report, avocat général's opinion, press release, doctrine note), `url` + `title` + `publisher`."
      • addedOutput schema / properties / commentaires / items / properties / kind / enum
        Added value: +[
        +  "analyse",
        +  "conclusions",
        +  "note"
        +]
      • removedOutput schema / properties / commentaires / items / properties / renvois / description
        Removed value: -"Doctrinal cross-references of the analyse (« Cf. CE, … »)."
      • removedOutput schema / properties / commentaires / items / properties / rubriques / description
        Removed value: -"Official classification headings (analyse)."
      • removedOutput schema / properties / commentaires / items / properties / url / description
        Removed value: -"External link, to hand to the user, not openable by an MCP tool."
      • removedOutput schema / properties / num / description
        Removed value: -"Article key. Absent when the url addressed the root of a text: with no articles the payload is the whole text, `text` carrying its body; with articles it is the table of contents, `articles` carrying it."
      • removedOutput schema / properties / omitted / description
        Removed value: -"Articles served without their body because the text or division exceeds the inline reading budget: their `url` fetches them."
      • removedOutput schema / properties / text / description
        Removed value: -"Full text; cross-references to other articles render as inline markdown links (/texte/ urls, open with get_legal_text)."
    • Changedlist_my_activity3 fields changed
      • removedOutput schema / description
        Removed value: -"One flat payload for every tab: a slice is filled only when it was asked for, by a targeted `kind` or by `all`."
      • changedOutput schema / properties / bookmarks / anyOf
        Previous value: -[
        -  {
        -    "additionalProperties": false,
        -    "properties": {
        -      "bookmarks": {
        -        "items": {
        -          "additionalProperties": false,
        -          "description": "Decision reference for bookmarks and reading history: enough to cite it or to chain into get_decision with its `url`, without the full text.",
        -          "properties": {
        -            "bookmarkedAt": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null,
        -              "format": "date-time"
        -            },
        -            "dateLecture": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null,
        -              "format": "date"
        -            },
        -            "lastSource": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null
        -            },
        -            "lastViewedAt": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null,
        -              "format": "date-time"
        -            },
        -            "solution": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null
        -            },
        -            "summary": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null
        -            },
        -            "title": {
        -              "type": "string"
        -            },
        -            "url": {
        -              "type": "string"
        -            },
        -            "viewCount": {
        -              "anyOf": [
        -                {
        -                  "type": "integer"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null
        -            }
        -          },
        -          "required": [
        -            "title",
        -            "url"
        -          ],
        -          "type": "object"
        -        },
        -        "type": "array"
        -      },
        -      "total": {
        -        "type": "integer"
        -      }
        -    },
        -    "required": [
        -      "total",
        -      "bookmarks"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "bookmarks": {
        +        "items": {
        +          "additionalProperties": false,
        +          "properties": {
        +            "bookmarkedAt": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null,
        +              "format": "date-time"
        +            },
        +            "dateLecture": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null,
        +              "format": "date"
        +            },
        +            "lastSource": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null
        +            },
        +            "lastViewedAt": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null,
        +              "format": "date-time"
        +            },
        +            "solution": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null
        +            },
        +            "summary": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null
        +            },
        +            "title": {
        +              "type": "string"
        +            },
        +            "url": {
        +              "type": "string"
        +            },
        +            "viewCount": {
        +              "anyOf": [
        +                {
        +                  "type": "integer"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null
        +            }
        +          },
        +          "required": [
        +            "title",
        +            "url"
        +          ],
        +          "type": "object"
        +        },
        +        "type": "array"
        +      },
        +      "total": {
        +        "type": "integer"
        +      }
        +    },
        +    "required": [
        +      "total",
        +      "bookmarks"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedOutput schema / properties / readingHistory / anyOf
        Previous value: -[
        -  {
        -    "additionalProperties": false,
        -    "properties": {
        -      "decisions": {
        -        "items": {
        -          "additionalProperties": false,
        -          "description": "Decision reference for bookmarks and reading history: enough to cite it or to chain into get_decision with its `url`, without the full text.",
        -          "properties": {
        -            "bookmarkedAt": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null,
        -              "format": "date-time"
        -            },
        -            "dateLecture": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null,
        -              "format": "date"
        -            },
        -            "lastSource": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null
        -            },
        -            "lastViewedAt": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null,
        -              "format": "date-time"
        -            },
        -            "solution": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null
        -            },
        -            "summary": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null
        -            },
        -            "title": {
        -              "type": "string"
        -            },
        -            "url": {
        -              "type": "string"
        -            },
        -            "viewCount": {
        -              "anyOf": [
        -                {
        -                  "type": "integer"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null
        -            }
        -          },
        -          "required": [
        -            "title",
        -            "url"
        -          ],
        -          "type": "object"
        -        },
        -        "type": "array"
        -      },
        -      "total": {
        -        "type": "integer"
        -      }
        -    },
        -    "required": [
        -      "total",
        -      "decisions"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "decisions": {
        +        "items": {
        +          "additionalProperties": false,
        +          "properties": {
        +            "bookmarkedAt": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null,
        +              "format": "date-time"
        +            },
        +            "dateLecture": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null,
        +              "format": "date"
        +            },
        +            "lastSource": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null
        +            },
        +            "lastViewedAt": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null,
        +              "format": "date-time"
        +            },
        +            "solution": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null
        +            },
        +            "summary": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null
        +            },
        +            "title": {
        +              "type": "string"
        +            },
        +            "url": {
        +              "type": "string"
        +            },
        +            "viewCount": {
        +              "anyOf": [
        +                {
        +                  "type": "integer"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null
        +            }
        +          },
        +          "required": [
        +            "title",
        +            "url"
        +          ],
        +          "type": "object"
        +        },
        +        "type": "array"
        +      },
        +      "total": {
        +        "type": "integer"
        +      }
        +    },
        +    "required": [
        +      "total",
        +      "decisions"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
    • Changedsearch_decisions18 fields changed
      • removedInput schema / properties / chamber
        Removed value: -{
        -  "anyOf": [
        -    {
        -      "items": {
        -        "maxLength": 60,
        -        "type": "string"
        -      },
        -      "maxItems": 10,
        -      "type": "array"
        -    },
        -    {
        -      "type": "null"
        -    }
        -  ],
        -  "default": null,
        -  "description": "Restrict to one or more chambers, as a composite key \"<court>|<chamber>\" where <court> is a jurisdiction_code (e.g. \"ca_paris|C3\", \"cc|C2\", \"cc|SOCIALE\"). The court prefix is required: a chamber key names a different chamber in each court, \"C1\" alone existing in about 200 of them. The chamber part is slots joined by a dot, in the order they render: tag P (pôle), SC (section holding chambers), C (chambre), S (section), L (lettered section), Q (sous-sections réunies) or R (chambres réunies), then its number or letter. So \"P5.C6\" is pôle 5, 6e chambre, \"C5.LA\" section A of the 5th, \"CD\" chambre D, \"R3-8\" chambres 3/8 réunies (numbers in a reunited list always ascending). A chamber that no coordinate positions is keyed by what it judges instead (\"cc|SOCIALE\", \"cc|CRIMINELLE\"). facets.chamber lists the pairs present, and only once jurisdiction_code narrows the search to one or more courts."
        -}
      • changedInput schema / properties / jurisdiction_code / description
        Previous value: -"Restrict to one or more precise court units by referential code. Code shapes: \"cc\" (Cour de cassation), \"ce\" (Conseil d'État), \"cnda\", \"cedh\", \"cjue\"; \"ca_<city>\", \"caa_<city>\", \"ta_<city>\", \"tj_<city>\", \"tcom_<city>\" (e.g. \"ca_paris\", \"ta_marseille\", \"tj_paris\", \"tcom_lyon\"). When unsure, guess with the city name in the code: the error names the nearest valid ones. Each code is a court; the chamber inside it is a separate filter (see chamber); use jurisdiction_type for the broad category."New value: +"Restrict to one or more precise court units by referential code. Code shapes: \"cc\" (Cour de cassation), \"ce\" (Conseil d'État), \"cnda\", \"cedh\", \"cjue\"; \"ca_<city>\", \"caa_<city>\", \"ta_<city>\", \"tj_<city>\", \"tcom_<city>\" (e.g. \"ca_paris\", \"ta_marseille\", \"tj_paris\", \"tcom_lyon\"). When unsure, guess with the city name in the code: the error names the nearest valid ones. Each code is a court; a room inside it is reached with seat, which also expresses this filter as a path."
      • changedInput schema / properties / mode / description
        Previous value: -"'auto' is the right choice in almost all cases, it picks the regime from the query shape. auto: combines meaning and keyword matching on plain queries; switches to keyword-only when the query contains ET / OU / SAUF or quoted phrases. lexical: force keyword-only matching. Every term becomes required and nothing recovers a miss, so it fits a string you expect word for word (a consecrated formula, the direction of a holding, a party named in the text) and an empty answer is then an answer. Never for a docket number or a decision name, which auto resolves by exact key. semantic: force the meaning+keyword hybrid even on quoted or operator queries (where auto would fall back to keyword-only). Naming a mode, like adding ET / OU / SAUF, also keeps a docket number inside an ordinary query instead of resolving it alone."New value: +"'auto' is the right choice in almost all cases, it picks the regime from the query shape. auto: combines meaning and keyword matching on plain queries; switches to keyword-only when the query contains ET / OU / SAUF or quoted phrases. lexical: force keyword-only matching. Every term becomes required and nothing recovers a miss, so it fits a string you expect word for word (a consecrated formula, the direction of a holding, a party named in the text) and an empty answer is then an answer. semantic: force the meaning+keyword hybrid even on quoted or operator queries (where auto would fall back to keyword-only)."
      • changedInput schema / properties / publication / anyOf
        Previous value: -[
        -  {
        -    "items": {
        -      "enum": [
        -        "PUBLIE_BULLETIN",
        -        "PUBLIE_RAPPORT",
        -        "LETTRE_CHAMBRE",
        -        "COMMUNIQUE",
        -        "INEDIT_BULLETIN",
        -        "PUBLIE_LEBON",
        -        "MENTIONNE_LEBON",
        -        "INEDIT_LEBON"
        -      ],
        -      "type": "string"
        -    },
        -    "type": "array"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "items": {
        +      "enum": [
        +        "PUBLIE_RAPPORT",
        +        "PUBLIE_BULLETIN",
        +        "LETTRE_CHAMBRE",
        +        "COMMUNIQUE",
        +        "INEDIT_BULLETIN",
        +        "PUBLIE_LEBON",
        +        "MENTIONNE_LEBON",
        +        "INEDIT_LEBON"
        +      ],
        +      "type": "string"
        +    },
        +    "type": "array"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedInput schema / properties / publication / description
        Previous value: -"Filter by publication, at the grain the Cour de cassation itself uses (any-of, membership is multiple: a decision matches every value whose code it carries). Judicial order: PUBLIE_BULLETIN, PUBLIE_RAPPORT (annual report, the strongest signal), LETTRE_CHAMBRE, COMMUNIQUE, INEDIT_BULLETIN. Administrative order: PUBLIE_LEBON, MENTIONNE_LEBON, INEDIT_LEBON. Lower courts carry no publication statement and match no value."New value: +"Filter by publication, at the grain the Cour de cassation itself uses (any-of, membership is multiple: a decision matches every value whose code it carries). Judicial order: PUBLIE_RAPPORT (annual report, the strongest signal), PUBLIE_BULLETIN, LETTRE_CHAMBRE, COMMUNIQUE, INEDIT_BULLETIN. Administrative order: PUBLIE_LEBON, MENTIONNE_LEBON, INEDIT_LEBON. Lower courts carry no publication statement and match no value."
      • changedInput schema / properties / query / description
        Previous value: -"French query, the primary input. Two regimes, pick the right tool for the job: (a) Natural language or descriptive keywords for legal-issue searches; the engine handles synonyms and reformulations. Examples: « responsabilité hôpital infection nosocomiale » ; « étranger malade soins inaccessibles dans son pays d'origine » ; « licenciement discrimination syndicale charge de la preuve ». (b) Quoted exact phrases and ET / OU / SAUF operators for a named entity (company, municipality, person), a precise legal formula, or the direction of a holding: semantic matching ignores negations (« n'est pas X » ranks like « est X »), and only an exact phrase targets which way the court ruled. Examples: « \"Société Générale\" » ; « \"commune de Saint-Denis\" SAUF Réunion » ; « \"force majeure\" ET épidémie ». Using operators or quotes switches the engine to keyword-only matching for the whole query (no synonyms), so do not mix the two regimes: a quoted phrase followed by free words requires every one of them in the same decision. (c) A docket number or a decision name takes neither quotes nor operators: « 21PA01295 », « n° 19-20.682 », « arrêt Danthony » are matched by an exact key, whatever the spelling, and quoting them only costs the recovery that catches a miss."New value: +"French query, the primary input. Two regimes, pick the right tool for the job: (a) Natural language or descriptive keywords for legal-issue searches; the engine handles synonyms and reformulations. Examples: « responsabilité hôpital infection nosocomiale » ; « étranger malade soins inaccessibles dans son pays d'origine » ; « licenciement discrimination syndicale charge de la preuve ». (b) Quoted exact phrases and ET / OU / SAUF operators for a named entity (company, municipality, person), a precise legal formula, or the direction of a holding: semantic matching ignores negations (« n'est pas X » ranks like « est X »), and only an exact phrase targets which way the court ruled. Examples: « \"Société Générale\" » ; « \"commune de Saint-Denis\" SAUF Réunion » ; « \"force majeure\" ET épidémie ». Using operators or quotes switches the engine to keyword-only matching for the whole query (no synonyms), so do not mix the two regimes."
      • addedInput schema / properties / seat
        Added value: +{
        +  "anyOf": [
        +    {
        +      "items": {
        +        "maxLength": 60,
        +        "type": "string"
        +      },
        +      "maxItems": 10,
        +      "type": "array"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Restrict to one or more seats, as a dotted path from the court type down to the room: \"CC\", \"CC.SOCIALE\", \"CA.PARIS\", \"CA.PARIS.P5.C3\". A path matches itself and everything below it, so this one filter also covers what jurisdiction_type and jurisdiction_code express. Take the paths from facets.seat."
        +}
      • removedOutput schema / properties / facets / description
        Removed value: -"Per filter name, a map of filter value to decision count under the current query (jurisdiction_type, jurisdiction_code, chamber, office, legal_domain, solution, procedure, publication, date_lecture_year, legal_instrument). Reuse keys verbatim as filter values. jurisdiction_code is capped to the top 15 courts (other_courts counts the rest) and legal_instrument to the top 10 statutes. chamber appears only under a jurisdiction_code filter, and then lists every formation of the selected courts."
      • removedOutput schema / properties / filterRewritten / description
        Removed value: -"A filter of the call was retired and rewritten: what was asked, what was searched, and the filter to use instead. The hits answer the rewritten call."
      • removedOutput schema / properties / hits / items / description
        Removed value: -"Metadata fields carry search_decisions filter tokens: each field matches the filter of the same name (jurisdictionType → jurisdiction_type, legalDomain → legal_domain…) and its value passes back verbatim to filter."
      • removedOutput schema / properties / hits / items / properties / aiSummary / description
        Removed value: -"AI-written summary of what the decision is about (semantic search), a machine paraphrase, NEVER the court's words: nothing in it is quotable. Exactly one of aiSummary/snippet is served per hit."
      • removedOutput schema / properties / hits / items / properties / chamber
        Removed value: -{
        -  "anyOf": [
        -    {
        -      "type": "string"
        -    },
        -    {
        -      "type": "null"
        -    }
        -  ],
        -  "default": null,
        -  "description": "Chamber that heard the case, as \"<court>|<chamber>\", reusable verbatim as the chamber filter."
        -}
      • removedOutput schema / properties / hits / items / properties / officialUrl / description
        Removed value: -"The decision on its official publisher: legifrance.gouv.fr, courdecassation.fr, opendata.justice-administrative.fr, conseil-constitutionnel.fr, hudoc, eur-lex. Cite this when the deliverable requires the authoritative source; `url` is the LibreJustice page. Absent when the publisher exposes no per-decision permalink."
      • removedOutput schema / properties / hits / items / properties / publication / description
        Removed value: -"Publication values carried, reusable verbatim as the publication filter."
      • addedOutput schema / properties / hits / items / properties / seat
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null
        +}
      • removedOutput schema / properties / hits / items / properties / snippet / description
        Removed value: -"Verbatim passage of the decision text where the query terms matched (keyword search). Exactly one of aiSummary/snippet is served per hit."
      • addedOutput schema / properties / pinned
        Added value: +{
        +  "items": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "title": {
        +        "type": "string"
        +      },
        +      "url": {
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "title",
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  "type": "array"
        +}
      • removedOutput schema / properties / total / description
        Removed value: -"Decisions matched under the current filters, the whole set and not the served window: `hits` is one page of it, and `facets` counts that same set. Keyword matching is an OR bag over the query tokens, so a long query matches a large share of the corpus: narrow with filters (court, dates, chamber) rather than with more words for the number to count something."
    • Changedsearch_legal_texts1 field changed
      • removedOutput schema / properties / facets / description
        Removed value: -"Per filter name, a map of filter value to article count under the current query (code, jurisdiction). Reuse keys verbatim as filter values. Each axis is capped to its top 10."
  2. 4 tool updates
    • Changedget_decision3 fields changed
      • changedOutput schema / properties / appellateFate / description
        Previous value: -"Fate of THIS decision before the court that reviewed it, precomputed from caseChronology: 'INFIRMATION — Cour d'appel de Paris, 1 juillet 2025 (url)'. INFIRMATION = this decision was reversed and no longer stands; CONFIRMATION = upheld. Absent = no recourse known to the corpus, which never proves the decision is final."New value: +"Fate of THIS decision before the court that reviewed it, precomputed from caseChronology: 'INFIRMATION, Cour d'appel de Paris, 1 juillet 2025 (url)'. INFIRMATION = this decision was reversed and no longer stands; CONFIRMATION = upheld. Absent = no recourse known to the corpus, which never proves the decision is final."
      • changedOutput schema / properties / commentaires / description
        Previous value: -"Institutional commentary anchored on this document: court-written analyses served inline (`body`), plus outbound links (`url`) to the rapporteur public's conclusions and to related institutional documents (reports, opinions, press releases). Context, never the ruling itself — quote the decision text, not a commentaire, as the court's words."New value: +"Institutional commentary anchored on this document: court-written analyses served inline (`body`), plus outbound links (`url`) to the rapporteur public's conclusions and to related institutional documents (reports, opinions, press releases). Context, never the ruling itself. Quote the decision text, not a commentaire, as the court's words."
      • changedOutput schema / properties / commentaires / items / properties / url / description
        Previous value: -"External link, to hand to the user — not openable by an MCP tool."New value: +"External link, to hand to the user, not openable by an MCP tool."
    • Changedget_legal_text4 fields changed
      • changedInput schema / properties / date / description
        Previous value: -"Consultation date (YYYY-MM-DD) — returns the version in force at that date. Omit for the version currently in force."New value: +"Consultation date (YYYY-MM-DD): returns the version in force at that date. Omit for the version currently in force."
      • changedInput schema / properties / url / description
        Previous value: -"A librejustice.fr article URL `/texte/{code}/{article}`: take it from a search_legal_texts hit or an inline citation link, or compose it — {code} is the code slug (\"code-civil\", as in facets.legal_instrument), {article} the lowercase article key (\"l761-1\" for L. 761-1, \"1240\" for 1240). `/texte/{code}` alone addresses the text itself, which is how a text with no articles (circulaire, publication decree) is read."New value: +"A librejustice.fr article URL `/texte/{code}/{article}`: take it from a search_legal_texts hit or an inline citation link, or compose it: {code} is the code slug (\"code-civil\", as in facets.legal_instrument), {article} the lowercase article key (\"l761-1\" for L. 761-1, \"1240\" for 1240). `/texte/{code}` alone addresses the text itself, which is how a text with no articles (circulaire, publication decree) is read."
      • changedOutput schema / properties / commentaires / description
        Previous value: -"Institutional commentary anchored on this document: court-written analyses served inline (`body`), plus outbound links (`url`) to the rapporteur public's conclusions and to related institutional documents (reports, opinions, press releases). Context, never the ruling itself — quote the decision text, not a commentaire, as the court's words."New value: +"Institutional commentary anchored on this document: court-written analyses served inline (`body`), plus outbound links (`url`) to the rapporteur public's conclusions and to related institutional documents (reports, opinions, press releases). Context, never the ruling itself. Quote the decision text, not a commentaire, as the court's words."
      • changedOutput schema / properties / commentaires / items / properties / url / description
        Previous value: -"External link, to hand to the user — not openable by an MCP tool."New value: +"External link, to hand to the user, not openable by an MCP tool."
    • Changedsearch_decisions6 fields changed
      • changedInput schema / properties / ai_rerank / description
        Previous value: -"When enabled (default), reorders results by actual relevance to the query using an LLM reranker. Keep on for agentic use — shortlist quality is significantly higher. Cost: a few seconds of extra latency. Disable only for high-rate exploratory searches where latency matters more than ranking quality."New value: +"When enabled (default), reorders results by actual relevance to the query using an LLM reranker. Keep on for agentic use, shortlist quality is significantly higher. Cost: a few seconds of extra latency. Disable only for high-rate exploratory searches where latency matters more than ranking quality."
      • changedInput schema / properties / legal_article / description
        Previous value: -"Restrict to decisions citing a specific article of a specific code, as a composite key \"<instrument>|<article>\" where <instrument> is a slug or an exact text name, resolved like legal_instrument (e.g. \"code-civil|1240\", \"code-de-justice-administrative|L761-1\"). The instrument prefix is required — the same article number exists in several codes."New value: +"Restrict to decisions citing a specific article of a specific code, as a composite key \"<instrument>|<article>\" where <instrument> is a slug or an exact text name, resolved like legal_instrument (e.g. \"code-civil|1240\", \"code-de-justice-administrative|L761-1\"). The instrument prefix is required: the same article number exists in several codes."
      • changedInput schema / properties / limit / description
        Previous value: -"Maximum number of results (default 10). Above 20 the window is clamped, not refused."New value: +"Maximum number of results (default 10)."
      • changedInput schema / properties / mode / description
        Previous value: -"'auto' is the right choice in almost all cases — it picks the regime from the query shape. auto: combines meaning and keyword matching on plain queries; switches to keyword-only when the query contains ET / OU / SAUF or quoted phrases. lexical: force keyword-only matching. Every term becomes required and nothing recovers a miss, so it fits a string you expect word for word (a consecrated formula, the direction of a holding, a party named in the text) and an empty answer is then an answer. Never for a docket number or a decision name, which auto resolves by exact key. semantic: force the meaning+keyword hybrid even on quoted or operator queries (where auto would fall back to keyword-only). Naming a mode, like adding ET / OU / SAUF, also keeps a docket number inside an ordinary query instead of resolving it alone."New value: +"'auto' is the right choice in almost all cases, it picks the regime from the query shape. auto: combines meaning and keyword matching on plain queries; switches to keyword-only when the query contains ET / OU / SAUF or quoted phrases. lexical: force keyword-only matching. Every term becomes required and nothing recovers a miss, so it fits a string you expect word for word (a consecrated formula, the direction of a holding, a party named in the text) and an empty answer is then an answer. Never for a docket number or a decision name, which auto resolves by exact key. semantic: force the meaning+keyword hybrid even on quoted or operator queries (where auto would fall back to keyword-only). Naming a mode, like adding ET / OU / SAUF, also keeps a docket number inside an ordinary query instead of resolving it alone."
      • changedInput schema / properties / query / description
        Previous value: -"French query, the primary input. Two regimes — pick the right tool for the job: (a) Natural language or descriptive keywords for legal-issue searches; the engine handles synonyms and reformulations. Examples: « responsabilité hôpital infection nosocomiale » ; « étranger malade soins inaccessibles dans son pays d'origine » ; « licenciement discrimination syndicale charge de la preuve ». (b) Quoted exact phrases and ET / OU / SAUF operators for a named entity (company, municipality, person), a precise legal formula, or the direction of a holding: semantic matching ignores negations (« n'est pas X » ranks like « est X »), and only an exact phrase targets which way the court ruled. Examples: « \"Société Générale\" » ; « \"commune de Saint-Denis\" SAUF Réunion » ; « \"force majeure\" ET épidémie ». Using operators or quotes switches the engine to keyword-only matching for the whole query (no synonyms), so do not mix the two regimes: a quoted phrase followed by free words requires every one of them in the same decision. (c) A docket number or a decision name takes neither quotes nor operators: « 21PA01295 », « n° 19-20.682 », « arrêt Danthony » are matched by an exact key, whatever the spelling, and quoting them only costs the recovery that catches a miss."New value: +"French query, the primary input. Two regimes, pick the right tool for the job: (a) Natural language or descriptive keywords for legal-issue searches; the engine handles synonyms and reformulations. Examples: « responsabilité hôpital infection nosocomiale » ; « étranger malade soins inaccessibles dans son pays d'origine » ; « licenciement discrimination syndicale charge de la preuve ». (b) Quoted exact phrases and ET / OU / SAUF operators for a named entity (company, municipality, person), a precise legal formula, or the direction of a holding: semantic matching ignores negations (« n'est pas X » ranks like « est X »), and only an exact phrase targets which way the court ruled. Examples: « \"Société Générale\" » ; « \"commune de Saint-Denis\" SAUF Réunion » ; « \"force majeure\" ET épidémie ». Using operators or quotes switches the engine to keyword-only matching for the whole query (no synonyms), so do not mix the two regimes: a quoted phrase followed by free words requires every one of them in the same decision. (c) A docket number or a decision name takes neither quotes nor operators: « 21PA01295 », « n° 19-20.682 », « arrêt Danthony » are matched by an exact key, whatever the spelling, and quoting them only costs the recovery that catches a miss."
      • changedOutput schema / properties / hits / items / properties / aiSummary / description
        Previous value: -"AI-written summary of what the decision is about (semantic search) — a machine paraphrase, NEVER the court's words: nothing in it is quotable. Exactly one of aiSummary/snippet is served per hit."New value: +"AI-written summary of what the decision is about (semantic search), a machine paraphrase, NEVER the court's words: nothing in it is quotable. Exactly one of aiSummary/snippet is served per hit."
    • Changedsearch_legal_texts2 fields changed
      • changedInput schema / properties / date / description
        Previous value: -"Consultation date (YYYY-MM-DD) — searches the versions valid at that date (point-in-time, same semantics as get_legal_text). Omit to search the versions currently in force."New value: +"Consultation date (YYYY-MM-DD): searches the versions valid at that date (point-in-time, same semantics as get_legal_text). Omit to search the versions currently in force."
      • changedInput schema / properties / limit / description
        Previous value: -"Maximum number of results (default 10). Above 20 the window is clamped, not refused."New value: +"Maximum number of results (default 10)."
  3. 3 tool updates
    • Changedget_decision6 fields changed
      • changedOutput schema / properties / caseChronology / description
        Previous value: -"Linked prior and subsequent decisions of the same case (appeal, pourvoi, renvoi), most recent first, current decision included. The fate of a judgment reads in the solution of the decision that reviewed it (INFIRMATION = reversed, CONFIRMATION = upheld). Absent chronology never proves no recourse exists."New value: +"Prior and subsequent decisions of the same case (appeal, pourvoi, renvoi), most recent first, current decision included. The fate of a judgment reads in the solution of the decision that reviewed it (INFIRMATION = reversed, CONFIRMATION = upheld). Absent chronology never proves no recourse exists."
      • addedOutput schema / properties / caseChronology / items / properties / url / anyOf
        Added value: +[
        +  {
        +    "type": "string"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • addedOutput schema / properties / caseChronology / items / properties / url / default
        Added value: +null
      • addedOutput schema / properties / caseChronology / items / properties / url / description
        Added value: +"Absent when the corpus does not hold that step: it is named by the decision that attacks it, and cannot be opened."
      • removedOutput schema / properties / caseChronology / items / properties / url / type
        Removed value: -"string"
      • changedOutput schema / properties / caseChronology / items / required
        Previous value: -[
        -  "title",
        -  "url",
        -  "current"
        -]New value: +[
        +  "title",
        +  "current"
        +]
    • Changedsearch_decisions6 fields changed
      • changedInput schema / properties / chamber / description
        Previous value: -"Restrict to one or more chambers, as a composite key \"<court>|<chamber>\" where <court> is a jurisdiction_code (e.g. \"ca_paris|C3\", \"cc|C2\", \"cc|SOCIALE\"). The court prefix is required: a chamber key names a different chamber in each court, \"C1\" alone existing in about 200 of them. The chamber part reads as slots joined by a dot, in the order they render: \"P5\" (pôle 5), \"SC4\" (4e section, which contains chambers), \"C6\" (6e chambre), \"CD\" (chambre D), \"C4-7\" (chambre 4-7), \"S1\" (1re section), \"LB\" (section B), \"Q1-4\" (sous-sections 1/4 réunies), \"R3-8\" (chambres 3/8 réunies), numbers in a reunited list always ascending. So \"P5.C6\" is pôle 5, 6e chambre and \"C5.LA\" is section A of the 5th. A chamber that no coordinate positions is named by what it judges, and the key is that bare name, as at the Cour de cassation whose social and criminal chambers carry no number (\"cc|SOCIALE\", \"cc|CRIMINELLE\"). facets.chamber lists the pairs present in the current result set, and only once jurisdiction_code narrows it to one or more courts: a chamber key is meaningless outside its court, so search for the court first and read its formations from the answer."New value: +"Restrict to one or more chambers, as a composite key \"<court>|<chamber>\" where <court> is a jurisdiction_code (e.g. \"ca_paris|C3\", \"cc|C2\", \"cc|SOCIALE\"). The court prefix is required: a chamber key names a different chamber in each court, \"C1\" alone existing in about 200 of them. The chamber part is slots joined by a dot, in the order they render: tag P (pôle), SC (section holding chambers), C (chambre), S (section), L (lettered section), Q (sous-sections réunies) or R (chambres réunies), then its number or letter. So \"P5.C6\" is pôle 5, 6e chambre, \"C5.LA\" section A of the 5th, \"CD\" chambre D, \"R3-8\" chambres 3/8 réunies (numbers in a reunited list always ascending). A chamber that no coordinate positions is keyed by what it judges instead (\"cc|SOCIALE\", \"cc|CRIMINELLE\"). facets.chamber lists the pairs present, and only once jurisdiction_code narrows the search to one or more courts."
      • changedInput schema / properties / limit / description
        Previous value: -"How many results to come back with. Keep the default of 10: the reranker has already put the best first, and each extra hit spends caller context on a preview that must not be quoted. Above 20 the window is clamped to 20, not refused."New value: +"Maximum number of results (default 10). Above 20 the window is clamped, not refused."
      • changedInput schema / properties / mode / description
        Previous value: -"'auto' is the right choice in almost all cases — it picks the regime from the query shape. auto: combines meaning and keyword matching on plain queries; switches to keyword-only when the query contains ET / OU / SAUF or quoted phrases. lexical: force keyword-only matching. Every term becomes required and nothing recovers a miss, so it fits a string you expect word for word (a consecrated formula, the direction of a holding, a party named in the text) and an empty answer is then an answer. Never for a docket number or a decision name, which auto resolves by exact key. semantic: force the meaning+keyword hybrid even on quoted or operator queries (where auto would fall back to keyword-only)."New value: +"'auto' is the right choice in almost all cases — it picks the regime from the query shape. auto: combines meaning and keyword matching on plain queries; switches to keyword-only when the query contains ET / OU / SAUF or quoted phrases. lexical: force keyword-only matching. Every term becomes required and nothing recovers a miss, so it fits a string you expect word for word (a consecrated formula, the direction of a holding, a party named in the text) and an empty answer is then an answer. Never for a docket number or a decision name, which auto resolves by exact key. semantic: force the meaning+keyword hybrid even on quoted or operator queries (where auto would fall back to keyword-only). Naming a mode, like adding ET / OU / SAUF, also keeps a docket number inside an ordinary query instead of resolving it alone."
      • removedOutput schema / properties / absentReference
        Removed value: -{
        -  "anyOf": [
        -    {
        -      "type": "string"
        -    },
        -    {
        -      "type": "null"
        -    }
        -  ],
        -  "default": null,
        -  "description": "Docket number asked for and not found: the hits below carry another number. Absent from the corpus when absentScope is null, absent from that scope only otherwise."
        -}
      • removedOutput schema / properties / absentScope
        Removed value: -{
        -  "anyOf": [
        -    {
        -      "type": "string"
        -    },
        -    {
        -      "type": "null"
        -    }
        -  ],
        -  "default": null,
        -  "description": "Court and year the call pinned around absentReference, when no decision carrying that number satisfies them: the number exists elsewhere in the corpus. Drop or widen that filter to reach it."
        -}
      • changedOutput schema / properties / facets / description
        Previous value: -"Per filter name, a map of filter value to decision count under the current query (jurisdiction_type, jurisdiction_code, chamber, office, legal_domain, solution, procedure, publication, date_lecture_year, legal_instrument). Reuse keys verbatim as filter values. jurisdiction_code is capped to the top 15 courts (other_courts counts the rest) and legal_instrument to the top 10 statutes. chamber appears only under a jurisdiction_code filter, and then lists every formation of the selected courts: search once for the court, once more for the chamber."New value: +"Per filter name, a map of filter value to decision count under the current query (jurisdiction_type, jurisdiction_code, chamber, office, legal_domain, solution, procedure, publication, date_lecture_year, legal_instrument). Reuse keys verbatim as filter values. jurisdiction_code is capped to the top 15 courts (other_courts counts the rest) and legal_instrument to the top 10 statutes. chamber appears only under a jurisdiction_code filter, and then lists every formation of the selected courts."
    • Changedsearch_legal_texts1 field changed
      • changedInput schema / properties / limit / description
        Previous value: -"How many results to come back with. Keep the default of 10: the reranker has already put the best first, and each extra hit spends caller context on a preview that must not be quoted. Above 20 the window is clamped to 20, not refused."New value: +"Maximum number of results (default 10). Above 20 the window is clamped, not refused."
  4. 3 tool updates
    • Changedlist_my_activity3 fields changed
      • changedOutput schema / description
        Previous value: -"Sortie unique de ``list_my_activity`` : chaque tranche n'est remplie que\nsi elle a été demandée (``kind`` ciblé ou ``all``). Un seul modèle à plat\n(plutôt qu'une union par ``kind``) évite une enveloppe ``result``. Noter\nqu'après inlining des ``$ref`` par ``_clean_schema`` (cf. mcp_server),\n``McpDecisionRef`` apparaît deux fois dans le schéma émis — une fois sous\n``bookmarks``, une fois sous ``readingHistory``."New value: +"One flat payload for every tab: a slice is filled only when it was asked for, by a targeted `kind` or by `all`."
      • changedOutput schema / properties / bookmarks / anyOf
        Previous value: -[
        -  {
        -    "additionalProperties": false,
        -    "properties": {
        -      "bookmarks": {
        -        "items": {
        -          "additionalProperties": false,
        -          "description": "Référence décision pour signets/consultations : assez pour citer ou\nchaîner vers ``get_decision`` via ``url``, sans le texte intégral.",
        -          "properties": {
        -            "bookmarkedAt": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null,
        -              "format": "date-time"
        -            },
        -            "dateLecture": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null,
        -              "format": "date"
        -            },
        -            "lastSource": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null
        -            },
        -            "lastViewedAt": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null,
        -              "format": "date-time"
        -            },
        -            "solution": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null
        -            },
        -            "summary": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null
        -            },
        -            "title": {
        -              "type": "string"
        -            },
        -            "url": {
        -              "type": "string"
        -            },
        -            "viewCount": {
        -              "anyOf": [
        -                {
        -                  "type": "integer"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null
        -            }
        -          },
        -          "required": [
        -            "title",
        -            "url"
        -          ],
        -          "type": "object"
        -        },
        -        "type": "array"
        -      },
        -      "total": {
        -        "type": "integer"
        -      }
        -    },
        -    "required": [
        -      "total",
        -      "bookmarks"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "bookmarks": {
        +        "items": {
        +          "additionalProperties": false,
        +          "description": "Decision reference for bookmarks and reading history: enough to cite it or to chain into get_decision with its `url`, without the full text.",
        +          "properties": {
        +            "bookmarkedAt": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null,
        +              "format": "date-time"
        +            },
        +            "dateLecture": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null,
        +              "format": "date"
        +            },
        +            "lastSource": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null
        +            },
        +            "lastViewedAt": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null,
        +              "format": "date-time"
        +            },
        +            "solution": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null
        +            },
        +            "summary": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null
        +            },
        +            "title": {
        +              "type": "string"
        +            },
        +            "url": {
        +              "type": "string"
        +            },
        +            "viewCount": {
        +              "anyOf": [
        +                {
        +                  "type": "integer"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null
        +            }
        +          },
        +          "required": [
        +            "title",
        +            "url"
        +          ],
        +          "type": "object"
        +        },
        +        "type": "array"
        +      },
        +      "total": {
        +        "type": "integer"
        +      }
        +    },
        +    "required": [
        +      "total",
        +      "bookmarks"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedOutput schema / properties / readingHistory / anyOf
        Previous value: -[
        -  {
        -    "additionalProperties": false,
        -    "properties": {
        -      "decisions": {
        -        "items": {
        -          "additionalProperties": false,
        -          "description": "Référence décision pour signets/consultations : assez pour citer ou\nchaîner vers ``get_decision`` via ``url``, sans le texte intégral.",
        -          "properties": {
        -            "bookmarkedAt": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null,
        -              "format": "date-time"
        -            },
        -            "dateLecture": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null,
        -              "format": "date"
        -            },
        -            "lastSource": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null
        -            },
        -            "lastViewedAt": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null,
        -              "format": "date-time"
        -            },
        -            "solution": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null
        -            },
        -            "summary": {
        -              "anyOf": [
        -                {
        -                  "type": "string"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null
        -            },
        -            "title": {
        -              "type": "string"
        -            },
        -            "url": {
        -              "type": "string"
        -            },
        -            "viewCount": {
        -              "anyOf": [
        -                {
        -                  "type": "integer"
        -                },
        -                {
        -                  "type": "null"
        -                }
        -              ],
        -              "default": null
        -            }
        -          },
        -          "required": [
        -            "title",
        -            "url"
        -          ],
        -          "type": "object"
        -        },
        -        "type": "array"
        -      },
        -      "total": {
        -        "type": "integer"
        -      }
        -    },
        -    "required": [
        -      "total",
        -      "decisions"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "decisions": {
        +        "items": {
        +          "additionalProperties": false,
        +          "description": "Decision reference for bookmarks and reading history: enough to cite it or to chain into get_decision with its `url`, without the full text.",
        +          "properties": {
        +            "bookmarkedAt": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null,
        +              "format": "date-time"
        +            },
        +            "dateLecture": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null,
        +              "format": "date"
        +            },
        +            "lastSource": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null
        +            },
        +            "lastViewedAt": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null,
        +              "format": "date-time"
        +            },
        +            "solution": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null
        +            },
        +            "summary": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null
        +            },
        +            "title": {
        +              "type": "string"
        +            },
        +            "url": {
        +              "type": "string"
        +            },
        +            "viewCount": {
        +              "anyOf": [
        +                {
        +                  "type": "integer"
        +                },
        +                {
        +                  "type": "null"
        +                }
        +              ],
        +              "default": null
        +            }
        +          },
        +          "required": [
        +            "title",
        +            "url"
        +          ],
        +          "type": "object"
        +        },
        +        "type": "array"
        +      },
        +      "total": {
        +        "type": "integer"
        +      }
        +    },
        +    "required": [
        +      "total",
        +      "decisions"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
    • Changedsearch_decisions3 fields changed
      • changedInput schema / properties / chamber / description
        Previous value: -"Restrict to one or more chambers, as a composite key \"<court>|<chamber>\" where <court> is a jurisdiction_code (e.g. \"ca_paris|CH:3\", \"cc|CH:2\", \"cc|MAT:SOCIALE\"). The court prefix is required: a chamber key names a different chamber in each court, \"CH:1\" alone existing in about 200 of them. The chamber part is what names the chamber inside its own court: its position in the organisation chart when it has one, \"CH:2\" (2e chambre), \"CH:5.A\" (section A of the 5th), \"P:1-11\" (pôle 1, 11e chambre), \"CHC:4-7\" (chambre 4-7), \"S:8\" (8e section), \"SS:3\" (3e sous-section), \"SSR:1-4\" and \"CHR:3-8\" (reunited, numbers always ascending); its specialisation otherwise, prefixed \"MAT:\", as at the Cour de cassation whose social and criminal chambers carry no number (\"cc|MAT:SOCIALE\", \"cc|MAT:CRIMINELLE\"). facets.chamber lists the pairs present in the current result set."New value: +"Restrict to one or more chambers, as a composite key \"<court>|<chamber>\" where <court> is a jurisdiction_code (e.g. \"ca_paris|C3\", \"cc|C2\", \"cc|SOCIALE\"). The court prefix is required: a chamber key names a different chamber in each court, \"C1\" alone existing in about 200 of them. The chamber part reads as slots joined by a dot, in the order they render: \"P5\" (pôle 5), \"SC4\" (4e section, which contains chambers), \"C6\" (6e chambre), \"CD\" (chambre D), \"C4-7\" (chambre 4-7), \"S1\" (1re section), \"LB\" (section B), \"Q1-4\" (sous-sections 1/4 réunies), \"R3-8\" (chambres 3/8 réunies), numbers in a reunited list always ascending. So \"P5.C6\" is pôle 5, 6e chambre and \"C5.LA\" is section A of the 5th. A chamber that no coordinate positions is named by what it judges, and the key is that bare name, as at the Cour de cassation whose social and criminal chambers carry no number (\"cc|SOCIALE\", \"cc|CRIMINELLE\"). facets.chamber lists the pairs present in the current result set, and only once jurisdiction_code narrows it to one or more courts: a chamber key is meaningless outside its court, so search for the court first and read its formations from the answer."
      • changedInput schema / properties / limit / description
        Previous value: -"Maximum number of results (1–20, default 10)."New value: +"How many results to come back with. Keep the default of 10: the reranker has already put the best first, and each extra hit spends caller context on a preview that must not be quoted. Above 20 the window is clamped to 20, not refused."
      • changedOutput schema / properties / facets / description
        Previous value: -"Per filter name, a map of filter value to decision count under the current query (jurisdiction_type, jurisdiction_code, chamber, office, legal_domain, solution, procedure, publication, date_lecture_year, legal_instrument). Reuse keys verbatim as filter values. jurisdiction_code is capped to the top 15 courts (other_courts counts the rest), chamber to the top 15 chambers (other_chambers), legal_instrument to the top 10 statutes."New value: +"Per filter name, a map of filter value to decision count under the current query (jurisdiction_type, jurisdiction_code, chamber, office, legal_domain, solution, procedure, publication, date_lecture_year, legal_instrument). Reuse keys verbatim as filter values. jurisdiction_code is capped to the top 15 courts (other_courts counts the rest) and legal_instrument to the top 10 statutes. chamber appears only under a jurisdiction_code filter, and then lists every formation of the selected courts: search once for the court, once more for the chamber."
    • Changedsearch_legal_texts1 field changed
      • changedInput schema / properties / limit / description
        Previous value: -"Maximum number of results (1–20, default 10)."New value: +"How many results to come back with. Keep the default of 10: the reranker has already put the best first, and each extra hit spends caller context on a preview that must not be quoted. Above 20 the window is clamped to 20, not refused."
  5. 1 tool update
    • Changedsearch_decisions4 fields changed
      • changedInput schema / properties / mode / description
        Previous value: -"'auto' is the right choice in almost all cases — it picks the regime from the query shape. auto: combines meaning and keyword matching on plain queries; switches to keyword-only when the query contains ET / OU / SAUF or quoted phrases. lexical: force keyword-only matching. The right choice when searching for a named entity (company, municipality, person), a precise legal formula, or an exact quote — cuts semantic noise. semantic: force the meaning+keyword hybrid even on quoted or operator queries (where auto would fall back to keyword-only)."New value: +"'auto' is the right choice in almost all cases — it picks the regime from the query shape. auto: combines meaning and keyword matching on plain queries; switches to keyword-only when the query contains ET / OU / SAUF or quoted phrases. lexical: force keyword-only matching. Every term becomes required and nothing recovers a miss, so it fits a string you expect word for word (a consecrated formula, the direction of a holding, a party named in the text) and an empty answer is then an answer. Never for a docket number or a decision name, which auto resolves by exact key. semantic: force the meaning+keyword hybrid even on quoted or operator queries (where auto would fall back to keyword-only)."
      • changedInput schema / properties / query / description
        Previous value: -"French query, the primary input. Two regimes — pick the right tool for the job: (a) Natural language or descriptive keywords for legal-issue searches; the engine handles synonyms and reformulations. Examples: « responsabilité hôpital infection nosocomiale » ; « étranger malade soins inaccessibles dans son pays d'origine » ; « licenciement discrimination syndicale charge de la preuve ». (b) Quoted exact phrases and ET / OU / SAUF operators for a named entity (company, municipality, person), a precise legal formula, or the direction of a holding: semantic matching ignores negations (« n'est pas X » ranks like « est X »), and only an exact phrase targets which way the court ruled. Examples: « \"Société Générale\" » ; « \"commune de Saint-Denis\" SAUF Réunion » ; « \"force majeure\" ET épidémie ». Using operators or quotes switches the engine to keyword-only matching for the whole query (no synonyms), so do not mix the two regimes."New value: +"French query, the primary input. Two regimes — pick the right tool for the job: (a) Natural language or descriptive keywords for legal-issue searches; the engine handles synonyms and reformulations. Examples: « responsabilité hôpital infection nosocomiale » ; « étranger malade soins inaccessibles dans son pays d'origine » ; « licenciement discrimination syndicale charge de la preuve ». (b) Quoted exact phrases and ET / OU / SAUF operators for a named entity (company, municipality, person), a precise legal formula, or the direction of a holding: semantic matching ignores negations (« n'est pas X » ranks like « est X »), and only an exact phrase targets which way the court ruled. Examples: « \"Société Générale\" » ; « \"commune de Saint-Denis\" SAUF Réunion » ; « \"force majeure\" ET épidémie ». Using operators or quotes switches the engine to keyword-only matching for the whole query (no synonyms), so do not mix the two regimes: a quoted phrase followed by free words requires every one of them in the same decision. (c) A docket number or a decision name takes neither quotes nor operators: « 21PA01295 », « n° 19-20.682 », « arrêt Danthony » are matched by an exact key, whatever the spelling, and quoting them only costs the recovery that catches a miss."
      • changedOutput schema / properties / absentReference / description
        Previous value: -"Docket number asked for and absent from the corpus: the hits below carry another number."New value: +"Docket number asked for and not found: the hits below carry another number. Absent from the corpus when absentScope is null, absent from that scope only otherwise."
      • addedOutput schema / properties / absentScope
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Court and year the call pinned around absentReference, when no decision carrying that number satisfies them: the number exists elsewhere in the corpus. Drop or widen that filter to reach it."
        +}
  6. 1 tool update
    • Changedsearch_decisions2 fields changed
      • addedOutput schema / properties / total
        Added value: +{
        +  "description": "Decisions matched under the current filters, the whole set and not the served window: `hits` is one page of it, and `facets` counts that same set. Keyword matching is an OR bag over the query tokens, so a long query matches a large share of the corpus: narrow with filters (court, dates, chamber) rather than with more words for the number to count something.",
        +  "type": "integer"
        +}
      • changedOutput schema / required
        Previous value: -[
        -  "query",
        -  "hits"
        -]New value: +[
        +  "query",
        +  "total",
        +  "hits"
        +]
  7. 1 tool update
    • Changedget_legal_text4 fields changed
      • addedOutput schema / properties / articleCount
        Added value: +{
        +  "description": "Number of articles the text carries. Present only on the root of a text with articles.",
        +  "type": "integer"
        +}
      • addedOutput schema / properties / articles
        Added value: +{
        +  "description": "Contents of a text root or of one of its divisions, in reading order. Each `url` goes back to get_legal_text; a `section` entry returns all its articles at once, which is the cheapest way to read a chapter. `text` is joined only within the inline reading budget.",
        +  "items": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "kind": {
        +        "enum": [
        +          "article",
        +          "section"
        +        ],
        +        "type": "string"
        +      },
        +      "num": {
        +        "description": "Article number, or the division title when `kind` is `section`.",
        +        "type": "string"
        +      },
        +      "section": {
        +        "type": "string"
        +      },
        +      "text": {
        +        "type": "string"
        +      },
        +      "url": {
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "kind",
        +      "num",
        +      "url"
        +    ],
        +    "type": "object"
        +  },
        +  "type": "array"
        +}
      • changedOutput schema / properties / num / description
        Previous value: -"Article key. Absent when the url addressed a text with no articles: the payload is then the whole text, `text` carrying its body and `versions` empty."New value: +"Article key. Absent when the url addressed the root of a text: with no articles the payload is the whole text, `text` carrying its body; with articles it is the table of contents, `articles` carrying it."
      • addedOutput schema / properties / omitted
        Added value: +{
        +  "description": "Articles served without their body because the text or division exceeds the inline reading budget: their `url` fetches them.",
        +  "type": "integer"
        +}
  8. 1 tool update
    • Changedsearch_decisions1 field changed
      • changedInput schema / properties / office / anyOf
        Previous value: -[
        -  {
        -    "items": {
        -      "enum": [
        -        "JLD",
        -        "JAF",
        -        "JCP",
        -        "JEX",
        -        "JUGE_ENFANTS",
        -        "PREMIER_PRESIDENT",
        -        "MAGISTRAT_DESIGNE"
        -      ],
        -      "type": "string"
        -    },
        -    "type": "array"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "items": {
        +      "enum": [
        +        "JLD",
        +        "JAF",
        +        "JCP",
        +        "JEX",
        +        "JUGE_ENFANTS",
        +        "PREMIER_PRESIDENT",
        +        "MAGISTRAT_DESIGNE",
        +        "PRESIDENT_SECTION_CONTENTIEUX",
        +        "JUGE_EXPROPRIATION"
        +      ],
        +      "type": "string"
        +    },
        +    "type": "array"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
  9. 2 tool updates
    • Changedget_decision1 field changed
      • removedOutput schema / properties / matiere
        Removed value: -{
        -  "anyOf": [
        -    {
        -      "type": "string"
        -    },
        -    {
        -      "type": "null"
        -    }
        -  ],
        -  "default": null
        -}
    • Changedsearch_decisions5 fields changed
      • changedInput schema / properties / jurisdiction_code / description
        Previous value: -"Restrict to one or more precise court units by referential code. Code shapes: \"cc\" (Cour de cassation), \"ce\" (Conseil d'État), \"cnda\", \"cedh\", \"cjue\"; \"ca_<city>\", \"caa_<city>\", \"ta_<city>\", \"tj_<city>\", \"tcom_<city>\" (e.g. \"ca_paris\", \"ta_marseille\", \"tj_paris\", \"tcom_lyon\"). When unsure, guess with the city name in the code: the error names the nearest valid ones. Each code is a court; the chamber inside it is a separate filter (see chamber and matiere); use jurisdiction_type for the broad category."New value: +"Restrict to one or more precise court units by referential code. Code shapes: \"cc\" (Cour de cassation), \"ce\" (Conseil d'État), \"cnda\", \"cedh\", \"cjue\"; \"ca_<city>\", \"caa_<city>\", \"ta_<city>\", \"tj_<city>\", \"tcom_<city>\" (e.g. \"ca_paris\", \"ta_marseille\", \"tj_paris\", \"tcom_lyon\"). When unsure, guess with the city name in the code: the error names the nearest valid ones. Each code is a court; the chamber inside it is a separate filter (see chamber); use jurisdiction_type for the broad category."
      • removedInput schema / properties / matiere
        Removed value: -{
        -  "anyOf": [
        -    {
        -      "items": {
        -        "enum": [
        -          "BAUX",
        -          "CIVI",
        -          "CIVILE",
        -          "COMMERCIALE",
        -          "CONSEIL",
        -          "CONSTRUCTION",
        -          "COPROPRIETE",
        -          "CORRECTIONNELLE",
        -          "CRIMINELLE",
        -          "DALO",
        -          "ETRANGERS",
        -          "EXPROPRIATION",
        -          "FAMILLE",
        -          "INSTRUCTION",
        -          "MINEURS",
        -          "NATIONALITE",
        -          "PROCEDURES_COLLECTIVES",
        -          "PROTECTION_SOCIALE",
        -          "PROXIMITE",
        -          "PRUD_HOMALE",
        -          "SOCIALE",
        -          "SURENDETTEMENT",
        -          "TERRES",
        -          "URGENCES"
        -        ],
        -        "type": "string"
        -      },
        -      "maxItems": 10,
        -      "type": "array"
        -    },
        -    {
        -      "type": "null"
        -    }
        -  ],
        -  "default": null,
        -  "description": "Filter by subject matter (any-of, uniform across orders): the contentieux the case belongs to, read off the chamber that heard it, independent of the court itself. Pairs with office for the single-judge formations. Where a court names its chambers instead of numbering them, this says the same thing as chamber does (\"cc|MAT:SOCIALE\"), matiere being the one that crosses courts. A general matiere covers its specialities: \"CIVILE\" also returns BAUX, COPROPRIETE and FAMILLE, while a speciality returns itself alone."
        -}
      • changedOutput schema / properties / facets / description
        Previous value: -"Per filter name, a map of filter value to decision count under the current query (jurisdiction_type, jurisdiction_code, matiere, chamber, office, legal_domain, solution, procedure, publication, date_lecture_year, legal_instrument). Reuse keys verbatim as filter values. jurisdiction_code is capped to the top 15 courts (other_courts counts the rest), chamber to the top 15 chambers (other_chambers), legal_instrument to the top 10 statutes."New value: +"Per filter name, a map of filter value to decision count under the current query (jurisdiction_type, jurisdiction_code, chamber, office, legal_domain, solution, procedure, publication, date_lecture_year, legal_instrument). Reuse keys verbatim as filter values. jurisdiction_code is capped to the top 15 courts (other_courts counts the rest), chamber to the top 15 chambers (other_chambers), legal_instrument to the top 10 statutes."
      • addedOutput schema / properties / filterRewritten
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "A filter of the call was retired and rewritten: what was asked, what was searched, and the filter to use instead. The hits answer the rewritten call."
        +}
      • removedOutput schema / properties / hits / items / properties / matiere
        Removed value: -{
        -  "anyOf": [
        -    {
        -      "type": "string"
        -    },
        -    {
        -      "type": "null"
        -    }
        -  ],
        -  "default": null
        -}
  10. 1 tool update
    • Changedsearch_decisions2 fields changed
      • changedInput schema / properties / matiere / description
        Previous value: -"Filter by subject matter (any-of, uniform across orders): the contentieux the case belongs to, read off the chamber that heard it, independent of the court itself. Pairs with office for the single-judge formations. Where a court names its chambers instead of numbering them, this says the same thing as chamber does (\"cc|MAT:SOCIALE\"), matiere being the one that crosses courts."New value: +"Filter by subject matter (any-of, uniform across orders): the contentieux the case belongs to, read off the chamber that heard it, independent of the court itself. Pairs with office for the single-judge formations. Where a court names its chambers instead of numbering them, this says the same thing as chamber does (\"cc|MAT:SOCIALE\"), matiere being the one that crosses courts. A general matiere covers its specialities: \"CIVILE\" also returns BAUX, COPROPRIETE and FAMILLE, while a speciality returns itself alone."
      • changedOutput schema / properties / facets / description
        Previous value: -"Per filter name, a map of filter value to decision count under the current query (jurisdiction_type, jurisdiction_code, matiere, chamber, office, legal_domain, solution, publication, date_lecture_year, legal_instrument). Reuse keys verbatim as filter values. jurisdiction_code is capped to the top 15 courts (other_courts counts the rest), chamber to the top 15 chambers (other_chambers), legal_instrument to the top 10 statutes."New value: +"Per filter name, a map of filter value to decision count under the current query (jurisdiction_type, jurisdiction_code, matiere, chamber, office, legal_domain, solution, procedure, publication, date_lecture_year, legal_instrument). Reuse keys verbatim as filter values. jurisdiction_code is capped to the top 15 courts (other_courts counts the rest), chamber to the top 15 chambers (other_chambers), legal_instrument to the top 10 statutes."
  11. 2 tool updates
    • Changedget_decision1 field changed
      • changedOutput schema / properties / chamber / description
        Previous value: -"Bench that heard the case, as \"<court>|<bench>\", reusable verbatim as the chamber filter."New value: +"Chamber that heard the case, as \"<court>|<chamber>\", reusable verbatim as the chamber filter."
    • Changedsearch_decisions5 fields changed
      • changedInput schema / properties / chamber / description
        Previous value: -"Restrict to one or more benches, as a composite key \"<court>|<bench>\" where <court> is a jurisdiction_code (e.g. \"ca_paris|CH:3\", \"cc|CH:2\"). The court prefix is required: a bench key names a different bench in each court, \"CH:1\" alone existing in about 200 of them. The bench part is a position in the court's own organisation chart, not a subject (that is matiere): \"CH:2\" (2e chambre), \"CH:5.A\" (section A of the 5th), \"P:1-11\" (pôle 1, 11e chambre), \"CHC:4-7\" (chambre 4-7), \"S:8\" (8e section), \"SS:3\" (3e sous-section), \"SSR:1-4\" and \"CHR:3-8\" (reunited, numbers always ascending). facets.chamber lists the pairs present in the current result set."New value: +"Restrict to one or more chambers, as a composite key \"<court>|<chamber>\" where <court> is a jurisdiction_code (e.g. \"ca_paris|CH:3\", \"cc|CH:2\", \"cc|MAT:SOCIALE\"). The court prefix is required: a chamber key names a different chamber in each court, \"CH:1\" alone existing in about 200 of them. The chamber part is what names the chamber inside its own court: its position in the organisation chart when it has one, \"CH:2\" (2e chambre), \"CH:5.A\" (section A of the 5th), \"P:1-11\" (pôle 1, 11e chambre), \"CHC:4-7\" (chambre 4-7), \"S:8\" (8e section), \"SS:3\" (3e sous-section), \"SSR:1-4\" and \"CHR:3-8\" (reunited, numbers always ascending); its specialisation otherwise, prefixed \"MAT:\", as at the Cour de cassation whose social and criminal chambers carry no number (\"cc|MAT:SOCIALE\", \"cc|MAT:CRIMINELLE\"). facets.chamber lists the pairs present in the current result set."
      • changedInput schema / properties / jurisdiction_code / description
        Previous value: -"Restrict to one or more precise court units by referential code. Code shapes: \"cc\" (Cour de cassation), \"ce\" (Conseil d'État), \"cnda\", \"cedh\", \"cjue\"; \"ca_<city>\", \"caa_<city>\", \"ta_<city>\", \"tj_<city>\", \"tcom_<city>\" (e.g. \"ca_paris\", \"ta_marseille\", \"tj_paris\", \"tcom_lyon\"). When unsure, guess with the city name in the code: the error names the nearest valid ones. Each code is a court; the bench is a separate axis (see chamber and matiere); use jurisdiction_type for the broad category."New value: +"Restrict to one or more precise court units by referential code. Code shapes: \"cc\" (Cour de cassation), \"ce\" (Conseil d'État), \"cnda\", \"cedh\", \"cjue\"; \"ca_<city>\", \"caa_<city>\", \"ta_<city>\", \"tj_<city>\", \"tcom_<city>\" (e.g. \"ca_paris\", \"ta_marseille\", \"tj_paris\", \"tcom_lyon\"). When unsure, guess with the city name in the code: the error names the nearest valid ones. Each code is a court; the chamber inside it is a separate filter (see chamber and matiere); use jurisdiction_type for the broad category."
      • changedInput schema / properties / matiere / description
        Previous value: -"Filter by subject matter (any-of, uniform across orders): the contentieux the case belongs to, read off the bench that heard it, independent of the court itself. Pairs with office for the single-judge benches, and with chamber for the bench itself."New value: +"Filter by subject matter (any-of, uniform across orders): the contentieux the case belongs to, read off the chamber that heard it, independent of the court itself. Pairs with office for the single-judge formations. Where a court names its chambers instead of numbering them, this says the same thing as chamber does (\"cc|MAT:SOCIALE\"), matiere being the one that crosses courts."
      • changedOutput schema / properties / facets / description
        Previous value: -"Per filter name, a map of filter value to decision count under the current query (jurisdiction_type, jurisdiction_code, matiere, chamber, office, legal_domain, solution, publication, date_lecture_year, legal_instrument). Reuse keys verbatim as filter values. jurisdiction_code is capped to the top 15 courts (other_courts counts the rest), chamber to the top 15 benches (other_benches), legal_instrument to the top 10 statutes."New value: +"Per filter name, a map of filter value to decision count under the current query (jurisdiction_type, jurisdiction_code, matiere, chamber, office, legal_domain, solution, publication, date_lecture_year, legal_instrument). Reuse keys verbatim as filter values. jurisdiction_code is capped to the top 15 courts (other_courts counts the rest), chamber to the top 15 chambers (other_chambers), legal_instrument to the top 10 statutes."
      • changedOutput schema / properties / hits / items / properties / chamber / description
        Previous value: -"Bench that heard the case, as \"<court>|<bench>\", reusable verbatim as the chamber filter."New value: +"Chamber that heard the case, as \"<court>|<chamber>\", reusable verbatim as the chamber filter."
  12. 2 tool updates
    • Changedget_decision1 field changed
      • changedOutput schema / properties / chamber / description
        Previous value: -"Factual bench key, reusable verbatim as the chamber filter."New value: +"Bench that heard the case, as \"<court>|<bench>\", reusable verbatim as the chamber filter."
    • Changedsearch_decisions4 fields changed
      • changedInput schema / properties / chamber / anyOf
        Previous value: -[
        -  {
        -    "items": {
        -      "maxLength": 20,
        -      "type": "string"
        -    },
        -    "maxItems": 10,
        -    "type": "array"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "items": {
        +      "maxLength": 60,
        +      "type": "string"
        +    },
        +    "maxItems": 10,
        +    "type": "array"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedInput schema / properties / chamber / description
        Previous value: -"Restrict to one or more benches by their factual key: the position in the court's own organisation chart, not a subject (that is matiere). Key shapes: \"CH:2\" (2e chambre), \"CH:5.A\" (section A of the 5th), \"P:1-11\" (pôle 1, 11e chambre), \"CHC:4-7\" (chambre 4-7), \"S:8\" (8e section), \"SS:3\" (3e sous-section), \"SSR:1-4\" and \"CHR:3-8\" (reunited, numbers always ascending). The same key means a different bench in each court, so pair it with jurisdiction_code; facets.chamber lists the keys present in the current result set with their labels."New value: +"Restrict to one or more benches, as a composite key \"<court>|<bench>\" where <court> is a jurisdiction_code (e.g. \"ca_paris|CH:3\", \"cc|CH:2\"). The court prefix is required: a bench key names a different bench in each court, \"CH:1\" alone existing in about 200 of them. The bench part is a position in the court's own organisation chart, not a subject (that is matiere): \"CH:2\" (2e chambre), \"CH:5.A\" (section A of the 5th), \"P:1-11\" (pôle 1, 11e chambre), \"CHC:4-7\" (chambre 4-7), \"S:8\" (8e section), \"SS:3\" (3e sous-section), \"SSR:1-4\" and \"CHR:3-8\" (reunited, numbers always ascending). facets.chamber lists the pairs present in the current result set."
      • changedOutput schema / properties / facets / description
        Previous value: -"Per filter name, a map of filter value to decision count under the current query (jurisdiction_type, jurisdiction_code, matiere, chamber, office, legal_domain, solution, publication, date_lecture_year, legal_instrument). Reuse keys verbatim as filter values. jurisdiction_code is capped to the top 15 courts (other_courts counts the rest), legal_instrument to the top 10 statutes."New value: +"Per filter name, a map of filter value to decision count under the current query (jurisdiction_type, jurisdiction_code, matiere, chamber, office, legal_domain, solution, publication, date_lecture_year, legal_instrument). Reuse keys verbatim as filter values. jurisdiction_code is capped to the top 15 courts (other_courts counts the rest), chamber to the top 15 benches (other_benches), legal_instrument to the top 10 statutes."
      • changedOutput schema / properties / hits / items / properties / chamber / description
        Previous value: -"Factual bench key, reusable verbatim as the chamber filter."New value: +"Bench that heard the case, as \"<court>|<bench>\", reusable verbatim as the chamber filter."
  13. 2 tool updates
    • Changedget_decision6 fields changed
      • addedOutput schema / properties / chamber
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Factual bench key, reusable verbatim as the chamber filter."
        +}
      • removedOutput schema / properties / publication / anyOf
        Removed value: -[
        -  {
        -    "type": "string"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]
      • removedOutput schema / properties / publication / default
        Removed value: -null
      • addedOutput schema / properties / publication / description
        Added value: +"Publication values carried, reusable verbatim as the publication filter."
      • addedOutput schema / properties / publication / items
        Added value: +{
        +  "type": "string"
        +}
      • addedOutput schema / properties / publication / type
        Added value: +"array"
    • Changedsearch_decisions6 fields changed
      • addedOutput schema / properties / absentReference
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Docket number asked for and absent from the corpus: the hits below carry another number."
        +}
      • removedOutput schema / properties / hits / items / properties / publication / anyOf
        Removed value: -[
        -  {
        -    "type": "string"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]
      • removedOutput schema / properties / hits / items / properties / publication / default
        Removed value: -null
      • addedOutput schema / properties / hits / items / properties / publication / description
        Added value: +"Publication values carried, reusable verbatim as the publication filter."
      • addedOutput schema / properties / hits / items / properties / publication / items
        Added value: +{
        +  "type": "string"
        +}
      • addedOutput schema / properties / hits / items / properties / publication / type
        Added value: +"array"
  14. 2 tool updates
    • Changedget_decision2 fields changed
      • removedOutput schema / properties / chamber
        Removed value: -{
        -  "anyOf": [
        -    {
        -      "type": "string"
        -    },
        -    {
        -      "type": "null"
        -    }
        -  ],
        -  "default": null
        -}
      • addedOutput schema / properties / matiere
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null
        +}
    • Changedsearch_decisions7 fields changed
      • changedInput schema / properties / chamber / anyOf
        Previous value: -[
        -  {
        -    "items": {
        -      "enum": [
        -        "BAUX",
        -        "CIVI",
        -        "CIVILE",
        -        "COMMERCIALE",
        -        "CONSEIL",
        -        "CONSTRUCTION",
        -        "COPROPRIETE",
        -        "CORRECTIONNELLE",
        -        "CRIMINELLE",
        -        "DALO",
        -        "ETRANGERS",
        -        "EXPROPRIATION",
        -        "FAMILLE",
        -        "INSTRUCTION",
        -        "MINEURS",
        -        "NATIONALITE",
        -        "PROCEDURES_COLLECTIVES",
        -        "PROTECTION_SOCIALE",
        -        "PROXIMITE",
        -        "PRUD_HOMALE",
        -        "SOCIALE",
        -        "SURENDETTEMENT",
        -        "TERRES",
        -        "URGENCES"
        -      ],
        -      "type": "string"
        -    },
        -    "maxItems": 10,
        -    "type": "array"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "items": {
        +      "maxLength": 20,
        +      "type": "string"
        +    },
        +    "maxItems": 10,
        +    "type": "array"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedInput schema / properties / chamber / description
        Previous value: -"Filter by chamber category (any-of, uniform across orders): the specialised bench that heard the case, independent of the court itself. Pairs with office for the single-judge benches."New value: +"Restrict to one or more benches by their factual key: the position in the court's own organisation chart, not a subject (that is matiere). Key shapes: \"CH:2\" (2e chambre), \"CH:5.A\" (section A of the 5th), \"P:1-11\" (pôle 1, 11e chambre), \"CHC:4-7\" (chambre 4-7), \"S:8\" (8e section), \"SS:3\" (3e sous-section), \"SSR:1-4\" and \"CHR:3-8\" (reunited, numbers always ascending). The same key means a different bench in each court, so pair it with jurisdiction_code; facets.chamber lists the keys present in the current result set with their labels."
      • changedInput schema / properties / jurisdiction_code / description
        Previous value: -"Restrict to one or more precise court units by referential code. Code shapes: \"cc\" (Cour de cassation), \"ce\" (Conseil d'État), \"cnda\", \"cedh\", \"cjue\"; \"ca_<city>\", \"caa_<city>\", \"ta_<city>\", \"tj_<city>\", \"tcom_<city>\" (e.g. \"ca_paris\", \"ta_marseille\", \"tj_paris\", \"tcom_lyon\"). When unsure, guess with the city name in the code — the error names the nearest valid ones. Each code is a court; the chamber is a separate axis (see chamber); use jurisdiction_type for the broad category."New value: +"Restrict to one or more precise court units by referential code. Code shapes: \"cc\" (Cour de cassation), \"ce\" (Conseil d'État), \"cnda\", \"cedh\", \"cjue\"; \"ca_<city>\", \"caa_<city>\", \"ta_<city>\", \"tj_<city>\", \"tcom_<city>\" (e.g. \"ca_paris\", \"ta_marseille\", \"tj_paris\", \"tcom_lyon\"). When unsure, guess with the city name in the code: the error names the nearest valid ones. Each code is a court; the bench is a separate axis (see chamber and matiere); use jurisdiction_type for the broad category."
      • addedInput schema / properties / matiere
        Added value: +{
        +  "anyOf": [
        +    {
        +      "items": {
        +        "enum": [
        +          "BAUX",
        +          "CIVI",
        +          "CIVILE",
        +          "COMMERCIALE",
        +          "CONSEIL",
        +          "CONSTRUCTION",
        +          "COPROPRIETE",
        +          "CORRECTIONNELLE",
        +          "CRIMINELLE",
        +          "DALO",
        +          "ETRANGERS",
        +          "EXPROPRIATION",
        +          "FAMILLE",
        +          "INSTRUCTION",
        +          "MINEURS",
        +          "NATIONALITE",
        +          "PROCEDURES_COLLECTIVES",
        +          "PROTECTION_SOCIALE",
        +          "PROXIMITE",
        +          "PRUD_HOMALE",
        +          "SOCIALE",
        +          "SURENDETTEMENT",
        +          "TERRES",
        +          "URGENCES"
        +        ],
        +        "type": "string"
        +      },
        +      "maxItems": 10,
        +      "type": "array"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Filter by subject matter (any-of, uniform across orders): the contentieux the case belongs to, read off the bench that heard it, independent of the court itself. Pairs with office for the single-judge benches, and with chamber for the bench itself."
        +}
      • changedOutput schema / properties / facets / description
        Previous value: -"Per filter name, a map of filter value to decision count under the current query (jurisdiction_type, jurisdiction_code, chamber, office, legal_domain, solution, publication, date_lecture_year, legal_instrument). Reuse keys verbatim as filter values. jurisdiction_code is capped to the top 15 courts (other_courts counts the rest), legal_instrument to the top 10 statutes."New value: +"Per filter name, a map of filter value to decision count under the current query (jurisdiction_type, jurisdiction_code, matiere, chamber, office, legal_domain, solution, publication, date_lecture_year, legal_instrument). Reuse keys verbatim as filter values. jurisdiction_code is capped to the top 15 courts (other_courts counts the rest), legal_instrument to the top 10 statutes."
      • addedOutput schema / properties / hits / items / properties / chamber / description
        Added value: +"Factual bench key, reusable verbatim as the chamber filter."
      • addedOutput schema / properties / hits / items / properties / matiere
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null
        +}
  15. 2 tool updates
    • Changedget_decision1 field changed
      • addedOutput schema / properties / officialUrl
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "The decision on its official publisher: legifrance.gouv.fr, courdecassation.fr, opendata.justice-administrative.fr, conseil-constitutionnel.fr, hudoc, eur-lex. Cite this when the deliverable requires the authoritative source; `url` is the LibreJustice page. Absent when the publisher exposes no per-decision permalink."
        +}
    • Changedsearch_decisions7 fields changed
      • changedInput schema / properties / chamber / anyOf
        Previous value: -[
        -  {
        -    "items": {
        -      "maxLength": 40,
        -      "type": "string"
        -    },
        -    "maxItems": 10,
        -    "type": "array"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "items": {
        +      "enum": [
        +        "BAUX",
        +        "CIVI",
        +        "CIVILE",
        +        "COMMERCIALE",
        +        "CONSEIL",
        +        "CONSTRUCTION",
        +        "COPROPRIETE",
        +        "CORRECTIONNELLE",
        +        "CRIMINELLE",
        +        "DALO",
        +        "ETRANGERS",
        +        "EXPROPRIATION",
        +        "FAMILLE",
        +        "INSTRUCTION",
        +        "MINEURS",
        +        "NATIONALITE",
        +        "PROCEDURES_COLLECTIVES",
        +        "PROTECTION_SOCIALE",
        +        "PROXIMITE",
        +        "PRUD_HOMALE",
        +        "SOCIALE",
        +        "SURENDETTEMENT",
        +        "TERRES",
        +        "URGENCES"
        +      ],
        +      "type": "string"
        +    },
        +    "maxItems": 10,
        +    "type": "array"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedInput schema / properties / chamber / description
        Previous value: -"Filter by chamber category (any-of, uniform across orders, e.g. \"CIVILE\", \"SOCIALE\", \"COMMERCIALE\", \"PROCEDURES_COLLECTIVES\", \"ETRANGERS\", \"PROTECTION_SOCIALE\", \"INSTRUCTION\"). Codes come from the chamber facet of a previous search."New value: +"Filter by chamber category (any-of, uniform across orders): the specialised bench that heard the case, independent of the court itself. Pairs with office for the single-judge benches."
      • changedInput schema / properties / publication / anyOf
        Previous value: -[
        -  {
        -    "items": {
        -      "enum": [
        -        "PUBLIE_BULLETIN",
        -        "INEDIT_BULLETIN",
        -        "PUBLIE_LEBON",
        -        "MENTIONNE_LEBON",
        -        "INEDIT_LEBON",
        -        "AUTRE"
        -      ],
        -      "type": "string"
        -    },
        -    "type": "array"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "items": {
        +      "enum": [
        +        "PUBLIE_BULLETIN",
        +        "PUBLIE_RAPPORT",
        +        "LETTRE_CHAMBRE",
        +        "COMMUNIQUE",
        +        "INEDIT_BULLETIN",
        +        "PUBLIE_LEBON",
        +        "MENTIONNE_LEBON",
        +        "INEDIT_LEBON"
        +      ],
        +      "type": "string"
        +    },
        +    "type": "array"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedInput schema / properties / publication / description
        Previous value: -"Filter by publication level (any-of, référentiel publication): PUBLIE_BULLETIN / INEDIT_BULLETIN (Cour de cassation), PUBLIE_LEBON / MENTIONNE_LEBON / INEDIT_LEBON (administrative), AUTRE (no publication statement in the source)."New value: +"Filter by publication, at the grain the Cour de cassation itself uses (any-of, membership is multiple: a decision matches every value whose code it carries). Judicial order: PUBLIE_BULLETIN, PUBLIE_RAPPORT (annual report, the strongest signal), LETTRE_CHAMBRE, COMMUNIQUE, INEDIT_BULLETIN. Administrative order: PUBLIE_LEBON, MENTIONNE_LEBON, INEDIT_LEBON. Lower courts carry no publication statement and match no value."
      • removedInput schema / properties / significance
        Removed value: -{
        -  "anyOf": [
        -    {
        -      "items": {
        -        "enum": [
        -          "MAJEURE",
        -          "IMPORTANTE",
        -          "LIMITEE",
        -          "INDETERMINEE"
        -        ],
        -        "type": "string"
        -      },
        -      "type": "array"
        -    },
        -    {
        -      "type": "null"
        -    }
        -  ],
        -  "default": null,
        -  "description": "Filter by jurisprudential significance (any-of), derived from publication codes at strongest rank: MAJEURE (rapport annuel / recueil Lebon), IMPORTANTE (bulletin, tables du Lebon, lettres de chambre, communiqués), LIMITEE (unpublished), INDETERMINEE (no publication statement — lower courts, European courts)."
        -}
      • changedOutput schema / properties / facets / description
        Previous value: -"Per filter name, a map of filter value to decision count under the current query (jurisdiction_type, jurisdiction_code, chamber, office, legal_domain, solution, significance, publication, date_lecture_year, legal_instrument). Reuse keys verbatim as filter values. jurisdiction_code is capped to the top 15 courts (other_courts counts the rest), legal_instrument to the top 10 statutes."New value: +"Per filter name, a map of filter value to decision count under the current query (jurisdiction_type, jurisdiction_code, chamber, office, legal_domain, solution, publication, date_lecture_year, legal_instrument). Reuse keys verbatim as filter values. jurisdiction_code is capped to the top 15 courts (other_courts counts the rest), legal_instrument to the top 10 statutes."
      • addedOutput schema / properties / hits / items / properties / officialUrl
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "The decision on its official publisher: legifrance.gouv.fr, courdecassation.fr, opendata.justice-administrative.fr, conseil-constitutionnel.fr, hudoc, eur-lex. Cite this when the deliverable requires the authoritative source; `url` is the LibreJustice page. Absent when the publisher exposes no per-decision permalink."
        +}
  16. 1 tool update
    • Changedget_legal_text1 field changed
      • removedInput schema / anyOf
        Removed value: -[
        -  {
        -    "required": [
        -      "url"
        -    ]
        -  },
        -  {
        -    "required": [
        -      "code"
        -    ]
        -  },
        -  {
        -    "required": [
        -      "textId"
        -    ]
        -  }
        -]
  17. 2 tool updates
    • Changedget_legal_text14 fields changed
      • addedInput schema / anyOf
        Added value: +[
        +  {
        +    "required": [
        +      "url"
        +    ]
        +  },
        +  {
        +    "required": [
        +      "code"
        +    ]
        +  },
        +  {
        +    "required": [
        +      "textId"
        +    ]
        +  }
        +]
      • addedInput schema / properties / article
        Added value: +{
        +  "description": "Lowercase article key, alongside `code` (\"l761-1\" for L. 761-1, \"1240\" for 1240).",
        +  "type": "string"
        +}
      • addedInput schema / properties / code
        Added value: +{
        +  "description": "Code slug, when you hold the code and the article apart rather than as a url (\"code-civil\"). Alone, addresses the text itself.",
        +  "type": "string"
        +}
      • addedInput schema / properties / textId
        Added value: +{
        +  "description": "Légifrance article id (LEGIARTI…), resolved to the article it designates. LEGITEXT and CID are not accepted.",
        +  "type": "string"
        +}
      • changedInput schema / properties / url / description
        Previous value: -"A librejustice.fr article URL `/texte/{code}/{article}`: take it from a search_legal_texts hit or an inline citation link, or compose it — {code} is the code slug (\"code-civil\", as in facets.legal_instrument), {article} the lowercase article key (\"l761-1\" for L. 761-1, \"1240\" for 1240). Never a Légifrance id — LEGIARTI/LEGITEXT/CID are not accepted."New value: +"A librejustice.fr article URL `/texte/{code}/{article}`: take it from a search_legal_texts hit or an inline citation link, or compose it — {code} is the code slug (\"code-civil\", as in facets.legal_instrument), {article} the lowercase article key (\"l761-1\" for L. 761-1, \"1240\" for 1240). `/texte/{code}` alone addresses the text itself, which is how a text with no articles (circulaire, publication decree) is read."
      • removedInput schema / required
        Removed value: -[
        -  "url"
        -]
      • addedOutput schema / properties / dateDebut / anyOf
        Added value: +[
        +  {
        +    "type": "string"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • addedOutput schema / properties / dateDebut / default
        Added value: +null
      • removedOutput schema / properties / dateDebut / type
        Removed value: -"string"
      • addedOutput schema / properties / etat / anyOf
        Added value: +[
        +  {
        +    "type": "string"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • addedOutput schema / properties / etat / default
        Added value: +null
      • removedOutput schema / properties / etat / type
        Removed value: -"string"
      • addedOutput schema / properties / num / description
        Added value: +"Article key. Absent when the url addressed a text with no articles: the payload is then the whole text, `text` carrying its body and `versions` empty."
      • changedOutput schema / required
        Previous value: -[
        -  "code",
        -  "num",
        -  "title",
        -  "url",
        -  "etat",
        -  "dateDebut",
        -  "versions"
        -]New value: +[
        +  "code",
        +  "title",
        +  "url",
        +  "versions"
        +]
    • Changedsearch_legal_texts1 field changed
      • changedInput schema / properties / query / description
        Previous value: -"French query over statutory articles. Matches article titles (boosted) and bodies; alias expansion handles acronyms and usual names."New value: +"French query over legal articles. Matches article titles (boosted) and bodies; alias expansion handles acronyms and usual names."
  18. 1 tool update
    • Changedsearch_decisions4 fields changed
      • changedInput schema / properties / ai_rerank / description
        Previous value: -"When enabled (default), reorders results by actual relevance to the query using an LLM reranker (cf. ADR 0041). Keep on for agentic use — shortlist quality is significantly higher. Cost: a few seconds of extra latency. Disable only for high-rate exploratory searches where latency matters more than ranking quality."New value: +"When enabled (default), reorders results by actual relevance to the query using an LLM reranker. Keep on for agentic use — shortlist quality is significantly higher. Cost: a few seconds of extra latency. Disable only for high-rate exploratory searches where latency matters more than ranking quality."
      • changedInput schema / properties / legal_domain / description
        Previous value: -"Filter by legal domain (curated domain tree, ADR 0146): 9 roots and their leaves (e.g. CIVIL_DROIT_LOCATIF). Selecting a root also matches all its leaves."New value: +"Filter by legal domain (curated domain tree): 9 roots and their leaves (e.g. CIVIL_DROIT_LOCATIF). Selecting a root also matches all its leaves."
      • changedInput schema / properties / significance / description
        Previous value: -"Filter by jurisprudential significance (any-of, ADR 0167), derived from publication codes at strongest rank: MAJEURE (rapport annuel / recueil Lebon), IMPORTANTE (bulletin, tables du Lebon, lettres de chambre, communiqués), LIMITEE (unpublished), INDETERMINEE (no publication statement — lower courts, European courts)."New value: +"Filter by jurisprudential significance (any-of), derived from publication codes at strongest rank: MAJEURE (rapport annuel / recueil Lebon), IMPORTANTE (bulletin, tables du Lebon, lettres de chambre, communiqués), LIMITEE (unpublished), INDETERMINEE (no publication statement — lower courts, European courts)."
      • changedInput schema / properties / solution / description
        Previous value: -"Filter by the ruling of the operative part (référentiel solution, ADR 0146). REJET / IRRECEVABILITE / DESISTEMENT / NON_LIEU_A_STATUER are procedural or negative endings; CONFIRMATION / INFIRMATION* / REFORMATION are appeal outcomes; CASSATION* is cassation-specific; ANNULATION covers administrative annulment; SATISFACTION_TOTALE / SATISFACTION_PARTIELLE cover first-instance civil rulings granting the claim."New value: +"Filter by the ruling of the operative part (référentiel solution). REJET / IRRECEVABILITE / DESISTEMENT / NON_LIEU_A_STATUER are procedural or negative endings; CONFIRMATION / INFIRMATION* / REFORMATION are appeal outcomes; CASSATION* is cassation-specific; ANNULATION covers administrative annulment; SATISFACTION_TOTALE / SATISFACTION_PARTIELLE cover first-instance civil rulings granting the claim."

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.7/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: decisions, legal texts, search over each, and user activity. Even though get_decision and get_legal_text both fetch documents, their domains are clearly separated by name and description.

Naming Consistency5/5

All tool names follow the same snake_case verb_noun pattern: get_*, search_*, list_*. There is no mixing of conventions, vague verbs, or inconsistent casing.

Tool Count5/5

Five tools is well-scoped for a legal research server: search and retrieval for both decisions and legal texts, plus user activity. Every tool fills a clear role without redundancy.

Completeness5/5

The domain is read-oriented legal research, and the set covers both search and retrieval for its two primary object types, with user activity as a useful auxiliary. There are no obvious dead ends or missing core operations.