cima_changes_since

Pack: aemps-cima · Endpoint: https://gateway.pipeworx.io/aemps-cima/mcp

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

Which Spanish medicine records AEMPS has changed on or after a given date — new authorisations, label revisions, material-informativo updates, etc. — from CIMA’s registroCambios feed. Returns nregistro, name, holder, the change date, and AEMPS’s change-category tags. Useful for “what changed in the Spanish medicines register this month” or watching one drug for label updates. Example: cima_changes_since({ since: “2026-08-27” }). Keyless.

Parameters

NameTypeRequiredDescription
sincestringyesISO date, e.g. “2026-08-27” — returns changes on or after this date.
limitnumbernoMax rows to return (default 50, max 200)

Example call

Arguments

{
  "since": "2026-08-27",
  "limit": 3
}

curl

curl -X POST https://gateway.pipeworx.io/aemps-cima/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"cima_changes_since","arguments":{"since":"2026-08-27","limit":3}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('cima_changes_since', {
  "since": "2026-08-27",
  "limit": 3
});

Connect

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

{
  "mcpServers": {
    "aemps-cima": {
      "url": "https://gateway.pipeworx.io/aemps-cima/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 23, 2026