recent_updates
Pack: dailymed · Endpoint: https://gateway.pipeworx.io/dailymed/mcp
Recently updated labels.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | number | no | 1-100 (default 25) |
Example call
curl -X POST https://gateway.pipeworx.io/dailymed/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"recent_updates","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
results | array | Recently updated labels |
pageSize | number | Number of results returned |
totalResults | number | Total available results |
Full JSON Schema
{
"type": "object",
"description": "Recently updated Structured Product Labels",
"properties": {
"results": {
"type": "array",
"description": "Recently updated labels",
"items": {
"type": "object",
"properties": {
"setId": {
"type": "string",
"description": "DailyMed unique identifier"
},
"name": {
"type": "string",
"description": "Drug name"
},
"applicationNumber": {
"type": "string",
"description": "NDA/ANDA number"
},
"ndc": {
"type": "string",
"description": "NDC code"
},
"manufacturer": {
"type": "string",
"description": "Manufacturer name"
},
"lastUpdate": {
"type": "string",
"description": "ISO date of last update"
}
}
}
},
"pageSize": {
"type": "number",
"description": "Number of results returned"
},
"totalResults": {
"type": "number",
"description": "Total available results"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dailymed": {
"url": "https://gateway.pipeworx.io/dailymed/mcp"
}
}
}
See Getting Started for client-specific install steps.