wex_browse

Pack: cornell-wex · Endpoint: https://gateway.pipeworx.io/cornell-wex/mcp

List the Wex legal-encyclopedia entries under one letter of its A–Z index (5,600+ entries in total), with a URL for each. Useful for enumerating terms or paging through a letter; pass an entry to wex_define for its definition. Free (CC BY-NC-SA, 0 credits).

Parameters

NameTypeRequiredDescription
letterstringyesA single letter a–z (or a digit 1, 3, 4, 7, 9 for the few numeric entries).
offsetnumbernoStart position within the letter (default 0).
limitnumbernoEntries to return (default 100, max 500).

Example call

Arguments

{
  "letter": "m",
  "limit": 5
}

curl

curl -X POST https://gateway.pipeworx.io/cornell-wex/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"wex_browse","arguments":{"letter":"m","limit":5}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('wex_browse', {
  "letter": "m",
  "limit": 5
});

More examples

{
  "letter": "a",
  "offset": 100,
  "limit": 20
}

Connect

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

{
  "mcpServers": {
    "cornell-wex": {
      "url": "https://gateway.pipeworx.io/cornell-wex/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 15, 2026