paraguay_search_tenders

Pack: paraguay-dncp · Endpoint: https://gateway.pipeworx.io/paraguay-dncp/mcp

Search Paraguay government procurement processes (tenders/contracts) from the official DNCP Open Contracting (OCDS) API. Results are date-scoped: the API requires a date range, so if you omit date_from/date_to it defaults to roughly the last 30 days. Returns a paginated list of processes with ocid, id, title, buyer (convocante), procurement method, and dates. Field values are in Spanish; monetary amounts are in PYG. Detailed value/status/items live in the full record — pass an id to paraguay_get_record. Note: the API has no free-text search parameter, so “query” is applied as a case-insensitive client-side filter over the current page of results.

Parameters

NameTypeRequiredDescription
querystringnoOptional keyword to filter the returned page by title/buyer (client-side, case-insensitive). The DNCP API has no server-side text search, so results are still bounded by the date range.
date_fromstringnoStart date (YYYY-MM-DD), inclusive. Maps to fecha_desde. Defaults to ~30 days ago if both dates omitted.
date_tostringnoEnd date (YYYY-MM-DD), inclusive. Maps to fecha_hasta. Defaults to today if both dates omitted.
pagenumber,stringnoPage number (10 processes per page). Defaults to 1.

Example call

Arguments

{
  "query": "construcción",
  "date_from": "2024-01-01",
  "date_to": "2024-01-31"
}

curl

curl -X POST https://gateway.pipeworx.io/paraguay-dncp/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"paraguay_search_tenders","arguments":{"query":"construcción","date_from":"2024-01-01","date_to":"2024-01-31"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('paraguay_search_tenders', {
  "query": "construcción",
  "date_from": "2024-01-01",
  "date_to": "2024-01-31"
});

More examples

{
  "date_from": "2024-12-01",
  "date_to": "2024-12-31",
  "page": 2
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "paraguay-dncp": {
      "url": "https://gateway.pipeworx.io/paraguay-dncp/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026