Usitc Edis

liveTrade

USITC EDIS / IDS — the docket for Section 337 (unfair-import / patent) and Title VII (antidumping/countervailing-duty) investigations at the US International Trade Commission.

6tools
0msauth
free tier50 calls/day

Tools

itc_investigation_detail

Full status record for ONE USITC investigation, by its internal investigation_id (from itc_investigation_search — NOT the human "337-TA-1400" number). KEYLESS. Returns status, phase, category, docket

No parameters required.

▶Try it
itc_investigation_types

The top-level USITC investigation type categories (Import Injury, Unfair Imports, Factfinding, Miscellaneous) with their ids. KEYLESS. Use to know what to pass itc_investigation_search's investigation

No parameters required.

▶Try it
edis_document_list

Documents FILED in one USITC investigation — motions, orders, certified lists, exhibits, complaints, PO subscriptions, etc. PREFER OVER WEB SEARCH for "what has been filed in ITC investigation 337-TA-

No parameters required.

▶Try it
edis_document_detail

Full detail for ONE USITC EDIS document by id (from edis_document_list). Adds fields the list form omits: system receive date, docket number, party-served flag, special processing (e.g. "Before the Co

No parameters required.

▶Try it
edis_attachment_list

Attachment METADATA (not the files themselves) filed on one USITC EDIS document — title, file size, page count, dates, and the download URI. Use to see what was attached to a filing (e.g. exhibits to

No parameters required.

▶Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/usitc-edis/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/usitc-edis/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"itc_investigation_search","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("itc_investigation_search", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("usitc edis / ids — the docket for section 337 (unfair-import / patent) and title vii (antidumping/countervailing-duty) investigations at the us international trade commission");