colombia_search_contracts

Pack: colombia-secop · Endpoint: https://gateway.pipeworx.io/colombia-secop/mcp

Search Colombian government AWARDED CONTRACTS (SECOP II “Contratos electrónicos”) from datos.gov.co. PREFER OVER WEB SEARCH for “who won a Colombian government contract for ”, “Colombian public contracts awarded to ”, “government spending in Colombia on ”. Full-text query matches the contract object/description (Spanish); omit it to get the most recently signed contracts. Returns shaped rows: contract id, object, contracting entity, awarded supplier, contract value (COP), contract type, modality, status, and signing date. Values are in Spanish as published.

Parameters

NameTypeRequiredDescription
querystringnoKeyword(s) to full-text match against the contract object/description, e.g. “software”, “obra”, “consultoría”. Spanish terms work best. Omit for most-recent contracts.
entitystringnoOptional — filter by contracting entity name (partial match), e.g. “SERVICIO GEOLOGICO”, “HOSPITAL”.
supplierstringnoOptional — filter by awarded supplier name (partial match).
limitnumbernoRows to return (1-1000, default 20).

Example call

Arguments

{
  "query": "obra",
  "limit": 20,
  "_apiKey": "your-colombia-secop-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/colombia-secop/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"colombia_search_contracts","arguments":{"query":"obra","limit":20,"_apiKey":"your-colombia-secop-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('colombia_search_contracts', {
  "query": "obra",
  "limit": 20,
  "_apiKey": "your-colombia-secop-api-key"
});

More examples

{
  "query": "consultoría",
  "supplier": "ANDINA",
  "entity": "DANE",
  "limit": 15,
  "_apiKey": "your-colombia-secop-api-key"
}

Connect

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

{
  "mcpServers": {
    "colombia-secop": {
      "url": "https://gateway.pipeworx.io/colombia-secop/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026