china_licensing_deals
Pack: china-pharma · Endpoint: https://gateway.pipeworx.io/china-pharma/mcp
Biotech and pharmaceutical licensing deals involving China — a Chinese company out-licensing a drug to a Western partner, or a Western company licensing rights INTO Greater China. Returns the two companies, the drug or asset, the territory, the upfront payment, milestone totals and royalty terms, with the SEC filing they were announced in and its date. Answers “which Chinese biotechs signed out-licensing deals”, “recent China pharma licensing deals”, “who licensed rights in Greater China”. Sourced from SEC 8-K announcements, so it covers any deal with a US-listed party. Filter by company, drug name or date window.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Optional extra term to narrow the search — a company (“Hengrui”), a drug (“VIZZ”), a modality (“ADC”, “bispecific”) or a therapy area (“oncology”). Combined with the deal and China terms, not replacing them. |
since | string | no | Earliest filing date (YYYY-MM-DD). Defaults to 90 days ago. |
until | string | no | Latest filing date (YYYY-MM-DD). Defaults to today. |
limit | number | no | Maximum deals to return, 1-40 (default 10). |
Example call
Arguments
{
"since": "2026-06-01",
"limit": 10
}
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":"china_licensing_deals","arguments":{"since":"2026-06-01","limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('china_licensing_deals', {
"since": "2026-06-01",
"limit": 10
});
More examples
{
"query": "oncology",
"since": "2026-05-01"
}
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.