gtr_search_organisations
Pack: ukri-gtr · Endpoint: https://gateway.pipeworx.io/ukri-gtr/mcp
Find UK universities, research institutes and companies that have received UKRI research funding, by institution name. Returns the GtR organisation id, official name, postcode and region — use the id with gtr_organisation_projects to list everything that institution was funded for.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | Institution name or fragment, e.g. “imperial college”, “rolls-royce”. |
limit | number | no | Results to return, 1-100. Default 10. |
page | number | no | 1-based page. Default 1. |
Example call
Arguments
{
"name": "imperial college",
"limit": 10
}
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_search_organisations","arguments":{"name":"imperial college","limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gtr_search_organisations', {
"name": "imperial college",
"limit": 10
});
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.