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
dataarray
metadataobject
Full JSON Schema
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "spl_version": {
            "type": "number"
          },
          "published_date": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "setid": {
            "type": "string"
          }
        }
      }
    },
    "metadata": {
      "type": "object",
      "properties": {
        "db_published_date": {
          "type": "string"
        },
        "elements_per_page": {
          "type": "number"
        },
        "current_url": {
          "type": "string"
        },
        "next_page_url": {
          "type": "string"
        },
        "total_elements": {
          "type": "number"
        },
        "total_pages": {
          "type": "number"
        },
        "current_page": {
          "type": "number"
        },
        "previous_page": {
          "type": "string"
        },
        "previous_page_url": {
          "type": "string"
        },
        "next_page": {
          "type": "number"
        }
      }
    }
  },
  "description": "Recently updated Structured Product Labels"
}

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 September 16, 2026