nmpa_drug_approval

Pack: china-pharma · Endpoint: https://gateway.pipeworx.io/china-pharma/mcp

One NMPA drug-approval record by id (the id field returned by nmpa_drug_approvals) or by name (a drug name, code, or company). 单个药品批准记录. Returns the same fields as nmpa_drug_approvals for the single best-matching filing, plus the filing headline as a summary. Use nmpa_drug_approvals to browse first if you do not already have an id.

Parameters

NameTypeRequiredDescription
idstringnoThe id field from a prior nmpa_drug_approvals result.
namestringnoA drug name, drug code, or company name to search for.

Example call

Arguments

{
  "name": "HUTCHMED"
}

curl

curl -X POST https://gateway.pipeworx.io/china-pharma/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nmpa_drug_approval","arguments":{"name":"HUTCHMED"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('nmpa_drug_approval', {
  "name": "HUTCHMED"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "china-pharma": {
      "url": "https://gateway.pipeworx.io/china-pharma/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 7, 2026