mhra_recent_changes
Pack: mhra-uk · Endpoint: https://gateway.pipeworx.io/mhra-uk/mcp
MHRA documents added or revised since a date, newest first — the weekly-refresh feed. Pass an ISO date such as “2026-09-01”. Returns the same rows as mhra_search plus the cutoff that was applied, so replaying the same since gives the same answer. NOTE what the register can and cannot tell you: a new or revised DOCUMENT is what is recorded here. A withdrawal is not published as an event, so this cannot report withdrawals — treat it as “new and changed”, not “new, changed and withdrawn”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
since | string | yes | ISO date or datetime, e.g. “2026-09-01” or “2026-09-01T00:00:00Z”. |
doc_type | string | no | Restrict to “Spc”, “Pil” or “Par”. |
limit | number | no | Maximum documents to return, 1-200 (default 50). |
Example call
Arguments
{
"since": "2026-09-01"
}
curl
curl -X POST https://gateway.pipeworx.io/mhra-uk/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"mhra_recent_changes","arguments":{"since":"2026-09-01"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('mhra_recent_changes', {
"since": "2026-09-01"
});
More examples
{
"since": "2026-09-01",
"doc_type": "Spc",
"limit": 10
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"mhra-uk": {
"url": "https://gateway.pipeworx.io/mhra-uk/mcp"
}
}
}
See Getting Started for client-specific install steps.