ema_article57_product

Pack: ema-article57 · Connect: https://pipeworx.io/mcp (see Connect below for a single-pack URL)

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/ema_article57_product for the schema, then POST the same URL with its arguments for the data.

The full Article 57 record(s) for one product by name — every EEA country it is authorised in,

Parameters

NameTypeRequiredDescription
namestringyesExact or near-exact product name, e.g. “Helixor A”, as it appears in the EMA export.
countrystringnoRestrict to one authorisation country.

Example call

Arguments

{
  "name": "Helixor A"
}

curl

curl -X POST https://gateway.pipeworx.io/ema-article57/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ema_article57_product","arguments":{"name":"Helixor A"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('ema_article57_product', {
  "name": "Helixor A"
});

Connect

Add this to your MCP client config — every tool in the catalog, including this one — or use one-click install buttons:

{
  "mcpServers": {
    "pipeworx": {
      "url": "https://pipeworx.io/mcp"
    }
  }
}
Connect to just the ema-article57 pack
{
  "mcpServers": {
    "ema-article57": {
      "url": "https://gateway.pipeworx.io/ema-article57/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 26, 2026