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 volume, location scores for about 45,000 apartments nationwide, plus Reevl AI price predictions.

Free and no authentication required. Read-only.

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

Connecting

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

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

Hosts that only support stdio

Use the bridge from this repository. Nothing to install (Node 18+).

{
  "mcpServers": {
    "reevl": {
      "command": "npx",
      "args": ["-y", "reevl-mcp"]
    }
  }
}

The bridge does exactly one thing — it adds the MCP-Protocol-Version, Mcp-Method, and Mcp-Name headers required by the MCP 2026-07-28 specification, matching them to the body. The server rejects these values if they differ from the body (error -32020), so matching them by hand is error-prone.


Tools

Tool

When to use it

describe_fields

First, before any filtered search. Provides the available dimensions, their units, and value distributions

search_apartments

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

get_apartment

A full set of every dimension for one complex

list_articles

Real estate briefings published by Reevl (policy and market analysis)

All are readOnly: true, with 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 filter will be off by a factor of 100 — for example, the jeonse-to-sale ratio is expressed as a percentage (60 means 60%), and the land per household needs to be divided by 10 to get square meters. That's why it's recommended to call describe_fields first.


Try asking it like this

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

  • Find me apartments in Suwon-si under 2 billion KRW with a jeonse-to-sale ratio above 70%

  • Summarize the price, jeonse-to-sale ratio, and school district score for this complex

  • Summarize recent real estate policy trends using Reevl articles


Protocol

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

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

  • Requests starting with initialize → that legacy revision

Supported versions can be checked at once via 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 the Ministry of Land, Infrastructure and Transport's real transaction disclosure system, the construction information system for multi-family housing (K-apt) disclosures, the Korea Real Estate Board (R-ONE), payloads from Statistics Korea (KOSIS), the Bank of Korea (ECOS), the National Land and GIS Open Platform (V-World) of the Ministry of Land, Infrastructure and Transport, the school info service (SchoolAlimi) of the Ministry of Education, and Cheong-ak Household, where applicable.

Sources, collection cycles, and processing methods are disclosed in the Data Sources and Status section.

Important notice

Reevl data is reference-only statistics derived from public data and does not constitute investing advice or property 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 may be corrected or voided after submission.

See the Terms of Service and Privacy Policy for details.

License

The bridge code is MIT licensed. The server and data follow the terms above.# Reevl MCP

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

Free and no authentication required. Read-only.

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

Connecting

For clients like Claude, ChatGPT, etc. that natively support remote MCP, just enter the URL.

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

Hosts that only support stdio

Use the bridge from this repository. Nothing to install (Node 18+).

{
  "mcpServers": {
    "reevl": {
      "command": "npx",
      "args": ["-y", "reevl-mcp"]
    }
  }
}

The bridge does one thing — it adds the MCP-Protocol-Version, Mcp-Method, and Mcp-Name headers required by the MCP 2026-07-28 specification, matching the request body. The server rejects these values if they don't match the body (error -32020), so hand-matching them will fail every time.


Tools

Tool

When to use

describe_fields

First, before filtered searches. Provides the searchable dimensions, units, and value distributions

search_apartments

Filters by region, brand, developer, price, households, jeonse-to-sale ratio, AI prediction, etc.

get_apartment

All dimensions for a single complex in one bundle

list_articles

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

All have readOnlyHint: true and provide no write, order, or brokerage functionality.

Don't make up units

The response always includes units. Read them as-is. If you provide a range without knowing the units, your filter condition will be 100 times off — for example, the jeonse-to-sale ratio is a percentage as-is (60 means 60%), and the land area per household needs to be divided by 10 to get square meters. That's why it's recommended to call describe_fields first.


Ask it like this

  • Show me a complex in Gangnam-gu, Seoul with more than 1,000 households and a high AI 1-year prediction

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

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

  • Summarize the current real estate policy trends with Reevl articles


Protocol

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

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

  • Requests that start with initialize → the corresponding legacy revision

Supported versions can be checked 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 specification


Data sources

Official open APIs from the Ministry of Land, Infrastructure and Transport real transaction disclosure system, the common residential housing management information system (K-apt), the Korea Real Estate Board (R-ONE), the National Bureau of Statistics (KOSIS), the Bank of Korea (ECOS), the Ministry of Land, Infrastructure and Transport spatial information open platform (V-World), the Ministry of Education's school information service (SchoolAlimi), and Cheongyak Home, among others.

Sources, the collection cycle, and processing methods are disclosed in the Data Sources and Status section.

Notes

Reevl data is reference statistics processed from public data and is 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 transactions may be corrected or voided after reporting.

For details, see the Terms of Service and Privacy Policy.

License

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

-
license - not tested
Not graded
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

View all MCP Connectors

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