moldova_search_tenders
Pack: moldova-tenders · Endpoint: https://gateway.pipeworx.io/moldova-tenders/mcp
Keyword search over recent Moldova (MTender) government procurement tenders. Scans the most recent tenders and returns those whose title, buyer, or CPV description contains the query (case-insensitive; Romanian text). Note: this is a client-side filter over recent tenders (MTender has no native full-text search), so it matches recent listings only. Returns shaped tenders like moldova_recent_tenders.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Keyword to match against title / buyer / CPV description (e.g. “medicamente”, “construc”, “computer”). |
limit | number,string | no | Max matches to return (1–50). Default 20. |
scan | number,string | no | How many recent tenders to scan for matches (50–500). Default 200. Higher = more thorough but slower. |
Example call
Arguments
{
"query": "medicamente",
"limit": 20,
"scan": 200
}
curl
curl -X POST https://gateway.pipeworx.io/moldova-tenders/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"moldova_search_tenders","arguments":{"query":"medicamente","limit":20,"scan":200}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('moldova_search_tenders', {
"query": "medicamente",
"limit": 20,
"scan": 200
});
More examples
{
"query": "construc",
"limit": 10
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"moldova-tenders": {
"url": "https://gateway.pipeworx.io/moldova-tenders/mcp"
}
}
}
See Getting Started for client-specific install steps.