fda_search
Pack: fda-regulations · Endpoint: https://gateway.pipeworx.io/fda-regulations/mcp
Keyword search across FDA regulations — US Food & Drug Administration rules in 21 CFR. Answers “what FDA regulations cover X”, “the FDA regulation / rule about X”, “find the FDA requirement for X”. Great for topics: good manufacturing practice (GMP / cGMP), quality system regulation, medical device labeling, drug labeling, nutrition facts / food labeling, new drug applications, dietary supplements, cosmetics, biologics, controlled substances, current good manufacturing practice for drugs and devices. Returns matching FDA regulations with citation (21 CFR), heading, excerpt, and source URL. This searches FDA REGULATIONS (regulatory text); for FDA DATA (drug labels, adverse events, recalls) use the openfda tools. Example: fda_search({ query: “medical device labeling” }); fda_search({ query: “good manufacturing practice”, limit: 15 }). Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | FDA-regulation topic or phrase, e.g. “medical device labeling”, “good manufacturing practice”, “nutrition labeling”, “quality system”, “new drug application”. |
limit | number | no | Max results to return, 1-20 (default 10). |
Example call
Arguments
{
"query": "good manufacturing practice"
}
curl
curl -X POST https://gateway.pipeworx.io/fda-regulations/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fda_search","arguments":{"query":"good manufacturing practice"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fda_search', {
"query": "good manufacturing practice"
});
More examples
{
"query": "medical device labeling",
"limit": 15
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"fda-regulations": {
"url": "https://gateway.pipeworx.io/fda-regulations/mcp"
}
}
}
See Getting Started for client-specific install steps.