Skip to content
Back to search
100
MCP live MCP 2025-11-25

datagouv-mcp

datagouv/datagouv-mcp

Official data.gouv.fr Model Context Protocol (MCP) server that allows AI chatbots to search, explore, and analyze datasets from the French national Open Data platform, directly through conversation.

Uptime
100.0%
1 direct probes · 30d
Response
197ms
last probe
Tools
10
callable
Resources
0
readable
Prompts
0
available

Tools · 10

search_datasets

Search for datasets on data.gouv.fr by keywords. This is typically the first step in exploring data.gouv.fr. Use short, specific queries (the API uses AND logic, so generic words like "données" or "…

search_organizations

Find publishing organizations on data.gouv.fr (who publishes datasets and reuses). Pass a short `query` with distinctive words (acronym, ministry name, city, "INSEE", etc.). Generic or very broad te…

search_dataservices

Search for third-party APIs (dataservices) on data.gouv.fr by keywords. Third-party APIs (or dataservices) are APIs registered in the data.gouv.fr catalog that provide programmatic access to data (u…

get_dataservice_info

Get detailed metadata about a specific third-party API (dataservice). Returns title, description, organization, base_api_url, machine_documentation_url (OpenAPI/Swagger spec), license, and dates. T…

get_dataservice_openapi_spec

Fetch and summarize the OpenAPI/Swagger spec for a third-party API (dataservice). Retrieves machine_documentation_url from catalog metadata (dataservice record), fetches the spec, and returns a summ…

query_resource_data

Query tabular data from a resource via the Tabular API (no download needed). Works for CSV/XLSX files. Start with small page_size (20) to preview structure. Use filter_column/filter_value/filter_ope…

get_dataset_info

Get detailed metadata about a specific dataset. Returns title, description, organization, tags, resource count, creation/update dates, and license information.

list_dataset_resources

List all resources (files) in a dataset with their metadata. Returns resource ID, title, format, size, and URL for each file. Next step: use query_resource_data for CSV/XLSX files via the Tabular AP…

get_resource_info

Get detailed information about a specific resource (file). Returns format, size, MIME type, URL, and checks Tabular API availability. Helps decide whether to use query_resource_data (if Tabular API …

get_metrics

Get usage metrics (visits, downloads) for a dataset or resource. Returns monthly statistics sorted by most recent first. At least one of dataset_id or resource_id must be provided. Note: Only availa…

How to use

Add to your Claude Desktop / Cursor / Cline MCP config:

{
  "mcpServers": {
    "datagouv-mcp": {
      "url": "https://mcp.data.gouv.fr/mcp",
      "transport": "http"
    }
  }
}