cases_by_term

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

List the SCOTUS cases for a given term year from Oyez — compact summaries (name, docket, citation, short question, oyez_url). Use to browse a full term. Keyless.

Parameters

NameTypeRequiredDescription
termnumberyesSCOTUS term year, e.g. 2022 or 2023.
limitnumbernoMax cases to return (default 20, max 40).

Example call

Arguments

{
  "term": 2023
}

curl

curl -X POST https://gateway.pipeworx.io/oyez/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"cases_by_term","arguments":{"term":2023}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('cases_by_term', {
  "term": 2023
});

More examples

{
  "term": 2022,
  "limit": 30
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 9, 2026