fda_device_classification
Pack: fda-devices · Endpoint: https://gateway.pipeworx.io/fda-devices/mcp
Look up FDA device classification and regulatory context by product code, device name, or regulation number. Classification describes the product-code category, not a specific product’s clearance or approval.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
product_code | string | no | |
device | string | no | |
regulation_number | string | no | |
limit | number | no | Rows (1-100, default 20). |
Example call
Arguments
{
"product_code": "DQY"
}
curl
curl -X POST https://gateway.pipeworx.io/fda-devices/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fda_device_classification","arguments":{"product_code":"DQY"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fda_device_classification', {
"product_code": "DQY"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"fda-devices": {
"url": "https://gateway.pipeworx.io/fda-devices/mcp"
}
}
}
See Getting Started for client-specific install steps.