nihr_awards_by_organisation
Pack: nihr · Endpoint: https://gateway.pipeworx.io/nihr/mcp
Total up UK NIHR health research funding held by a university, NHS trust or company. Give any part of the institution name and get back the number of NIHR awards, the summed award value in GBP, the distinct organisation-name variants that matched, a breakdown by programme, and the individual awards with their values and dates. Answers “how much NIHR money does Imperial College hold”, “how many NIHR awards has Guy’s and St Thomas won”, and institutional league-table comparisons.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
organisation | string | yes | Institution name or fragment, matched as a case-insensitive substring of contracted_organisation, e.g. “Imperial”, “University of Leeds”, “Manchester University NHS Foundation Trust”. |
project_status | string | no | Restrict to one status: Active, Complete, Contracted or Discontinued. |
min_amount | number | no | Only count and list awards worth at least this many GBP. |
start_from | string | no | Only awards starting on or after this date, YYYY-MM-DD — useful for “funding won since 2020”. |
limit | number | no | Max individual awards to list, 1-${MAX_LIMIT} (default 20). The totals always cover every match, not just the listed page. |
offset | number | no | Pagination offset for the listed awards (default 0). |
Example call
Arguments
{
"organisation": "Imperial College",
"limit": 10
}
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_awards_by_organisation","arguments":{"organisation":"Imperial College","limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nihr_awards_by_organisation', {
"organisation": "Imperial College",
"limit": 10
});
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.