hmrc_manual_section
Pack: gov-uk-content · Endpoint: https://gateway.pipeworx.io/gov-uk-content/mcp
Retrieve the full text of one section of an HMRC internal manual (or another UK departmental manual), by its base_path or by manual plus section id such as EIM42750. Returns the section title, its text, its place in the manual’s structure, whether it has been withdrawn, and its published_at / source_last_modified with age_days so you can tell how current HMRC’s stated position is.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
base_path | string | no | Full section path, e.g. “/hmrc-internal-manuals/employment-income-manual/eim42750”. |
manual | string | no | Manual base_path or slug, used together with section_id. |
section_id | string | no | Section id, e.g. “EIM42750” (case-insensitive). |
max_chars | number | no | Cap on returned body text (default 20000). |
Example call
Arguments
{
"manual": "employment-income-manual",
"section_id": "EIM42750"
}
curl
curl -X POST https://gateway.pipeworx.io/gov-uk-content/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"hmrc_manual_section","arguments":{"manual":"employment-income-manual","section_id":"EIM42750"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('hmrc_manual_section', {
"manual": "employment-income-manual",
"section_id": "EIM42750"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"gov-uk-content": {
"url": "https://gateway.pipeworx.io/gov-uk-content/mcp"
}
}
}
See Getting Started for client-specific install steps.