courtlistener-mcp-server

v0.4.0 pre-1.0

Search and retrieve US court opinions, federal dockets, judge records, citation networks, and oral arguments from CourtListener's 9M+ opinion corpus via MCP. STDIO or Streamable HTTP.

courtlistener.caseyjhand.com/mcp
claude mcp add --transport http courtlistener-mcp-server https://courtlistener.caseyjhand.com/mcp
codex mcp add courtlistener-mcp-server --url https://courtlistener.caseyjhand.com/mcp
{
  "mcpServers": {
    "courtlistener-mcp-server": {
      "url": "https://courtlistener.caseyjhand.com/mcp"
    }
  }
}
gemini mcp add --transport http courtlistener-mcp-server https://courtlistener.caseyjhand.com/mcp
{
  "mcpServers": {
    "courtlistener-mcp-server": {
      "command": "bunx",
      "args": [
        "mcp-remote",
        "https://courtlistener.caseyjhand.com/mcp"
      ]
    }
  }
}
{
  "mcpServers": {
    "courtlistener-mcp-server": {
      "type": "http",
      "url": "https://courtlistener.caseyjhand.com/mcp"
    }
  }
}
curl -X POST https://courtlistener.caseyjhand.com/mcp \
  -H "Content-Type: application/json" \
  -H "MCP-Protocol-Version: 2025-11-25" \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-11-25","capabilities":{},"clientInfo":{"name":"curl","version":"1.0.0"}}}'

Tools

14

courtlistener_search_opinions

open-world

Full-text search across 9M+ written US court opinions with field-level filtering. Returns opinion cluster summaries with case metadata, citations, and matched text snippets. Supports CourtListener field syntax (caseName:"roe v wade", court_id:scotus, judge:"Alito") and boolean operators (AND, OR, NOT). Use courtlistener_lookup_courts to find court IDs. Rate limit: 5 req/min, 50/hr, 125/day on the free tier.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "courtlistener_search_opinions",
    "arguments": {
      "q": "<q>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "q": {
      "type": "string",
      "minLength": 1,
      "description": "Full-text query. Supports field syntax (caseName:\"roe v wade\", court_id:scotus, judge:\"Alito\") and boolean operators (AND, OR, NOT). Use plain English for semantic-style queries or legal citations."
    },
    "court": {
      "description": "Filter to a specific court by court ID (e.g., \"scotus\", \"ca9\", \"nyed\"). Use courtlistener_lookup_courts to find court IDs.",
      "type": "string"
    },
    "filed_after": {
      "description": "Earliest filing date (ISO 8601, e.g., \"2020-01-01\"). Narrows search to opinions filed on or after this date.",
      "type": "string"
    },
    "filed_before": {
      "description": "Latest filing date (ISO 8601). Narrows search to opinions filed before or on this date.",
      "type": "string"
    },
    "status": {
      "description": "Opinion publication status. \"Published\": precedential. \"Unpublished\": not citable as precedent in most jurisdictions. \"Errata\": corrections. \"Separate\": separate opinion filed outside main cluster. \"In-chambers\": single-justice order. \"Relating-to\": companion or related-case order. Omit to search all statuses.",
      "type": "string",
      "enum": [
        "Published",
        "Unpublished",
        "Errata",
        "Separate",
        "In-chambers",
        "Relating-to",
        "Unknown"
      ]
    },
    "order_by": {
      "default": "score desc",
      "description": "Result ordering. \"score desc\" (default) ranks by relevance. \"citeCount desc\" surfaces most-cited opinions first.",
      "type": "string",
      "enum": [
        "score desc",
        "dateFiled desc",
        "dateFiled asc",
        "citeCount desc"
      ]
    },
    "page_size": {
      "default": 20,
      "description": "Number of results to request (default 20). CourtListener search enforces a minimum of 20 results per page regardless of the value passed — you will always receive at least 20 results. Each search costs one request against the rate limit.",
      "type": "integer",
      "minimum": 1,
      "maximum": 20
    },
    "cursor": {
      "description": "Pagination cursor from a previous response's next_cursor field. Omit for the first page.",
      "type": "string"
    }
  },
  "required": [
    "q",
    "order_by",
    "page_size"
  ],
  "additionalProperties": false
}
view source ↗

courtlistener_get_opinion

Fetch the full text and metadata for a single opinion cluster by cluster ID. A cluster groups all opinions filed in a case — majority, concurrence, dissent, and per curiam. Returns the cluster metadata (case name, court, citations, dates) plus every opinion variant with HTML and plain text. When the combined opinion text is too large to inline, the response lists each variant as a retrievable section (opinion_<id>) while keeping the cheap cluster metadata — re-call with sections:[...] to pull specific variants in full. Obtain cluster IDs from courtlistener_search_opinions, courtlistener_lookup_citation, or docket results.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "courtlistener_get_opinion",
    "arguments": {
      "cluster_id": "<cluster_id>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "cluster_id": {
      "type": "integer",
      "minimum": -9007199254740991,
      "maximum": 9007199254740991,
      "description": "Opinion cluster ID — identifies a case decision and groups all opinion variants (majority, concurrence, dissent). Obtain from courtlistener_search_opinions, courtlistener_lookup_citation, or from docket results that link to opinions."
    },
    "sections": {
      "description": "Opinion variant identifiers to retrieve in full, from a prior outline response (e.g. [\"opinion_12345\"]). Omit to return all variants, or an outline if they overflow the inline byte budget.",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "cluster_id"
  ],
  "additionalProperties": false
}
view source ↗

courtlistener_get_citations

open-world

Retrieve the citation network for an opinion cluster. Supports two directions: "cited_by" (opinions that cite this one — measures precedential influence) and "citing" (opinions this one cites — reveals the authority chain relied on). This is the primary tool for tracing legal precedent chains. Note: the free tier (125 req/day) supports shallow traversal — following 1–2 hops of a single case is practical; deep multi-hop analysis burns through the daily budget quickly.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "courtlistener_get_citations",
    "arguments": {
      "cluster_id": "<cluster_id>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "cluster_id": {
      "type": "integer",
      "minimum": -9007199254740991,
      "maximum": 9007199254740991,
      "description": "Opinion cluster ID to retrieve citations for. Obtain from courtlistener_search_opinions or courtlistener_lookup_citation."
    },
    "direction": {
      "default": "cited_by",
      "description": "\"cited_by\" (default): opinions that cite this one — measures precedential influence and downstream adoption. \"citing\": opinions this one cites — reveals the authority chain the court relied on.",
      "type": "string",
      "enum": [
        "citing",
        "cited_by"
      ]
    },
    "court": {
      "description": "Filter results to a specific court (e.g., \"scotus\", \"ca9\"). Applies to both directions.",
      "type": "string"
    },
    "filed_after": {
      "description": "Limit to citations filed after this date (ISO 8601). For \"cited_by\", useful for \"how has this precedent been applied recently?\"",
      "type": "string"
    },
    "page_size": {
      "default": 20,
      "description": "Number of results to request (default 20). For direction=\"cited_by\", CourtListener enforces a minimum of 20 results per page regardless of the value passed — you will always receive at least 20 results. direction=\"citing\" returns at most page_size (the cited-opinion list is sliced before querying) — fewer when the opinion cites fewer than page_size distinct opinions. Each citation tool call costs one request against the rate limit — keep low for multi-hop traversal.",
      "type": "integer",
      "minimum": 1,
      "maximum": 20
    },
    "cursor": {
      "description": "Pagination cursor from a previous response's next_cursor field.",
      "type": "string"
    }
  },
  "required": [
    "cluster_id",
    "direction",
    "page_size"
  ],
  "additionalProperties": false
}
view source ↗

courtlistener_lookup_citation

Resolve a formatted legal citation string (e.g., "410 U.S. 113", "93 S. Ct. 705") to a cluster ID and case metadata. Enables workflows that start from a known citation rather than a search query. Supports standard US reporter formats. Requires authentication — uses the CourtListener /citation-lookup/ endpoint.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "courtlistener_lookup_citation",
    "arguments": {
      "citation": "<citation>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "citation": {
      "type": "string",
      "minLength": 1,
      "description": "Legal citation string to resolve (e.g., \"410 U.S. 113\", \"347 U.S. 483\", \"93 S. Ct. 705\"). Supports standard reporter formats."
    }
  },
  "required": [
    "citation"
  ],
  "additionalProperties": false
}
view source ↗

courtlistener_search_dockets

open-world

Search RECAP federal court dockets with party name, attorney, court, and date filters. RECAP is a crowd-sourced mirror of PACER (the federal court filing system) — coverage varies by court and date. Returns docket metadata with up to 3 sample document entries per docket. Use courtlistener_lookup_courts to find court IDs.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "courtlistener_search_dockets",
    "arguments": {
      "q": "<q>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "q": {
      "type": "string",
      "minLength": 1,
      "description": "Query terms matched against case name, docket number, party names, and attorney names. Example: \"Apple Inc patent infringement\"."
    },
    "court": {
      "description": "Filter to a specific federal court ID (e.g., \"dnd\", \"cacd\", \"deb\" for Delaware Bankruptcy). Use courtlistener_lookup_courts to find court IDs.",
      "type": "string"
    },
    "party_name": {
      "description": "Filter to dockets listing a specific party by name — applied in addition to (AND with) the q query. More precise than including party names in q when the party name is known.",
      "type": "string"
    },
    "filed_after": {
      "description": "Earliest case filing date (ISO 8601).",
      "type": "string"
    },
    "filed_before": {
      "description": "Latest case filing date (ISO 8601).",
      "type": "string"
    },
    "page_size": {
      "default": 20,
      "description": "Number of results to request (default 20). CourtListener search enforces a minimum of 20 results per page regardless of the value passed — you will always receive at least 20 results.",
      "type": "integer",
      "minimum": 1,
      "maximum": 20
    },
    "cursor": {
      "description": "Pagination cursor from a previous response's next_cursor field.",
      "type": "string"
    }
  },
  "required": [
    "q",
    "page_size"
  ],
  "additionalProperties": false
}
view source ↗

courtlistener_get_docket

Fetch full docket metadata and entry list for a single federal case by docket ID. Returns all available docket entries with document availability status. Documents with is_available=true have a RECAP-stored copy; others require a PACER account. Obtain docket IDs from courtlistener_search_dockets or from opinion results.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "courtlistener_get_docket",
    "arguments": {
      "docket_id": "<docket_id>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "docket_id": {
      "type": "integer",
      "minimum": -9007199254740991,
      "maximum": 9007199254740991,
      "description": "Docket ID from a search result's docket_id field or from an opinion cluster result."
    },
    "entries_page": {
      "default": 1,
      "description": "Page of docket entries to fetch (1-indexed). Docket entries are page-paginated at 20 per page; pass the next_cursor from a previous response here to page through large cases.",
      "type": "integer",
      "minimum": 1,
      "maximum": 9007199254740991
    },
    "entries_page_size": {
      "default": 20,
      "description": "Requested docket entries per page. NOTE: CourtListener ignores this value — /docket-entries/ always returns a fixed 20-entry page regardless of what is passed. Use entries_page to reach entries beyond the first 20 (large cases can have hundreds).",
      "type": "integer",
      "minimum": 1,
      "maximum": 50
    }
  },
  "required": [
    "docket_id",
    "entries_page",
    "entries_page_size"
  ],
  "additionalProperties": false
}
view source ↗

courtlistener_get_parties

Fetch all parties and attorneys of record for a RECAP federal docket by docket ID. Returns each party's name, role (Plaintiff, Defendant, Petitioner, Respondent, etc.), and their attorneys with contact information. Requires two upstream calls per page (parties + attorney batch); keep page_size low to stay within the free-tier rate limit (5 req/min, 125/day). Obtain docket IDs from courtlistener_search_dockets or courtlistener_get_docket.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "courtlistener_get_parties",
    "arguments": {
      "docket_id": "<docket_id>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "docket_id": {
      "type": "integer",
      "minimum": -9007199254740991,
      "maximum": 9007199254740991,
      "description": "Docket ID from a courtlistener_search_dockets or courtlistener_get_docket result's docket_id field."
    },
    "page": {
      "default": 1,
      "description": "Page number (1-indexed). Use with page_size to paginate large party lists.",
      "type": "integer",
      "minimum": 1,
      "maximum": 9007199254740991
    },
    "page_size": {
      "default": 10,
      "description": "Number of parties per page (1–10). Each call makes two upstream requests (parties + attorney batch) — keep low to stay within the free-tier rate limit.",
      "type": "integer",
      "minimum": 1,
      "maximum": 10
    }
  },
  "required": [
    "docket_id",
    "page",
    "page_size"
  ],
  "additionalProperties": false
}
view source ↗

courtlistener_search_judges

open-world

Search judge/person records by name, appointing president, court, political affiliation, or demographic. Returns biographical data, current position, and appointment summary. Use courtlistener_get_judge for full appointment history and education records.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "courtlistener_search_judges",
    "arguments": {
      "q": "<q>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "q": {
      "type": "string",
      "minLength": 1,
      "description": "Search query — judge name, court, city, or relevant keywords."
    },
    "appointer": {
      "description": "Filter by appointing president's last name (e.g., \"Obama\", \"Trump\", \"Biden\"). Matches against the appointer field in position records.",
      "type": "string"
    },
    "court": {
      "description": "Filter to judges who have held a position at this court (e.g., \"scotus\", \"ca9\"). Use court_id strings from courtlistener_lookup_courts.",
      "type": "string"
    },
    "political_affiliation": {
      "description": "Filter by political affiliation: d=Democrat, r=Republican, i=Independent, l=Libertarian, g=Green Party, u=Unknown/unconfirmed. Based on party of the appointing president or election affiliation.",
      "type": "string",
      "enum": [
        "d",
        "r",
        "i",
        "l",
        "g",
        "u"
      ]
    },
    "page_size": {
      "default": 20,
      "description": "Number of results to request (default 20). CourtListener search enforces a minimum of 20 results per page regardless of the value passed.",
      "type": "integer",
      "minimum": 1,
      "maximum": 20
    },
    "cursor": {
      "description": "Pagination cursor from a previous response's next_cursor field.",
      "type": "string"
    }
  },
  "required": [
    "q",
    "page_size"
  ],
  "additionalProperties": false
}
view source ↗

courtlistener_get_judge

Fetch full biographical profile for a single judge: appointment history across all courts, education, political affiliations, and ABA ratings. Obtain person IDs from courtlistener_search_judges results.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "courtlistener_get_judge",
    "arguments": {
      "person_id": "<person_id>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "person_id": {
      "type": "integer",
      "minimum": -9007199254740991,
      "maximum": 9007199254740991,
      "description": "Judge person ID from a search result's person_id field. Identifies a specific judge across all courts they have served on."
    }
  },
  "required": [
    "person_id"
  ],
  "additionalProperties": false
}
view source ↗

courtlistener_lookup_courts

open-world

List courts with optional filtering by jurisdiction type and scraper status. Primarily used to discover court IDs for use in search and filter parameters across all other courtlistener tools. Returns court IDs, full names, citation strings, and scraper status.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "courtlistener_lookup_courts",
    "arguments": {}
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "jurisdiction": {
      "description": "Jurisdiction type. F=Federal Appellate (circuit courts, SCOTUS), FD=Federal District, FB=Federal Bankruptcy, FBP=Federal Bankruptcy Panel, FS=Federal Special (USITC, FISC, etc.), C=Circuit (historical), I=International, T=Territory, ST=State Trial, SS=State Supreme, SAG=State Attorney General, SAL=State Legislature, SA=State Appellate, S=State (other), TT=Tribal/Territory. Omit to list all.",
      "type": "string",
      "enum": [
        "F",
        "FD",
        "FB",
        "FBP",
        "FS",
        "C",
        "I",
        "T",
        "ST",
        "SS",
        "SAG",
        "SAL",
        "SA",
        "S",
        "TT"
      ]
    },
    "in_use": {
      "default": true,
      "description": "When true (default), only return courts currently scraped by CourtListener. Set to false to include historical or inactive courts.",
      "type": "boolean"
    },
    "has_opinion_scraper": {
      "description": "Filter to courts with active opinion scraping. Useful when planning search queries — courts without scrapers have sparse coverage.",
      "type": "boolean"
    }
  },
  "required": [
    "in_use"
  ],
  "additionalProperties": false
}
view source ↗

courtlistener_search_oral_arguments

open-world

Search appellate oral argument audio recordings — the largest public collection of oral argument audio. Returns recording metadata with download URLs, panel judge IDs, and transcript snippets where available. Download URLs are direct MP3 links. Panel judge IDs can be passed to courtlistener_get_judge for biographical context.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "courtlistener_search_oral_arguments",
    "arguments": {
      "q": "<q>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "q": {
      "type": "string",
      "minLength": 1,
      "description": "Query terms matched against case name and transcribed argument text (where available)."
    },
    "court": {
      "description": "Filter to a specific court (e.g., \"scotus\", \"ca9\").",
      "type": "string"
    },
    "argued_after": {
      "description": "Earliest date the case was argued (ISO 8601) — filters by argument date, not publication date.",
      "type": "string"
    },
    "argued_before": {
      "description": "Latest date the case was argued (ISO 8601).",
      "type": "string"
    },
    "page_size": {
      "default": 20,
      "description": "Number of results to request (default 20). CourtListener search enforces a minimum of 20 results per page regardless of the value passed.",
      "type": "integer",
      "minimum": 1,
      "maximum": 20
    },
    "cursor": {
      "description": "Pagination cursor from a previous response's next_cursor field.",
      "type": "string"
    }
  },
  "required": [
    "q",
    "page_size"
  ],
  "additionalProperties": false
}
view source ↗

courtlistener_get_oral_argument

Fetch the full detail record for a single oral argument audio recording by its ID (the audio_id from courtlistener_search_oral_arguments). Returns the case name, panel judge IDs, duration, MP3 download URL, linked docket, and the speech-to-text transcript when transcription has completed. A long transcript overflows to a section outline; re-call with sections:["transcript"] to retrieve it in full. The argument date is not on this record — it comes from the search result or the linked docket.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "courtlistener_get_oral_argument",
    "arguments": {
      "id": "<id>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "minimum": -9007199254740991,
      "maximum": 9007199254740991,
      "description": "Audio recording ID — the audio_id field from a courtlistener_search_oral_arguments result."
    },
    "sections": {
      "description": "Section identifiers to retrieve in full, from a prior outline response (e.g. [\"transcript\"]). Omit for the full record, or an outline if it overflows the inline budget.",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "id"
  ],
  "additionalProperties": false
}
view source ↗

courtlistener_search_financial_disclosures

open-world

Search federal judicial financial disclosure filings — the annual reports judges file on investments, gifts, debts, outside positions, and income. Filter by judge (person ID from courtlistener_search_judges) and/or filing year. Returns per-filing metadata, category counts, itemized gifts, and a link to the source PDF. Line-item investments (often hundreds per filing, with coded values) are summarized as counts; the linked PDF carries the full itemization. Use this for judicial-ethics and recusal research after identifying a judge's person ID.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "courtlistener_search_financial_disclosures",
    "arguments": {}
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "judge_id": {
      "description": "Person ID of the judge whose disclosures to return — obtain from courtlistener_search_judges (the person_id field). Omit to browse across all filers.",
      "type": "integer",
      "minimum": -9007199254740991,
      "maximum": 9007199254740991
    },
    "year": {
      "description": "Filing year to filter by (e.g., 2022). Filters the fetched filings — pair with judge_id for complete per-judge results. Omit to return all available years.",
      "type": "integer",
      "minimum": -9007199254740991,
      "maximum": 9007199254740991
    },
    "page_size": {
      "default": 20,
      "description": "Number of filings to request (default 20). CourtListener enforces a minimum of 20 results per page regardless of the value passed — you will always receive at least 20 filings.",
      "type": "integer",
      "minimum": 1,
      "maximum": 20
    },
    "cursor": {
      "description": "Pagination cursor from a previous response's next_cursor field.",
      "type": "string"
    }
  },
  "required": [
    "page_size"
  ],
  "additionalProperties": false
}
view source ↗

courtlistener_get_financial_disclosure

Fetch a single judicial financial disclosure by ID with its parsed line-item rows — investments, debts, positions, reimbursements, non-investment and spouse income, agreements, and gifts. This is the itemized companion to courtlistener_search_financial_disclosures (which returns only category counts). Pass categories:[...] to select specific categories; omit for all. Coded value/income columns are decoded to readable dollar ranges. When the full itemization is too large to inline, the response lists each category as a retrievable section by byte size while keeping the filing metadata and counts — re-call with categories:[...] to pull specific categories in full. Obtain disclosure IDs from courtlistener_search_financial_disclosures (the disclosure_id field).

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "courtlistener_get_financial_disclosure",
    "arguments": {
      "disclosure_id": "<disclosure_id>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "disclosure_id": {
      "type": "integer",
      "minimum": -9007199254740991,
      "maximum": 9007199254740991,
      "description": "Financial disclosure ID — the disclosure_id field from a courtlistener_search_financial_disclosures result."
    },
    "categories": {
      "description": "Line-item categories to return in full: investments, debts, positions, reimbursements, non_investment_incomes, spouse_incomes, agreements, gifts. Omit for all categories (or an outline if they overflow the inline budget). Also the re-call selector — after an outline response, re-call with the category names it lists.",
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "investments",
          "debts",
          "positions",
          "reimbursements",
          "non_investment_incomes",
          "spouse_incomes",
          "agreements",
          "gifts"
        ]
      }
    }
  },
  "required": [
    "disclosure_id"
  ],
  "additionalProperties": false
}
view source ↗

Resources

1

Static reference guide for CourtListener court IDs, jurisdiction type codes, search type codes, and rate limit information. Read this before building queries to find the correct court ID and jurisdiction filter values.

uri courtlistener://reference/courts mime text/markdown

Prompts

1

Generate a structured legal research plan for a given legal topic or question. Produces a step-by-step workflow using CourtListener tools to find relevant case law, trace precedent chains, and surface key opinions.

  • topicrequired — Legal topic, question, or issue to research (e.g., "Fourth Amendment cell phone search", "Title VII hostile work environment", "Section 1983 qualified immunity").
  • jurisdiction — Optional jurisdiction to focus on (e.g., "scotus" for Supreme Court, "ca9" for Ninth Circuit, "nyed" for SDNY). Omit for nationwide research.
  • depth — "overview" (default): find 3–5 key cases. "deep": include citation network traversal and judge lookup. Note: deep research uses more of the 125 req/day free-tier budget.