gtr_search_publications

Pack: ukri-gtr · Endpoint: https://gateway.pipeworx.io/ukri-gtr/mcp

Search journal articles, books and conference papers that UKRI grant holders reported as outcomes of their funded work. Returns title, authors, journal, publication date, DOI, PubMed id, ISSN and the GtR id of the project that produced it — the way to trace UK public research funding through to what it published.

Parameters

NameTypeRequiredDescription
querystringyesFree text over publication titles and abstracts, e.g. “graphene battery”.
search_fieldstringnoWhich field the query text is matched against. Default “all”.
limitnumbernoResults to return, 1-100. Default 10.
pagenumberno1-based page. Default 1.

Example call

Arguments

{
  "query": "graphene battery",
  "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_publications","arguments":{"query":"graphene battery","limit":10}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('gtr_search_publications', {
  "query": "graphene battery",
  "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.

Regenerated from source · build July 30, 2026