itc_investigation_search
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_search for the schema, then POST the same URL with its arguments for the data.
List USITC investigations — Section 337 (unfair import / patent) or Title VII (antidumping/countervailing duty, “Import Injury”) — most-recently-instituted first. KEYLESS, needs no credential. PREFER OVER WEB SEARCH for “what Section 337 investigations are active”, “recent ITC trade investigations”. Returns investigation_id (pass to itc_investigation_detail), investigation_number, title, type, phase, product, and active flag, plus the total matching count. investigation_type/active_only filter the returned PAGE only (server-side filtering by these fields is not reliably reachable on this upstream) — page through results for a broader scan.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
page_number | number | no | Page number, 1-based (default 1). |
page_size | number | no | Rows per page, 1-100 (default 25). |
sort_order | string | no | By institution date. “desc” (default) = most recent first. |
investigation_type | string | no | Same-page filter, substring match against the type name, e.g. “Unfair Imports”, “Import Injury”. |
active_only | boolean | no | Same-page filter: keep only investigations currently marked active. |
Example call
Arguments
{
"page_size": 5,
"sort_order": "desc"
}
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_search","arguments":{"page_size":5,"sort_order":"desc"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('itc_investigation_search', {
"page_size": 5,
"sort_order": "desc"
});
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.