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
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Optional 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_from | string | no | Start date (YYYY-MM-DD), inclusive. Maps to fecha_desde. Defaults to ~30 days ago if both dates omitted. |
date_to | string | no | End date (YYYY-MM-DD), inclusive. Maps to fecha_hasta. Defaults to today if both dates omitted. |
page | number,string | no | Page number (10 processes per page). Defaults to 1. |
Example call
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":{}}}'
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.