DEV Community

Cover image for Monaco’s RCI registry: what you actually get from the data
OpenRegistry
OpenRegistry

Posted on

Monaco’s RCI registry: what you actually get from the data

Monaco lists roughly 14,000 active entities in the Registre du Commerce et de l’Industrie (RCI). The register is small. That scale changes how you read it during diligence. Larger European registries carry dense corporate histories; Monaco does not. The dataset stays thin, yet updates often surface quickly because the RCI itself is the primary record.

I ran into this during a small‑cap hospitality acquisition. The target group held a Monaco distribution subsidiary. Our diligence folder included an export from an aggregator that still listed the previous gérant. The RCI entry had already switched to the new one. The filing was only a few weeks old. Once paperwork reaches the registry, the change usually appears without much lag.

What the RCI actually returns

RCI entries stay concise. Long historical trails are rare. The register concentrates on the entity as it currently stands in law.

Through OpenRegistry the get_company_profile tool returns fields taken from the RCI extract itself. Typical fields include the company name and its RCI number. You also receive the legal form, registered address, incorporation date, declared activity, plus the stated share capital.

The raw jurisdiction_data payload often keeps the registry’s own wording. Monaco entries frequently retain French field names exactly as written in the extract. You will see labels such as forme_juridique, capital_social, or date_immatriculation. Leaving them untouched helps when you compare the response with the official PDF extract or a court filing.

Officer information comes from a separate request. The get_officers tool returns the individuals or corporate managers recorded against the entity. Monaco companies often show titles such as gerant or administrateur. Some legal forms list a president. The record normally gives the person’s name together with the role. Appointment dates appear if the filing included them.

Filings exist, though the stream stays light. Large registries might show decades of documents for a single company. Monaco entities often surface only a handful. When filings are present, list_filings returns references to items such as amended statutes or registry extracts. The files themselves are usually PDFs of the submitted paperwork. Structured filing metadata is uncommon.

That changes the emphasis during diligence. The current legal snapshot matters more than the document trail.

Fields you will not see

Monaco restricts access to ownership data.

The beneficial ownership register sits behind AML controls and does not appear in the public RCI interface. Because the source registry does not publish that material openly, get_persons_with_significant_control returns nothing for this jurisdiction.

Shareholder disclosure is also narrow. Many Monaco companies do not publish shareholder lists in the public register. Even where the profile shows the total share capital, the distribution of those shares rarely appears.

Financial statements form another gap. The RCI is not a financial disclosure platform in the way the UK system operates. Revenue figures will not appear in the registry response. Balance sheet data will not either.

The result is a register that confirms legal existence and governance. The economic picture mostly sits elsewhere.

Querying Monaco via the MCP tools

The RCI can be queried through the OpenRegistry MCP server using the same pattern used for other jurisdictions. Start with a name search.

Example tool call:

search_companies({
  "jurisdiction": "MC",
  "query": "SOCIETE DES BAINS DE MER"
})
Enter fullscreen mode Exit fullscreen mode

This returns matching entities together with their RCI numbers. Once you have the registration number, request the company profile.

get_company_profile({
  "jurisdiction": "MC",
  "company_number": "56S00523"
})
Enter fullscreen mode Exit fullscreen mode

Officer records come from another call.

get_officers({
  "jurisdiction": "MC",
  "company_number": "56S00523"
})
Enter fullscreen mode Exit fullscreen mode

If the registry lists documents for the entity, the filing index exposes them and provides document identifiers.

list_filings({
  "jurisdiction": "MC",
  "company_number": "56S00523"
})
Enter fullscreen mode Exit fullscreen mode

A document can then be retrieved with fetch_document.

Practical use in cross‑border diligence

Monaco rarely appears on its own in transaction work. Most often it sits inside a wider European structure. I usually encounter it as a holding or distribution vehicle connected to French or Italian operating subsidiaries.

Officer matching helps here.

Pull the Monaco directors from the RCI record. Then check the same names across other national registries. The MCP endpoint already exposes several European ones. When the same person appears across two subsidiaries, the overlap often hints at where the group’s operational centre actually sits. Ownership disclosure may remain opaque; the management pattern still tells a story.

Capital adjustments also surface quickly in Monaco records. Filings that change the capital_social figure tend to appear soon after the corporate action. A capital increase during a live transaction window can signal restructuring within the group.

RCI updates sometimes reveal dormant companies returning to use. A new gérant can be the first clue. A fresh registered address can signal the same thing. Shelf entities occasionally reappear this way when a group needs a local vehicle.

None of this replaces deeper ownership work. Monaco’s framework limits what the public register shows. The registry still answers the early diligence questions. Does the entity exist? Who manages it today? Has anything changed recently?

Direct queries to the register avoid the lag that appears in aggregator datasets. The Monaco RCI endpoint is available through the OpenRegistry MCP server at https://openregistry.sophymarine.com.

Top comments (0)