recent_updates

Pack: dailymed · Endpoint: https://gateway.pipeworx.io/dailymed/mcp

Return the most recently updated FDA Structured Product Labels from DailyMed (NLM), up to 100 results, ordered by update date descending. Useful for tracking newly revised drug labeling.

Parameters

NameTypeRequiredDescription
limitnumberno1-100 (default 25)

Example call

Arguments

{
  "limit": 10
}

curl

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":{"limit":10}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('recent_updates', {
  "limit": 10
});

Response shape

FieldTypeDescription
resultsarrayRecently updated labels
pageSizenumberNumber of results returned
totalResultsnumberTotal 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.

Regenerated from source · build July 6, 2026