Skip to main content
Glama

courtlistener-mcp-server

Server Details

Search US court opinions, federal dockets, judges, citations, and oral arguments via CourtListener.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
cyanheads/courtlistener-mcp-server
GitHub Stars
1

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.4/5 across 10 of 10 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: search tools for different entities (opinions, dockets, judges, oral arguments), retrieval tools for specific entities, citation resolution, and court listing. No overlap or ambiguity.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with the courtlistener_ prefix, using snake_case throughout (e.g., search_opinions, get_docket, lookup_citation). No deviations or mixed conventions.

Tool Count5/5

10 tools is well-scoped for a legal research server covering search, retrieval, citation analysis, and metadata lookup. Each tool earns its place without redundancy or excessive count.

Completeness4/5

The tool surface covers the main domain operations: search and retrieve opinions, dockets, judges, oral arguments, resolve citations, and list courts. Minor gaps exist, such as absence of batch retrieval or citation search, but core workflows are supported.

Available Tools

10 tools
courtlistener_get_citationsGet Citation NetworkA
Read-only
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
courtNoFilter results to a specific court (e.g., "scotus", "ca9"). Applies to both directions.
cursorNoPagination cursor from a previous response's next_cursor field.
directionNo"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.cited_by
page_sizeNoNumber of results (1–20). Each citation tool call costs one request against the rate limit — keep page_size low for multi-hop traversal.
cluster_idYesOpinion cluster ID to retrieve citations for. Obtain from courtlistener_search_opinions or courtlistener_lookup_citation.
filed_afterNoLimit to citations filed after this date (ISO 8601). For "cited_by", useful for "how has this precedent been applied recently?"

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultsYesRelated opinions in the citation network.
directionYesDirection of the citation relationship returned.
next_cursorYesPagination cursor for the next page; null when no more results.
total_countYesTotal citations in the requested direction.
source_case_nameYesCase name for the source cluster.
source_cluster_idYesThe cluster ID this citation network is for.
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true. The description adds context about rate limit consumption (each call costs one request) and implicit pagination via cursor. It does not contradict 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 concise: two sentences plus a critical note. It is front-loaded with the core purpose, and every sentence adds value.

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 6 parameters (1 required), output schema exists, and the description covers direction meanings, rate limit implications, and practical usage. No gaps remain.

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

Parameters5/5

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

Schema description coverage is 100%, and the tool description adds value beyond schema by explaining direction semantics in detail and advising to keep page_size low for multi-hop traversal due to rate limits.

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 clearly states it retrieves the citation network for an opinion cluster and explains the two directions ('cited_by', 'citing') with their meanings. This distinguishes it from sibling tools like courtlistener_get_opinion or search tools.

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?

Explicitly identifies it as the primary tool for tracing legal precedent chains and provides practical usage guidance about rate limits and traversal depth ('following 1–2 hops of a single case is practical; deep multi-hop analysis burns through the daily budget quickly').

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

courtlistener_get_docketGet DocketA
Read-onlyIdempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
docket_idYesDocket ID from a search result's docket_id field or from an opinion cluster result.
entries_page_sizeNoNumber of docket entries to return (1–50). Large cases can have hundreds of entries.

Output Schema

ParametersJSON Schema
NameRequiredDescription
causeYesLegal cause of action.
courtYesCourt display name.
entriesYesDocket entries up to entries_page_size.
court_idYesCourt identifier.
case_nameYesShort case name.
docket_idYesDocket ID.
date_filedYesDate the case was filed.
assigned_toYesAssigned judge name; null if not recorded.
jury_demandYesJury demand status.
referred_toYesReferred judge name; null if not recorded.
docket_numberYesDocket number.
pacer_case_idYesPACER case ID; null if not in RECAP.
total_entriesYesTotal number of docket entries available — may exceed the returned entries list.
case_name_fullYesFull case name.
date_terminatedYesDate the case was terminated; null if active.
jurisdiction_typeYesJurisdiction type.
Behavior4/5

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

Annotations already indicate read-only and idempotent. Description adds context about document availability status and RECAP/PACER distinction, enhancing transparency beyond 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?

Three sentences, each serving a distinct purpose: core action, return details, and ID sourcing. No redundant information; front-loaded with essential info.

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 output schema present, description need not detail return format. Covers purpose, usage, and a key behavioral trait. Complete for this tool's complexity.

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

Parameters3/5

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

Schema covers both parameters fully (100% coverage). Description adds no extra semantic detail beyond what schema provides, so baseline score of 3 is appropriate.

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 clearly states 'Fetch full docket metadata and entry list for a single federal case by docket ID', specifying action (fetch), resource (docket), and scope (full metadata/entries). Differentiates from siblings like search tools by mentioning where to obtain docket IDs.

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?

Explicitly says when to use (by docket ID) and provides hints for document availability (is_available flag) and ID source (search/opinion results). Lacks explicit 'when not to use' but sibling list implies alternatives.

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

courtlistener_get_judgeGet Judge ProfileA
Read-onlyIdempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
person_idYesJudge person ID from a search result's person_id field. Identifies a specific judge across all courts they have served on.

Output Schema

ParametersJSON Schema
NameRequiredDescription
dobYesDate of birth; null if not recorded.
dodYesDate of death; null if living or not recorded.
nameYesFull name.
fjc_idYesFederal Judicial Center ID for cross-referencing with FJC data; null if not available.
genderYesGender.
dob_cityYesCity of birth; null if not recorded.
dob_stateYesState of birth; null if not recorded.
educationYesEducational history.
person_idYesPerson ID.
positionsYesAll judicial positions held, across all courts.
aba_ratingsYesABA qualification rating codes (e.g., "wq"=well qualified, "q"=qualified).
political_affiliationsYesPolitical affiliation history.
Behavior4/5

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

Annotations already indicate read-only and idempotent behavior. The description adds value by enumerating the returned data (appointment history, education, etc.), providing useful behavioral context beyond 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 extremely concise, with two sentences that front-load the purpose and provide clear usage guidance. Every sentence adds value without redundancy.

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's simplicity (one parameter, no nested objects, output schema present), the description fully covers what the tool does, what data it returns, and how to supply the input, leaving no significant gaps.

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

Parameters3/5

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

Schema description coverage is 100%, so parameter semantics are already well-covered. The description adds minor context that person_id comes from search results, but it does not significantly improve understanding beyond the schema.

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 clearly states the tool fetches a full biographical profile for a single judge, listing specific data (appointment history, education, political affiliations, ABA ratings). It distinguishes from sibling search tool by specifying the input source, making purpose unambiguous.

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 explains when to use the tool (to get a judge profile) and how to obtain the required person ID from search results. Although it doesn't explicitly state when not to use it, the context implies it's for single judge details, not searching, which is adequate guidance.

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

courtlistener_get_opinionGet Court OpinionA
Read-onlyIdempotent
Inspect

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 all opinion variants with HTML and plain text. Obtain cluster IDs from courtlistener_search_opinions, courtlistener_lookup_citation, or docket results.

ParametersJSON Schema
NameRequiredDescriptionDefault
cluster_idYesOpinion 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.

Output Schema

ParametersJSON Schema
NameRequiredDescription
courtYesCourt display name.
judgesYesJudge names.
postureYesProcedural posture (may be empty).
court_idYesCourt identifier.
opinionsYesAll opinion variants within this cluster.
syllabusYesSyllabus text (may be empty).
case_nameYesShort case name.
citationsYesAll known citation strings for this case.
docket_idYesAssociated docket ID.
cite_countYesTotal number of citations from other opinions.
cluster_idYesOpinion cluster ID.
date_filedYesDate the opinion was filed.
docket_numberYesDocket number.
case_name_fullYesFull case name with parties.
precedential_statusYesPublication/precedential status.
Behavior5/5

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

Annotations already indicate readOnlyHint=true and idempotentHint=true, but the description adds behavioral context: 'Returns all opinion variants with HTML and plain text.' There is no contradiction with annotations. The description fully discloses the output scope without repeating annotation data.

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?

Two sentences, no filler. Key information is front-loaded: the action, resource, and identifier. Every sentence serves a purpose.

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, the description need not detail return values. It explains what is returned (full text, metadata, all variants, HTML/plain text) and the concept of a cluster. For a simple single-parameter tool, this is complete.

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 has 100% coverage with a good description for the single parameter. The tool description adds value by explaining the concept of a cluster and advising where to obtain the ID, going beyond the schema's description. Given high schema coverage, the baseline is 3, and the added context justifies a 4.

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 clearly states the verb ('Fetch'), resource ('full text and metadata for a single opinion cluster'), and identifies the key identifier ('cluster ID'). It distinguishes from sibling tools by explicitly naming the tools used to obtain cluster IDs (courtlistener_search_opinions, courtlistener_lookup_citation, docket results).

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?

The description tells the agent how to obtain the required cluster ID by referencing sibling tools. It implies when to use this tool (when you need full text and metadata for a specific cluster). However, it does not explicitly state when not to use it or mention alternatives for similar tasks (e.g., getting citations or docket info). The guidance is clear but could be more comprehensive.

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

courtlistener_lookup_citationLookup Legal CitationA
Read-onlyIdempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
citationYesLegal citation string to resolve (e.g., "410 U.S. 113", "347 U.S. 483", "93 S. Ct. 705"). Supports standard reporter formats.

Output Schema

ParametersJSON Schema
NameRequiredDescription
courtYesCourt display name; null if not found.
case_nameYesCase name; null if not found.
citationsYesAll known citation strings for this case.
cluster_idYesOpinion cluster ID — null if the citation is not in the CourtListener database.
date_filedYesDate the opinion was filed; null if not found.
normalized_citationYesCanonical citation form used by CourtListener; null if not resolved.
Behavior4/5

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

Annotations already provide readOnlyHint and idempotentHint; description adds endpoint usage and supported formats. Does not contradict annotations. Could add error handling or rate limit info but not required.

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?

Two sentences, no filler. Front-loaded with the core action. Every sentence adds value.

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 one parameter, rich annotations, and output schema present, the description covers all necessary context: purpose, usage, authentication, endpoint, and format support.

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 provides 100% coverage with description. Description adds examples and mentions 'standard reporter formats', adding context beyond schema.

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?

Clearly states the verb 'resolve' and the resource 'legal citation string', with specific output (cluster ID and metadata). Distinguishes from sibling tools like courtlistener_search_opinions by emphasizing start from known citation.

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?

Explicitly says when to use: 'workflows that start from a known citation' vs. alternatives like search queries. Also mentions authentication requirement upfront.

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

courtlistener_lookup_courtsLookup CourtsA
Read-only
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
in_useNoWhen true (default), only return courts currently scraped by CourtListener. Set to false to include historical or inactive courts.
jurisdictionNoJurisdiction 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.
has_opinion_scraperNoFilter to courts with active opinion scraping. Useful when planning search queries — courts without scrapers have sparse coverage.

Output Schema

ParametersJSON Schema
NameRequiredDescription
courtsYesMatching courts.
total_countYesTotal courts returned.
Behavior3/5

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

Annotations already declare read-only and open-world. Description adds return fields but doesn't contradict annotations. No extra behavioral traits disclosed beyond what schema/annotations imply.

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?

Two concise sentences, front-loaded with action and purpose, no wasted words. Efficiently communicates key information.

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 full schema coverage, output schema existence (implied), and annotations, the description is sufficient for a simple lookup tool. No missing critical information.

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

Parameters3/5

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

Schema has 100% coverage with descriptions for all three parameters. Description briefly restates filtering options but adds no new meaning beyond schema.

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 clearly states 'List courts' with optional filtering, and explicitly says it's used to discover court IDs for other tools, distinguishing it from sibling tools that perform different operations.

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?

Explicitly mentions primary usage for discovering court IDs for use in search/filter parameters across other tools, and hints at when to use optional filters. No direct alternatives, but context is clear.

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

courtlistener_search_docketsSearch Federal Court DocketsA
Read-only
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
qYesQuery terms matched against case name, docket number, party names, and attorney names. Example: "Apple Inc patent infringement".
courtNoFilter to a specific federal court ID (e.g., "dnd", "cacd", "deb" for Delaware Bankruptcy). Use courtlistener_lookup_courts to find court IDs.
cursorNoPagination cursor from a previous response's next_cursor field.
page_sizeNoNumber 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.
party_nameNoFilter 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.
filed_afterNoEarliest case filing date (ISO 8601).
filed_beforeNoLatest case filing date (ISO 8601).

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultsYesMatching docket records.
next_cursorYesPagination cursor for the next page; null when no more results.
total_countYesTotal matching dockets.
coverage_noteYesNote about RECAP coverage limitations.
Behavior4/5

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

Annotations already declare readOnlyHint and openWorldHint. The description adds that RECAP is crowd-sourced with variable coverage, and mentions returning up to 3 sample documents per docket, which is behavioral context beyond 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 two sentences, front-loading the purpose and adding necessary context about RECAP and sample documents. No unnecessary words.

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

Completeness4/5

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

Given the complexity and existing output schema, the description covers purpose, data source limitations, sample behavior, and a pointer to a related tool. It omits pagination details but schema covers cursor. Fairly complete.

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

Parameters3/5

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

Schema coverage is 100% with detailed parameter descriptions. The tool description summarizes filtering capabilities but does not add significant new meaning beyond the schema. Baseline 3 is appropriate.

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 clearly states it searches RECAP federal court dockets with filters for party, attorney, court, and dates, and explains RECAP's nature. It is distinct from sibling tools that search opinions, judges, etc.

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?

The description provides guidance on using courtlistener_lookup_courts for court IDs, implying prerequisite. It does not explicitly mention when not to use or compare to alternatives, but the purpose is clear enough given sibling tool names.

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

courtlistener_search_judgesSearch JudgesA
Read-only
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
qYesSearch query — judge name, court, city, or relevant keywords.
courtNoFilter to judges who have held a position at this court (e.g., "scotus", "ca9"). Use court_id strings from courtlistener_lookup_courts.
cursorNoPagination cursor from a previous response's next_cursor field.
appointerNoFilter by appointing president's last name (e.g., "Obama", "Trump", "Biden"). Matches against the appointer field in position records.
page_sizeNoNumber of results to request (default 20). CourtListener search enforces a minimum of 20 results per page regardless of the value passed.
political_affiliationNoFilter 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.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultsYesMatching judge records.
next_cursorYesPagination cursor for the next page; null when no more results.
total_countYesTotal matching judge records.
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, so the description is not required to repeat those. The description adds context about return data but does not disclose behavioral traits beyond what annotations provide. No contradiction is present.

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 concise with two information-dense sentences and a clear alternative recommendation. It front-loads the action and key features without any unnecessary words.

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 6 parameters with full schema coverage, an output schema exists, and the description provides return data summary and an alternative tool, the description is contextually complete for an AI agent to use correctly.

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

Parameters3/5

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

Since the input schema has 100% description coverage for all 6 parameters, the description does not need to add parameter-level detail. It adds overarching context by listing filter types and outputs, but does not enhance individual parameter meaning beyond the schema.

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 clearly states the tool searches judge/person records with multiple filter options and specifies the return data (biographical, current position, appointment summary). It explicitly distinguishes from the sibling tool courtlistener_get_judge, which provides full history, making the purpose unambiguous.

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?

The description provides clear guidance by directing users to courtlistener_get_judge for full details, implying this tool is for search and summary. However, it does not explicitly state when not to use this tool or compare with other search siblings like courtlistener_search_opinions, which slightly reduces completeness.

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

courtlistener_search_opinionsSearch Court OpinionsA
Read-only
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
qYesFull-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.
courtNoFilter to a specific court by court ID (e.g., "scotus", "ca9", "nyed"). Use courtlistener_lookup_courts to find court IDs.
cursorNoPagination cursor from a previous response's next_cursor field. Omit for the first page.
statusNoOpinion 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.
order_byNoResult ordering. "score desc" (default) ranks by relevance. "citeCount desc" surfaces most-cited opinions first.score desc
page_sizeNoNumber 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.
filed_afterNoEarliest filing date (ISO 8601, e.g., "2020-01-01"). Narrows search to opinions filed on or after this date.
filed_beforeNoLatest filing date (ISO 8601). Narrows search to opinions filed before or on this date.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultsYesMatching opinion cluster summaries.
next_cursorYesPagination cursor for the next page; null when no more results.
total_countYesTotal matching opinions in the corpus.
Behavior4/5

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

Annotations already signal read-only and open-world. Description adds concrete behavioral details: full-text search, field syntax, boolean operators, and return of summaries with snippets. Rate limit info is also provided, beyond 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?

Concise single paragraph, front-loaded with purpose, each sentence adds distinct value (scope, field syntax, rate limits, alternative tool reference). No unnecessary words.

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?

For a search tool with 8 parameters, the description covers purpose, filtering syntax, boolean operators, pagination, ordering, rate limits, and links to an auxiliary tool for court IDs. Output schema exists, so return values need not be detailed.

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%, but description adds value beyond schema: e.g., explains that page_size always returns at least 20 results regardless of passed value, and describes order_by options with relevance to citations.

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?

Clearly states full-text search across 9M+ US court opinions with field-level filtering, snippet returns, and mentions specific field syntax and boolean operators, distinguishing from sibling tools that focus on citations, dockets, judges, or oral arguments.

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?

Advises using courtlistener_lookup_courts for court IDs and mentions rate limits. However, it does not explicitly state when to avoid this tool in favor of siblings, e.g., for docket search.

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

courtlistener_search_oral_argumentsSearch Oral ArgumentsA
Read-only
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
qYesQuery terms matched against case name and transcribed argument text (where available).
courtNoFilter to a specific court (e.g., "scotus", "ca9").
cursorNoPagination cursor from a previous response's next_cursor field.
page_sizeNoNumber of results to request (default 20). CourtListener search enforces a minimum of 20 results per page regardless of the value passed.
argued_afterNoEarliest date the case was argued (ISO 8601) — filters by argument date, not publication date.
argued_beforeNoLatest date the case was argued (ISO 8601).

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultsYesMatching oral argument recordings.
next_cursorYesPagination cursor for the next page; null when no more results.
total_countYesTotal matching oral argument recordings.
Behavior4/5

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

Annotations already indicate read-only and open-world behavior; description adds that download URLs are direct MP3 links and transcript snippets are available only where available, clarifying data variability.

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?

Four focused sentences: one for purpose, one for outputs, two for additional details (download format and related tool usage). No redundant or filler content.

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?

Covers search scope, output format, pagination nuance, date filter semantics, and cross-tool usage; output schema documents return values, so description is sufficient for safe and effective use.

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

Parameters5/5

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

All parameters have schema descriptions (100% coverage); description adds clarity for `q` (matched against case name and transcribed text), `page_size` (enforces minimum 20), and `argued_after/before` (filters by argument date), going beyond schema basics.

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?

Clearly states the tool searches appellate oral argument audio recordings, specifies key outputs (metadata, download URLs, panel judge IDs, transcript snippets), and distinguishes itself from sibling tools like courtlistener_search_opinions by focusing on audio content.

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

Usage Guidelines3/5

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

Provides guidance on using outputs (direct MP3 links, passing judge IDs to another tool) but does not explicitly contrast with sibling search tools or state when not to use this tool.

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

Discussions

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

Try in Browser

Your Connectors

Sign in to create a connector for this server.