fda_application_history
Pack: openfda · Endpoint: https://gateway.pipeworx.io/openfda/mcp
Retrieve one Drugs@FDA NDA, ANDA, or BLA application and return its products and chronological submission-action history. Submission codes require regulatory interpretation and do not by themselves establish approval scope, exclusivity, or current marketing.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
application_number | string | yes | NDA, ANDA, or BLA followed by digits. |
Example call
Arguments
{
"application_number": "NDA209637"
}
curl
curl -X POST https://gateway.pipeworx.io/openfda/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fda_application_history","arguments":{"application_number":"NDA209637"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fda_application_history', {
"application_number": "NDA209637"
});
More examples
{
"application_number": "BLA 125057"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"openfda": {
"url": "https://gateway.pipeworx.io/openfda/mcp"
}
}
}
See Getting Started for client-specific install steps.