Skip to main content
Glama
exclusiveyon-a11y

Reevl MCP

Reevl MCP

An MCP server that lets you query Korean apartment real-transaction data directly from AI. It provides real-transaction prices, jeonse-to-price ratios, transaction volumes, and location scores for about 45,000 apartments nationwide, plus Reevl AI price predictions.

It's free, requires no authentication, and is read-only.

https://reevl.co.kr/api/mcp

Connecting

For services that natively support remote MCP, such as Claude and ChatGPT, just enter the URL.

{
  "mcpServers": {
    "reevl": {
      "type": "http",
      "url": "https://reevl.co.kr/api/mcp"
    }
  }
}

Hosts that only support stdio

Use the bridge in this repository.

{
  "mcpServers": {
    "reevl": {
      "command": "npx",
      "args": ["-y", "github:exclusiveyon-a11y/reevl-mcp"]
    }
  }
}

It's not published to npm — it runs directly from this repository (Node 18+).

The bridge does exactly one thing — it attaches the MCP-Protocol-Version, Mcp-Method, and Mcp-Name headers required by the MCP 2026-07-28 spec, matching them to the body. The server rejects these values if they don't match the body (-32020), so hand-attaching them fails every time.


Related MCP server: BDLedger MCP Server

Tools

Tool

When to use

describe_fields

Before any filtered search. Gives the available axes, units, and value distributions

search_apartments

Filter by region, brand, builder, price, number of households, jeonse-to-price ratio, AI prediction, etc.

get_apartment

All axes for a single complex in one bundle

list_articles

Real-estate briefings published by Reevl (policy, market analysis)

All are readOnlyHint: true; there are no write, order, or brokerage features.

Don't make up units

The response always includes units. Read them as-is. If you enter a range without knowing the units, your condition will be off by a factor of 100 — for example, the jeonse-to-price ratio is a percentage as-is (60 means 60%), and the land share per household must be divided by 10 to get square meters. That's why we recommend calling describe_fields first.


Try asking like this

  • Show me complexes in Gangnam-gu, Seoul with over 1,000 households and a high 1-year AI prediction

  • Find apartments in Suwon-si with a jeonse-to-price ratio of 70% or higher and under 2 billion won

  • Summarize this complex's price, jeonse-to-price ratio, and school district score

  • Summarize the recent real-estate policy trends with Reevl articles


Protocol

A dual-era server that supports both MCP 2026-07-28 and earlier revisions (2025-11-25 ~ 2024-11-05).

  • Requests carrying a version in _meta → 2026-07-28 rules (sessionless, header matching)

  • Requests starting with initialize → the corresponding legacy revision

You can check supported versions at once with server/discover.

curl -s https://reevl.co.kr/api/mcp \
  -H 'content-type: application/json' \
  -H 'mcp-protocol-version: 2026-07-28' \
  -H 'mcp-method: server/discover' \
  -d '{"jsonrpc":"2.0","id":1,"method":"server/discover","params":{}}'

The same data is also available via REST — OpenAPI spec


Data sources

Official open APIs from each institution, including the Ministry of Land, Infrastructure and Transport's real-transaction price disclosure system, the Common Apartment Management Information System (K-apt), the Korea Real Estate Board (R-ONE), Statistics Korea (KOSIS), the Bank of Korea (ECOS), the Ministry of Land, Infrastructure and Transport's spatial information open platform (V-World), the Ministry of Education's School Info, and Cheongyak Home.

Sources, collection cycles, and processing methods are disclosed at Data sources and status.

Notes

Reevl data is reference statistics processed from public data, not investment advice or brokerage. Prediction information is a statistical estimate and does not guarantee future prices or returns. Source data may contain errors, omissions, or delays, and some transactions are corrected or cancelled after reporting.

See the Terms of Service and Privacy Policy for details.

License

The bridge code is MIT. The server and data follow the terms above.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Enables AI agents to query and analyze Korean apartment real estate transaction prices (sales and rentals) using natural language, providing tools for price trends, regional comparisons, and rent ratios.
    7
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables querying Korean apartment sales and rental transaction data from the public data portal through natural language, with tools for searching transactions and computing price statistics.
    51
    MIT
  • F
    license
    Not graded
    quality
    B
    maintenance
    Enables natural language queries to retrieve Korean real estate transaction data (land, commercial, apartments) from the public API, returning structured tables and summary statistics.
    -

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/exclusiveyon-a11y/reevl-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server