Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

An MCP app that displays interactive Paris real estate price statistics per arrondissement inside Claude, with map, comparison, and address search.

README.md

DVF Paris — MCP App

An interactive MCP App that displays Paris real estate prices per arrondissement, directly inside Claude.

Built with the MCP Apps SDK (@modelcontextprotocol/ext-apps).

!Demo DVF Paris

What it does

Ask Claude about Paris real estate prices and get an interactive widget with:

  • Fullscreen mode (v0.8): split layout with map (60%) and info panel (40%), interactive search
  • Interactive map (Leaflet + OpenStreetMap) highlighting the arrondissement
  • Choropleth sections (v0.6): cadastral sections colored by median price, clickable for details
  • Price stats: average price/m², median price/m², number of sales
  • Apartments / Houses toggle
  • Comparison mode: compare two arrondissements side-by-side with a bar chart
  • Address search (v0.5): search by address and get stats for the cadastral section
  • UI-driven search (v0.8): search addresses and browse arrondissements directly from the widget

Data source: DVF (Demandes de Valeurs Foncieres) from data.gouv.fr.

Architecture

Claude                    MCP Server               UI (iframe)
  │                          │                         │
  │── "prix Paris 11" ──────>│                         │
  │                          │── get-dvf-stats ───────>│
  │                          │   structuredContent     │── Map + Stats
  │                          │                         │
  │── "compare 6e vs 11e" ──>│                         │
  │                          │── compare-dvf-stats ───>│
  │                          │   mode: "compare"       │── Map + Bar chart
  │                          │                         │
  │── "prix rue Roquette" ──>│                         │
  │                          │── search-dvf-address ──>│
  │                          │   mode: "address"       │── Map + Marker + Compare
  1. Claude calls get-dvf-stats, compare-dvf-stats or search-dvf-address
  2. The tool returns data + a reference to ui://dvf/mcp-app.html
  3. Claude fetches the resource and displays it in a sandboxed iframe
  4. The UI receives data via app.ontoolresult

MCP Tools

| Tool | Input | Output | |------|-------|--------| | get-dvf-stats | arrondissement (1-20) | Price stats for one arrondissement | | compare-dvf-stats | arrondissement_1, arrondissement_2 (1-20) | Side-by-side comparison with bar chart | | search-dvf-address | adresse (string) | Stats for cadastral section + comparison with arrondissement |

Stack

| Component | Technology | |-----------|------------| | MCP Apps SDK | @modelcontextprotocol/ext-apps | | MCP Server | @modelcontextprotocol/sdk | | Build | Vite + TypeScript | | UI | Vanilla JS | | Map | Leaflet + OpenStreetMap (no API key needed) | | Charts | Pure SVG (no dependencies) | | Transport | stdio (Claude Desktop) or Streamable HTTP |

External APIs

| API | Usage | |-----|-------| | MCP data.gouv | Real-time DVF stats | | API Géoplateforme | Address geocoding | | cadastre.data.gouv.fr | Cadastral section geometries (GeoJSON) |

Setup

npm install
npm run build

Claude Desktop configuration

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "dvf-paris": {
      "command": "bash",
      "args": ["-c", "cd /path/to/dvf-mcp-app && npx tsx main.ts --stdio"]
    }
  }
}

Then restart Claude Desktop.

Development

# Watch mode (UI hot reload + server)
npm run dev

# Build only
npm run build

# Run server (Streamable HTTP on port 3001)
npm run serve

Project structure

dvf-mcp-app/
├── server.ts              # MCP Server + Tools + Resource
├── main.ts                # Entry point (stdio + HTTP)
├── mcp-app.html           # UI shell (HTML)
├── src/
│   ├── mcp-app.ts         # UI logic (map, chart, host communication)
│   ├── mcp-app.css        # Widget styles
│   ├── api/               # External API clients
│   │   ├── cadastre.ts    # Cadastre GeoJSON client
│   │   ├── data-gouv.ts   # MCP data.gouv client
│   │   └── geoplateforme.ts # Geocoding client
│   └── data/
│       ├── dvf-paris.json          # Pre-computed stats (fallback)
│       └── arrondissements.geojson.json  # GeoJSON boundaries
├── package.json
├── tsconfig.json
└── vite.config.ts

Roadmap

  • [x] v0.1 — Basic stats widget
  • [x] v0.2 — Interactive map with Leaflet
  • [x] v0.3 — Comparison mode (2 arrondissements)
  • [x] v0.4 — Real-time data via data.gouv.fr API (with JSON fallback)
  • [x] v0.5 — Address search with cadastral section stats
  • [x] v0.6 — Choropleth cadastral sections (clickable, color-coded by price)
  • [ ] v0.7 — Link to recent transactions (optional)
  • [x] v0.8 — Fullscreen mode with interactive search (split layout, callServerTool)

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.