Normi — French Real Estate Data (DVF)

Created By
NormiHQa month ago
Access 17M+ geocoded French property transactions (DVF) via MCP. Search properties, get market stats, find comparables, track price trends, compare neighborhoods, and generate heatmaps. Data from 2014 to present, updated semi-annually.
Overview

Normi — French Real Estate Data MCP Server

Access 17M+ geocoded French property transactions (DVF) from Claude Desktop, Cursor, VS Code, or any MCP client.

npm MCP Registry License: MIT

Quick Start (2 minutes)

1. Get your free API key

Sign up at normi.fr and create a token in your dashboard.

2. Configure your MCP client

Claude Desktop — edit claude_desktop_config.json:

{
  "mcpServers": {
    "normi": {
      "command": "npx",
      "args": ["-y", "@normi/mcp-dvf"],
      "env": {
        "NORMI_API_KEY": "normi_YOUR_TOKEN_HERE"
      }
    }
  }
}

Cursor / VS Code (Claude Code) — add via CLI:

claude mcp add --transport http normi https://mcp.normi.fr/mcp --header "Authorization: Bearer normi_YOUR_TOKEN"

3. Start asking questions

"Quels sont les prix au m² à Paris 15ème ?"
"Trouve des comparables pour un T3 de 65m² à Lyon 3ème"
"Évolution des prix à Bordeaux depuis 2020"

8 MCP Tools

ToolDescriptionCredits
search_propertiesSearch transactions by location, type, price, surface5
get_market_statsAggregate stats: median price, price/m², volume5
find_comparablesFind similar properties by proximity and surface10
get_price_trendsPrice evolution over time (month/quarter/year)10
compare_neighborhoodsCompare 2-5 locations side by side10
get_market_activityTransaction volume and seasonality10
get_market_heatmapPrice data by zone for a department15
get_property_historyTransaction history for a specific address20

REST API

Normi also offers a REST API for non-MCP use cases. Full documentation.

curl -H "X-API-Key: normi_YOUR_TOKEN" \
  "https://mcp.normi.fr/v1/stats/market?code_postal=75001"

Pricing

PlanCredits/monthRate LimitPrice
Free10010 req/minFree
Agent55,00030 req/min49 EUR/mo
Pro175,00060 req/min149 EUR/mo
Enterprise500,000120 req/min399 EUR/mo

One-time credit packs also available. See pricing.

Data

  • Source: DVF (Demandes de Valeurs Foncieres) — French government open data
  • Coverage: All of metropolitan France, 2014-present
  • Volume: 17.4M+ geocoded transactions
  • Updates: Semi-annual (April & October)
  • License: Licence Ouverte 2.0

License

MIT

Server Config

{
  "mcpServers": {
    "normi": {
      "command": "npx",
      "args": [
        "-y",
        "@normi/mcp-dvf"
      ],
      "env": {
        "NORMI_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}
Project Info
Created At
a month ago
Updated At
a month ago
Author Name
NormiHQ
Star
-
Language
-
License
-
Category

Recommend Servers

View All
Shadcn Space MCP
@shadcnspace

Integrate the shadcn/ui MCP server from shadcn space into your IDE to generate accurate, production-ready Shadcn UI components. Official Model Context Protocol (MCP) server for [Shadcn Space](https://shadcnspace.com). This MCP server allows AI-powered IDEs and agents to discover, search, and install **Shadcn Space** UI blocks directly into your projects - no copy-paste required. ## Install MCP configuration. ```bash npx shadcnspace-cli install <client> ``` ### Supported Clients - [x] cursor - [x] windsurf - [x] claude - [x] cline - [x] antigravity ## Manual Installation Add to your IDE's MCP config: ```json { "mcpServers": { "shadcnspace-mcp": { "command": "npx", "args": ["-y", "shadcnspace-mcp@latest"] } } } ``` For more information visit our documentation of [**How to use MCP Server**](https://shadcnspace.com/docs/getting-started/mcp-server-docs) ## Available Tools The server provides the following tools callable via MCP: | Tool Name | Description | |-----------|-------------| | `listBlocks` | Provides a comprehensive list of all shadcnspace blocks. | | `listComponents` | Provides a comprehensive list of all shadcnspace components. | | `getBlockInstall` | Returns the official installation command for a specific Shadcn Space block. | | `searchBlocks` | Search Shadcn Space blocks using keywords or tags. | | `listInstalledBlocks` | Lists all blocks that are currently installed in the project and get their files. | ### Available Prompts The server provides the following prompts callable via MCP: | Prompt/Command | Description | |----------------|-------------| | `search` | Find specific UI block by name. | | `create-ui` | Create a new UI block using our exisitng blocks. | ## Example Usage Once configured, you can ask questions like: > "List all available UI blocks" > "Give me the code for the accordion-01 component" > "Create a landing page for a coffee shop using a hero-01 block, a 3-column feature grid, and a dark-themed footer." ## Credits Created by [shadcnspace](https://shadcnspace.com). [Shadcn MCP](https://shadcnspace.com/mcp) [MIT](LICENSE)

11 hours ago