idb_get_notice
Pack: idb · Endpoint: https://gateway.pipeworx.io/idb/mcp
Fetch one IDB procurement notice by its notice id (from idb_search_notices results). Returns the full record: project, loan number, sector, procurement method, publication date, deadline, and the document URL on idbdocs.iadb.org. If the id has multiple entries (amendments/re-publications), all are returned newest-first.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
notice_id | string | yes | IDB notice id, e.g. “38846” — find ids via idb_search_notices. |
Example call
Arguments
{
"notice_id": "38820"
}
curl
curl -X POST https://gateway.pipeworx.io/idb/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"idb_get_notice","arguments":{"notice_id":"38820"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('idb_get_notice', {
"notice_id": "38820"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"idb": {
"url": "https://gateway.pipeworx.io/idb/mcp"
}
}
}
See Getting Started for client-specific install steps.