Connects Claude to France's official business registry via recherche-entreprises.api.gouv.fr. You get two tools: fetch a complete legal unit and all its establishments by SIREN number, or search for businesses near a specific lat/long coordinate. Useful when you need to look up French company details, validate SIRENs, or answer questions like "what restaurants are near this address in Paris." Hosted by Pipeworx as a standalone server or part of their 673+ data source gateway. Ships with an ask_pipeworx wrapper so you can query in plain English instead of calling tools directly.
French Companies MCP — recherche-entreprises.api.gouv.fr
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
get_enterprise | Fetch a single legal unit with all its establishments by SIREN (9 digits). |
nearby | List establishments within a radius of a geo coordinate. Useful for "all businesses near …". |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"entreprises-fr": {
"url": "https://gateway.pipeworx.io/entreprises-fr/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Entreprises Fr data" })
The gateway picks the right tool and fills the arguments automatically.
MIT