Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server to navigate and consume public data from Benin's OpenData portal.

README.md

Benin OpenData MCP

Server MCP (Model Context Protocol) pour naviguer et consommer les données publiques du Bénin.

Installation

pip install -e ".[test]"

Authentification

Ce serveur MCP interagit avec le portail OpenData du Bénin. L'authentification dépend du type d'opération :

| Opération | Clé API requise | Description | |-----------|-----------------|-------------| | Lecture (search, preview, download) | ❌ Optionnelle | Les données publiques sont accessibles sans authentification | | Écriture (bulk upload) | ✅ Obligatoire | Nécessite une clé API avec permissions d'écriture |

Obtenir une clé API

Pour les opérations d'écriture (bulk upload), contactez l'administration du portail OpenData du Bénin pour obtenir une clé API.

Configuration de la clé API

Si vous avez une clé API, configurez-la via la variable d'environnement :

export BENIN_OPEN_DATA_API_KEY="votre_cle_api_ici"

Usage

Lancer le serveur en local :

# Sans clé API (lecture seule)
fastmcp run src/opendata_bj/server.py

# Avec clé API (lecture + écriture)
BENIN_OPEN_DATA_API_KEY="votre_cle" fastmcp run src/opendata_bj/server.py

Usage avec Docker

Vous pouvez également exécuter ce serveur MCP via Docker.

  1. Construire l'image Docker :
docker build -t opendata-bj-mcp .
  1. Lancer le conteneur (lecture seule) :
docker run -i --rm opendata-bj-mcp
  1. Lancer le conteneur (avec clé API pour les opérations d'écriture) :
docker run -i --rm \
  -e BENIN_OPEN_DATA_API_KEY="votre_cle_api_ici" \
  opendata-bj-mcp

(L'option -i est utilisée car le serveur MCP communique via stdio)

Configuration dans un client MCP

Une fois l'application fonctionnelle, vous pouvez l'intégrer à un client compatible MCP (comme Claude Desktop, Cursor, OpenClaw, etc.) en renseignant la configuration suivante :

Exemple pour Claude Desktop (claude_desktop_config.json) ou Cursor :

Option 1 : En utilisant Python localement (lecture seule) ``json { "mcpServers": { "opendata-bj": { "command": "fastmcp", "args": ["run", "/chemin/absolu/vers/opendata-bj-mcp/src/opendata_bj/server.py"] } } } ``

Option 2 : En utilisant Python localement (avec clé API) ``json { "mcpServers": { "opendata-bj": { "command": "fastmcp", "args": ["run", "/chemin/absolu/vers/opendata-bj-mcp/src/opendata_bj/server.py"], "env": { "BENIN_OPEN_DATA_API_KEY": "votre_cle_api_ici" } } } } ``

Option 3 : En utilisant Docker (lecture seule) ``json { "mcpServers": { "opendata-bj": { "command": "docker", "args": [ "run", "-i", "--rm", "opendata-bj-mcp" ] } } } ``

Option 4 : En utilisant Docker (avec clé API) ``json { "mcpServers": { "opendata-bj": { "command": "docker", "args": [ "run", "-i", "--rm", "-e", "BENIN_OPEN_DATA_API_KEY=votre_cle_api_ici", "opendata-bj-mcp" ] } } } ``

(Assurez-vous que fastmcp est bien accessible globalement ou précisez le chemin absolu vers votre environnement virtuel)

Architecture

Inspirée du projet Collegue, cette architecture privilégie la modularité et la validation stricte des données via Pydantic v2.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Other servers.