cima_medicine_detail
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_medicine_detail for the schema, then POST the same URL with its arguments for the data.
Full AEMPS CIMA record for one Spanish-authorised medicine, by nregistro (the Spanish national registration number, from cima_search_medicines). Returns active ingredients with exact strength, excipients, ATC codes, pharmaceutical form, routes of administration, prescription status, authorisation and last-revision dates, and PDF/HTML links to the ficha técnica and prospecto. For the actual document TEXT (not just the link) use cima_medicine_document_sections. Example: cima_medicine_detail({ nregistro: “77758” }). Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
nregistro | string | yes | Spanish national registration number, e.g. “77758” |
Example call
Arguments
{
"nregistro": "77758"
}
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_medicine_detail","arguments":{"nregistro":"77758"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('cima_medicine_detail', {
"nregistro": "77758"
});
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.