gtr_get_project
Pack: ukri-gtr · Endpoint: https://gateway.pipeworx.io/ukri-gtr/mcp
Full detail for one UKRI-funded project, looked up by its GtR GUID or by its human grant reference such as EP/T022159/1 or 10045762. Returns the award value in pounds, the lead organisation and its address, the principal investigators, the funding period, the abstract, technical abstract and potential-impact statement, and the research subjects and topics — this is how to answer how much a specific UK grant was worth and who received it.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
project | string | yes | GtR GUID (e.g. “6C2A6F8E-C726-4AE4-B539-8C54FD60F6BD”) or RCUK grant reference (e.g. “EP/T022159/1”, “10045762”). |
Example call
Arguments
{
"project": "EP/T022159/1"
}
curl
curl -X POST https://gateway.pipeworx.io/ukri-gtr/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"gtr_get_project","arguments":{"project":"EP/T022159/1"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gtr_get_project', {
"project": "EP/T022159/1"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"ukri-gtr": {
"url": "https://gateway.pipeworx.io/ukri-gtr/mcp"
}
}
}
See Getting Started for client-specific install steps.