find_a_tender_recent
Pack: uk-contracts · Endpoint: https://gateway.pipeworx.io/uk-contracts/mcp
Recent HIGH-VALUE UK government tenders and contract awards from the Find a Tender Service (find-tender.service.gov.uk) — the UK’s above-threshold procurement portal (the post-Brexit replacement for EU TED, for larger public contracts). Use for “high value UK tenders”, “above threshold UK government contracts”, “Find a Tender notices”, “large UK public sector contract opportunities”. Returns recent notices newest-first. An optional keyword is matched over title, description, award title and AWARDED SUPPLIER — client-side, because the FTS API has no text search (it rejects a keyword parameter outright, allowing only stages/limit/cursor/updatedFrom/updatedTo). ALWAYS READ window_complete: false means the walk stopped at the page cap with more feed left, so a zero means “absent from the notices examined”, not “not published” — narrow days until it is true. For a proper full-corpus keyword SEARCH of UK procurement, and for lower-value notices, use search_notices (Contracts Finder), which does have a real server-side index. Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
keyword | string | no | Optional keyword to filter recent notices by title/description, e.g. “cloud”, “construction”. Omit to list all recent. |
stage | string | no | Notice stage: “tender” (open opportunities, default), “award” (results), or “planning”. |
days | number | no | How many days back to scan, 1–30 (default 7). |
limit | number | no | Max notices to return, 1–100 (default 20). |
Example call
Arguments
{
"stage": "tender",
"days": 7,
"limit": 20
}
curl
curl -X POST https://gateway.pipeworx.io/uk-contracts/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"find_a_tender_recent","arguments":{"stage":"tender","days":7,"limit":20}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('find_a_tender_recent', {
"stage": "tender",
"days": 7,
"limit": 20
});
More examples
{
"keyword": "MRI",
"stage": "tender",
"days": 30
}
{
"keyword": "MRI",
"stage": "award",
"days": 3
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"uk-contracts": {
"url": "https://gateway.pipeworx.io/uk-contracts/mcp"
}
}
}
See Getting Started for client-specific install steps.