list_metrics

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

Shortcut to list all available metric names for a fully-specified location — supply all five levels (theme, sub_theme, topic, geography_type, geography) at once rather than calling navigate iteratively. Returns metric names like “COVID-19_cases_casesByDay” ready to pass to get_metric_data.

Parameters

NameTypeRequiredDescription
themestringyese.g. “infectious_disease”.
sub_themestringyese.g. “respiratory”.
topicstringyese.g. “COVID-19”.
geography_typestringyese.g. “Nation”.
geographystringyese.g. “England”.

Example call

Arguments

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

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":"list_metrics","arguments":{"theme":"infectious_disease","sub_theme":"respiratory","topic":"COVID-19","geography_type":"Nation","geography":"England"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('list_metrics', {
  "theme": "infectious_disease",
  "sub_theme": "respiratory",
  "topic": "COVID-19",
  "geography_type": "Nation",
  "geography": "England"
});

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