recent_notices

Pack: uk-contracts · Endpoint: https://gateway.pipeworx.io/uk-contracts/mcp

List the most recent UK procurement notices from Contracts Finder, newest-first, optionally filtered by stage (tender/award). Same compact shape as search_notices. Keyless.

Parameters

NameTypeRequiredDescription
stagestringnoNotice stage: “tender” or “award”. Default “tender”.
limitnumbernoNumber of recent notices to return, 1–100 (default 20).

Example call

Arguments

{
  "stage": "tender",
  "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":"recent_notices","arguments":{"stage":"tender","limit":20}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('recent_notices', {
  "stage": "tender",
  "limit": 20
});

More examples

{
  "stage": "award",
  "limit": 10
}

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.

Regenerated from source · build September 9, 2026