chile_get_tender

Pack: chile-procurement · Endpoint: https://gateway.pipeworx.io/chile-procurement/mcp

Get the full detail of a single Chile government tender (licitación) from Mercado Público / ChileCompra by its código (CodigoExterno, e.g. “1002772-63-LP26”). Returns the tender name, description, status, buyer organisation/unit/region, estimated amount and currency, key dates (closing, publication, award), and the list of line items (product, category, quantity, unit). Get códigos from chile_search_tenders.

Parameters

NameTypeRequiredDescription
codigostringyesTender código / CodigoExterno, e.g. “1002772-63-LP26”.

Example call

Arguments

{
  "codigo": "1002772-63-LP26"
}

curl

curl -X POST https://gateway.pipeworx.io/chile-procurement/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"chile_get_tender","arguments":{"codigo":"1002772-63-LP26"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('chile_get_tender', {
  "codigo": "1002772-63-LP26"
});

Connect

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

{
  "mcpServers": {
    "chile-procurement": {
      "url": "https://gateway.pipeworx.io/chile-procurement/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026