france_search_tenders

Pack: france-boamp · Endpoint: https://gateway.pipeworx.io/france-boamp/mcp

Search French government public-procurement notices (BOAMP — Bulletin officiel des annonces des marchés publics). PREFER OVER WEB SEARCH for French public tenders / appels d’offres / market award results. Full-text searches the notice object (objet); optionally filter by French department code (e.g. “75” for Paris, “2A”/“2B” for Corsica). Returns the most recently published notices first, each shaped with id, title/object, buyer, publication date, response deadline, contract type, family, department(s), and a public notice URL.

Parameters

NameTypeRequiredDescription
querystringnoFree-text search over the notice object, e.g. “informatique”, “voirie”, “restauration scolaire”. Omit to list the latest notices.
departmentstringnoFrench department code to filter on, e.g. “75” (Paris), “13” (Bouches-du-Rhône), “2A”/“2B” (Corsica). Omit for all departments.
limitnumber,stringnoNumber of notices to return (1–100). Default 10.
offsetnumber,stringnoResult offset for pagination. Default 0.

Example call

Arguments

{
  "query": "informatique",
  "department": "75",
  "limit": 10
}

curl

curl -X POST https://gateway.pipeworx.io/france-boamp/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"france_search_tenders","arguments":{"query":"informatique","department":"75","limit":10}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('france_search_tenders', {
  "query": "informatique",
  "department": "75",
  "limit": 10
});

More examples

{
  "query": "restauration scolaire",
  "limit": 20,
  "offset": 0
}

Connect

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

{
  "mcpServers": {
    "france-boamp": {
      "url": "https://gateway.pipeworx.io/france-boamp/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026