resources

Pack: datagouv-fr · Endpoint: https://gateway.pipeworx.io/datagouv-fr/mcp

List all downloadable resources (CSV, JSON, XLS, API, etc.) attached to a data.gouv.fr dataset, identified by id or slug; returns file URLs, formats, and last-update dates.

Parameters

NameTypeRequiredDescription
dataset_id_or_slugstringyes

Example call

Arguments

{
  "dataset_id_or_slug": "logements-sociaux"
}

curl

curl -X POST https://gateway.pipeworx.io/datagouv-fr/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"resources","arguments":{"dataset_id_or_slug":"logements-sociaux"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('resources', {
  "dataset_id_or_slug": "logements-sociaux"
});

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Resources (downloadable files) for a dataset"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "datagouv-fr": {
      "url": "https://gateway.pipeworx.io/datagouv-fr/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026