list_labels_for_drug_name

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

All labels mentioning a drug name.

Parameters

NameTypeRequiredDescription
drug_namestringyes
pagenumberno
pagesizenumberno

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":"list_labels_for_drug_name","arguments":{}}}'

Response shape

FieldTypeDescription
resultsarrayArray of matching labels
pageNumbernumberCurrent page number
pageSizenumberPage size
totalPagesnumberTotal number of pages
totalResultsnumberTotal number of results
Full JSON Schema
{
  "type": "object",
  "description": "Labels mentioning a drug name",
  "properties": {
    "results": {
      "type": "array",
      "description": "Array of matching 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"
          }
        }
      }
    },
    "pageNumber": {
      "type": "number",
      "description": "Current page number"
    },
    "pageSize": {
      "type": "number",
      "description": "Page size"
    },
    "totalPages": {
      "type": "number",
      "description": "Total number of pages"
    },
    "totalResults": {
      "type": "number",
      "description": "Total number of 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 May 21, 2026