itc_investigation_types
Pack: usitc-edis · Endpoint: https://gateway.pipeworx.io/usitc-edis/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/itc_investigation_types for the schema, then POST the same URL with its arguments for the data.
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_type filter.
Example call
Arguments
{}
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":"itc_investigation_types","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('itc_investigation_types', {});
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.