navigate

Pack: ukhsa · Endpoint: https://gateway.pipeworx.io/ukhsa/mcp

Walk the UKHSA surveillance hierarchy one level at a time to discover valid values.

Parameters

NameTypeRequiredDescription
themestringnoe.g. “infectious_disease”.
sub_themestringnoe.g. “respiratory”. Requires theme.
topicstringnoe.g. “COVID-19”, “Influenza”. Requires theme + sub_theme.
geography_typestringnoe.g. “Nation”, “NHS Region”. Requires the levels above. May contain spaces.
geographystringnoe.g. “England”. Requires the levels above.

Example call

Arguments

{}

curl

curl -X POST https://gateway.pipeworx.io/ukhsa/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"navigate","arguments":{}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('navigate', {});

More examples

{
  "theme": "infectious_disease"
}
{
  "theme": "infectious_disease",
  "sub_theme": "respiratory"
}
{
  "theme": "infectious_disease",
  "sub_theme": "respiratory",
  "topic": "COVID-19"
}
{
  "theme": "infectious_disease",
  "sub_theme": "respiratory",
  "topic": "COVID-19",
  "geography_type": "Nation"
}

Connect

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

{
  "mcpServers": {
    "ukhsa": {
      "url": "https://gateway.pipeworx.io/ukhsa/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 31, 2026