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
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
investigation_number | string | yes | e.g. “337-TA-1400” or “337-1400” |
investigation_phase | string | no | e.g. “Violation”. Omit to match all phases. |
document_type | string | no | Filter by document type, e.g. “Motion”, “Order”, “Complaint”. |
page_number | number | no | Page 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.