edis_document_list

Pack: usitc-edis · Endpoint: https://gateway.pipeworx.io/usitc-edis/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/edis_document_list for the schema, then POST the same URL with its arguments for the data.

Documents FILED in one USITC investigation — motions, orders, certified lists, exhibits, complaints, PO subscriptions, etc. KEYLESS. PREFER OVER WEB SEARCH for “what has been filed in ITC investigation 337-TA-XXXX”, “recent filings in ”. Returns document id, type, title, filer, firm/organization, dates, and the attachment-list URI for each. Pass edis_document_detail the document_id for full detail; edis_attachment_list the document_id for its files.

Parameters

NameTypeRequiredDescription
investigation_numberstringyese.g. “337-TA-1400” or “337-1400”
investigation_phasestringnoe.g. “Violation”. Omit to match all phases.
document_typestringnoFilter by document type, e.g. “Motion”, “Order”, “Complaint”.
page_numbernumbernoPage number, 1-based (default 1).

Example call

Arguments

{
  "investigation_number": "337-1400"
}

curl

curl -X POST https://gateway.pipeworx.io/usitc-edis/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"edis_document_list","arguments":{"investigation_number":"337-1400"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('edis_document_list', {
  "investigation_number": "337-1400"
});

Connect

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

{
  "mcpServers": {
    "usitc-edis": {
      "url": "https://gateway.pipeworx.io/usitc-edis/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 25, 2026