.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/datagouv/datagouv-mcp
home/mcp-servers/datagouv/datagouv-mcp
datagouv avatar

datagouv-mcp

bydatagouv· 1 MCP server

Stars

1.6k

Forks

135

Category

Data Science & Analytics

View on GitHub

TL;DR

> [!TIP] > Got feedback? Tell us about it here

How to install datagouv-mcp?

datagouv/datagouv-mcp
$git clone https://github.com/datagouv/datagouv-mcp

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install datagouv-mcp by running `git clone https://github.com/datagouv/datagouv-mcp`, then use it for the current task and follow its documentation at https://github.com/datagouv/datagouv-mcp.

Files · 1

View on GitHub
README.md
1# data.gouv.fr MCP Server
2 
3<img width="1200" height="675" alt="image" src="https://github.com/user-attachments/assets/5d20e992-349a-4b3b-9a0a-ebe308735cc9" />
4 
5> [!TIP]
6> Got feedback? [Tell us about it here](https://tally.so/r/KYMboX)
7 
8[![CircleCI](https://circleci.com/gh/datagouv/datagouv-mcp.svg?style=svg)](https://circleci.com/gh/datagouv/datagouv-mcp)
9[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
10 
11Model Context Protocol (MCP) server that allows AI chatbots (Claude, ChatGPT, Gemini, etc.) to search, explore, and analyze datasets from [data.gouv.fr](https://www.data.gouv.fr), the French national Open Data platform, directly through conversation.
12 
13Instead of manually browsing the website, you can simply ask questions like "Quels jeux de données sont disponibles sur les prix de l'immobilier ?" or "Montre-moi les dernières données de population pour Paris" and get instant answers.
14 
15> [!TIP]
16> Use it now: A public instance is available for everyone at https://mcp.data.gouv.fr/mcp with no access restrictions.
17> To connect your favorite chatbot, simply follow [the connection instructions below](#-connect-your-chatbot-to-the-mcp-server).
18 
19## 🌐 Connect your chatbot to the MCP server
20 
21Use the hosted endpoint `https://mcp.data.gouv.fr/mcp` (recommended). If you self-host, swap in your own URL.
22 
23The MCP server configuration depends on your client. Use the appropriate configuration format for your client:
24 
25[AnythingLLM](#anythingllm) | [Autohand Code](#autohand-code) | [ChatGPT](#chatgpt) | [Claude Code](#claude-code) | [Claude Desktop](#claude-desktop) | [Cursor](#cursor) | [Gemini CLI](#gemini-cli) | [HuggingChat](#huggingchat) | [IBM Bob](#ibm-bob) | [Kiro CLI](#kiro-cli) | [Kiro IDE](#kiro-ide) | [Le Chat (Mistral)](#le-chat-mistral) | [Mistral Vibe](#mistral-vibe-cli) | [OpenCode](#opencode) | [VS Code](#vs-code) | [Windsurf](#windsurf)
26 
27### AnythingLLM
28 
291. Locate the `anythingllm_mcp_servers.json` file in your AnythingLLM storage plugins directory:
30 - **Linux**: `~/.config/anythingllm-desktop/storage/plugins/anythingllm_mcp_servers.json`
31 - **MacOS**: `~/Library/Application Support/anythingllm-desktop/storage/plugins/anythingllm_mcp_servers.json`
32 - **Windows**: `C:\Users\<username>\AppData\Roaming\anythingllm-desktop\storage\plugins\anythingllm_mcp_servers.json`
33 
342. Add the following configuration:
35 
36```json
37{
38 "mcpServers": {
39 "datagouv": {
40 "type": "streamable",
41 "url": "https://mcp.data.gouv.fr/mcp"
42 }
43 }
44}
45```
46 
47For more details, see the [AnythingLLM MCP documentation](https://docs.anythingllm.com/mcp-compatibility/overview).
48 
49### Autohand Code
50 
51Use the [Autohand Code](https://github.com/autohandai/code-cli/) CLI to register the hosted endpoint:
52 
53```shell
54autohand mcp add --transport http datagouv https://mcp.data.gouv.fr/mcp
55```
56 
57Add `--scope project` to keep the registration in the current workspace.
58 
59### ChatGPT
60 
61*Available for paid plans only (Plus, Pro, Team, and Enterprise).*
62 
631. **Access Settings**: Open ChatGPT in your browser, go to `Settings`, then `Apps and connectors`.
642. **Enable Dev Mode**: Open `Advanced settings` and enable **Developer mode**.
653. **Add Connector**: Return to `Settings` > `Connectors` > `Browse connectors` and click **Add a new connector**.
664. **Configure the connector**: Set the URL to `https://mcp.data.gouv.fr/mcp` and save to activate the tools.
67 
68### Claude Code
69 
70Use the `claude mcp` command to add the MCP server:
71 
72```shell
73claude mcp add --transport http datagouv https://mcp.data.gouv.fr/mcp
74```
75 
76### Claude Desktop
77 
78Add the following to your Claude Desktop configuration file (typically `~/.config/Claude/claude_desktop_config.json` on Linux, `~/Library/Application Support/Claude/claude_desktop_config.json` on MacOS, or `%APPDATA%\Claude\claude_desktop_config.json` on Windows):
79 
80```json
81{
82 "mcpServers": {
83 "datagouv": {
84 "command": "npx",
85 "args": [
86 "mcp-remote",
87 "https://mcp.da

Preview

datagouv/datagouv-mcpdatagouv/datagouv-mcp

# data.gouv.fr MCP Server

> [!TIP]

> Got feedback? [Tell us about it here](https://tally.so/r/KYMboX)

Repodatagouv/datagouv-mcp
TypeMCP Servers
CategoryData Science & Analytics
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPmcpmcp-server

Related

6 picks
Type
  1. dbt-labs avatardbt-mcpA MCP (Model Context Protocol) server for interacting with dbt resources.MCP ServersJul 2026105k595
  2. antvis avatarmcp-server-chartA Model Context Protocol server for generating charts using AntV.MCP ServersMay 202693k4.3k
  3. datalayer avatarjupyter-mcp-server🪐 🔧 Model Context Protocol (MCP) Server for Jupyter.MCP ServersJul 202681k1.2k
  4. tableau avatartableau-mcpHelping agents see and understand data.MCP ServersJul 202646k314
  5. oxylabs avataroxylabs-mcpFetch and process content from specified URLs & sources using the Oxylabs Web Scraper API.MCP ServersJun 202639k101
  6. apconw avataraix-dbAix-DB 基于 LangChain/LangGraph 框架,结合 MCP Skills 多智能体协作架构,实现自然语言到数据洞察的端到端转换。MCP ServersJun 202638k2.2k