Navigation
MCP Server: Effortless BOAMP Queries & Custom Market Filters - MCP Implementation

MCP Server: Effortless BOAMP Queries & Custom Market Filters

MCP Server: Seamlessly query BOAMP API to find public procurement notices, filter markets by any criteria, and retrieve full details effortlessly. Boost your tender research today.

Research And Data
4.1(61 reviews)
91 saves
42 comments

Users create an average of 37 projects per month with this tool

About MCP Server

What is MCP Server: Effortless BOAMP Queries & Custom Market Filters?

MCP Server is a specialized tool built on the Model Context Protocol (MCP) designed to simplify access to public procurement data via the BOAMP API. It lets users search and retrieve detailed market announcements using advanced filtering options, cutting through the noise of raw data to deliver precise results tailored to specific needs.

How to use MCP Server: Effortless BOAMP Queries & Custom Market Filters?

Start by installing dependencies with npm install, then build the server using npm run build. For active development, run npm run watch to enable auto-rebuilds. Integrate with Claude Desktop by adding the server path to your config file, specifying the index.js entry point in your OS-specific location.

MCP Server Features

Key Features of MCP Server: Effortless BOAMP Queries & Custom Market Filters?

  • Granular Search Controls: Filter by keywords, department codes, market type (Services/Works/Supplies), and sort by publication date or response deadlines.
  • Deep Dive Capabilities: Use get_market_details to fetch exhaustive data for specific contracts via their idweb identifier.
  • Flexible Output: Export search results directly to CSV format for further analysis.
  • Real-Time Debugging: Leverage the MCP Inspector (GitHub repo) for browser-based diagnostics via npm run inspector.

Use cases of MCP Server: Effortless BOAMP Queries & Custom Market Filters?

MCP Server FAQ

FAQ from MCP Server Users

Q: How do I troubleshoot connection issues?
A: Use the MCP Inspector to inspect API calls and validate authentication credentials. Check BOAMP service status pages for outages.

Q: Can I automate daily searches?
A: Yes, integrate server endpoints with cron jobs or scheduler tools to run predefined queries at set intervals.

Q: What happens if search terms contain accented characters?
A: The API handles UTF-8 encoding natively, so special characters in keywords work seamlessly as long as input formatting matches BOAMP's standards.

Content

boamp-server MCP Server

Un serveur MCP (Model Context Protocol) pour interroger l'API BOAMP et récupérer les avis de marchés publics. Ce serveur permet de rechercher des marchés publics en utilisant divers critères et d'obtenir des détails complets sur des marchés spécifiques.

boamp

Outils

get_public_markets

Récupère les avis de marchés publics selon divers critères

Paramètres:

  • keywords * : Liste de mots-clés à rechercher
  • type : Type de marché (SERVICES, TRAVAUX, FOURNITURES)
  • limit : Nombre maximum de résultats à retourner
  • sort_by : Champ de tri (dateparution, datelimitereponse)
  • departments : Liste des départements (codes)

get_market_details

Récupère les détails complets d'un marché spécifique

Paramètres:

  • idweb * : Identifiant du marché

Exemples

  • Recherche les marchés publics contenant les mots-clés "communication" et "digital"
  • Recherche les marchés publics contenant les mots-clés "construction d'un hôpital", exporte les résultats dans un CSV
mcp

Development

Install dependencies:

npm install

Build the server:

npm run build

For development with auto-rebuild:

npm run watch

Installation

To use with Claude Desktop, add the server config:

On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json On Windows: %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "boamp-server": {
      "command": "/path/to/boamp-server/build/index.js"
    }
  }
}

Debugging

Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the MCP Inspector, which is available as a package script:

npm run inspector

The Inspector will provide a URL to access debugging tools in your browser.

Related MCP Servers & Clients