mhra_snapshot
Pack: mhra-uk · Endpoint: https://gateway.pipeworx.io/mhra-uk/mcp
How big the UK register currently is and how to walk all of it: total document count, the count per document type, the newest document date, and the paging recipe for a full enumeration. MHRA publishes no bulk download, so this returns the enumeration path rather than a file URL — and it returns those counts, never the documents themselves.
Example call
Arguments
{}
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_snapshot","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('mhra_snapshot', {});
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.