france_get_notice

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

Fetch a single French public-procurement notice from BOAMP by its BOAMP web id (idweb, e.g. “26-64972” or “15-31501”). Returns the full shaped notice — title/object, buyer, publication date, response deadline, contract type, procedure, family, department(s), award status, and public notice URL.

Parameters

NameTypeRequiredDescription
idstringyesBOAMP notice id (idweb), e.g. “26-64972”.

Example call

Arguments

{
  "id": "26-64972"
}

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_get_notice","arguments":{"id":"26-64972"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('france_get_notice', {
  "id": "26-64972"
});

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