ctis_recent_authorisations

Pack: eu-ctis · Endpoint: https://gateway.pipeworx.io/eu-ctis/mcp

Clinical trials most recently authorised in the EU/EEA, newest decision first, from the EU Clinical Trials Information System. Optionally narrowed to a member state, a medical condition, a sponsor or a phase. Answers “what did the EU authorise this month” and shows what sponsors are starting in Europe now.

Parameters

NameTypeRequiredDescription
sincestringnoOnly decisions on or after this date, YYYY-MM-DD
countryarraynoMember states concerned
itemsstringno
conditionstringnoMedical condition, e.g. “breast cancer”
sponsorstringnoSponsor organisation name
phasearraynoTrial phase, e.g. [“3”]
itemsstringno
limitnumbernoTrials to return, 1-100 (default 25)

Example call

Arguments

{
  "condition": "breast cancer",
  "limit": 3
}

curl

curl -X POST https://gateway.pipeworx.io/eu-ctis/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ctis_recent_authorisations","arguments":{"condition":"breast cancer","limit":3}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('ctis_recent_authorisations', {
  "condition": "breast cancer",
  "limit": 3
});

More examples

{
  "country": [
    "Spain"
  ],
  "since": "2026-08-01",
  "limit": 5
}

Connect

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

{
  "mcpServers": {
    "eu-ctis": {
      "url": "https://gateway.pipeworx.io/eu-ctis/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 25, 2026