nihr_get_award

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

Retrieve one UK NIHR award in full by its project id (either the modern form NIHR208893 or the older slash form 002/0028). Returns the plain-English abstract and the scientific abstract, award value in GBP, programme, funding stream and status, start and end dates, the contracted organisation with postcode and latitude/longitude, HRCS and UKCRC health-category coding, the fundingawards.nihr.ac.uk record link, and every named award holder with their ORCID and role. Use when an agent has an NIHR project reference and needs the detail behind it.

Parameters

NameTypeRequiredDescription
project_idstringyesNIHR project id exactly as published, e.g. “NIHR208893”, “002/0028” or “DRF-2009-02-122”. Slashes are handled.

Example call

Arguments

{
  "project_id": "NIHR205461"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('nihr_get_award', {
  "project_id": "NIHR205461"
});

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 30, 2026