paraguay_get_record

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

Get the full Paraguay procurement record for a process from the official DNCP Open Contracting (OCDS) API. Pass the numeric process id (e.g. 291566) or the ocid (e.g. “ocds-03ad3f-291566-1”). Returns the compiled OCDS release: ocid, title, buyer, contract value + currency (PYG), status, procurement method, key dates, tender items, and awards (suppliers + award amounts). Field values are in Spanish; keys are English.

Parameters

NameTypeRequiredDescription
idstring,numberyesProcess id (e.g. 291566) or full ocid (e.g. “ocds-03ad3f-291566-1”).

Example call

Arguments

{
  "id": "291566"
}

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_get_record","arguments":{"id":"291566"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('paraguay_get_record', {
  "id": "291566"
});

More examples

{
  "id": "ocds-03ad3f-291566-1"
}

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