drio
Open app

Data Gouv MCP Server

Source

MCP server for interacting with Data.gouv.fr API

Catalog onlyCatalog onlySTDIO

Overview

Data Gouv MCP Server is a server designed for interacting with the Data.gouv.fr API, specifically for accessing various data services related to companies in France.

To use the Data Gouv MCP Server, install the required dependencies, run the server, and configure your MCP client to connect to it.

  • Provides a search-company tool to find up-to-date information about companies in France. - Utilizes HTTP+SSE transport for real-time data interaction. - Easy installation and setup instructions.
  1. Searching for company information such as name, address, and directors.
  2. Integrating with other applications that require access to French company data.
  3. Debugging and inspecting MCP server interactions using the MCP Inspector.

Add to your AI client

Use these steps to connect Data Gouv MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "datagouv-mcp-server-csonigo": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-datagouv-mcp-server-csonigo"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "datagouv-mcp-server-csonigo": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-datagouv-mcp-server-csonigo"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "datagouv-mcp-server-csonigo": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-datagouv-mcp-server-csonigo"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "datagouv-mcp-server-csonigo": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-datagouv-mcp-server-csonigo"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "datagouv-mcp-server-csonigo": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-datagouv-mcp-server-csonigo"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "datagouv-mcp-server-csonigo": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-datagouv-mcp-server-csonigo"
      ]
    }
  }
}

FAQ

What are the requirements to run the server?

You need Node 22 and pnpm 10 to run the Data Gouv MCP Server.

How do I install the server?

You can install it by running `pnpm install` after cloning the repository.

Can I debug the server?

Yes, you can use the MCP Inspector to debug the server.