edis_attachment_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_attachment_list for the schema, then POST the same URL with its arguments for the data.
Attachment METADATA (not the files themselves) filed on one USITC EDIS document — title, file size, page count, dates, and the download URI. KEYLESS. Use to see what was attached to a filing (e.g. exhibits to a motion) before deciding whether it is worth fetching.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
document_id | string | yes | A document id, e.g. “889265” (from edis_document_list). |
Example call
Arguments
{
"document_id": "889265"
}
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_attachment_list","arguments":{"document_id":"889265"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('edis_attachment_list', {
"document_id": "889265"
});
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.