edis_document_detail
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_detail for the schema, then POST the same URL with its arguments for the data.
Full detail for ONE USITC EDIS document by id (from edis_document_list). KEYLESS. Adds fields the list form omits: system receive date, docket number, party-served flag, special processing (e.g. “Before the Commission”).
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_document_detail","arguments":{"document_id":"889265"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('edis_document_detail', {
"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.