Reevl — Korean Real Estate
Server Details
Korean apartment data: 45,000+ complexes, official prices, jeonse ratios, AI forecasts.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.3/5 across 4 of 4 tools scored.
Each tool has a clearly separate role: schema/unit discovery, filtered searching, detail lookup, and article browsing. There is no meaningful overlap between search, detail, metadata, or briefing tools.
All tool names follow a clean snake_case verb_noun pattern: describe_fields, get_apartment, list_articles, search_apartments. Minor singular/plural variation is natural and does not create confusion.
Four tools is small but well-scoped for this read-only real estate information server. Each tool covers a necessary stage of the workflow and none feels like filler.
The main workflow is complete: inspect searchable fields, run filtered searches, retrieve detailed apartment data, and get recent market briefing articles. A minor gap is that list_articles does not also provide a dedicated article detail or filtering endpoint, though the returned link and summary may be sufficient.
Available Tools
4 toolsdescribe_fields축·단위 안내ARead-onlyIdempotentInspect
검색에 쓸 수 있는 모든 축과 단위, 값의 분포(최소·중위·최대)와 시도별 단지 수를 준다. ★조건 검색 전에 한 번 부르는 것을 권한다 — 단위를 모르고 범위를 넣으면 100배 틀린 조건이 된다 (예: 전세가율은 값 그대로 %, 세대당 대지지분은 10으로 나눠야 ㎡).
| Name | Required | Description | Default |
|---|---|---|---|
| sido | No | field=gu일 때 특정 시도로 좁힌다 | |
| field | No | 이 축의 실제 값 목록을 받는다(sido·gu·dong·brand·builder 등 문자 축) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, and non-destructive behavior, so the description adds context beyond what is already structured. It details the returned categories and the practical preflight caution about units, which gives the agent a meaningful behavioral expectation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded with the core purpose. The unit-error example is concrete and earns its place by reinforcing the recommended preflight usage without unnecessary verbosity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description sufficiently names the outputs that matter: axes, units, distribution stats, and sido-level counts. The optional narrowing via 'sido' and 'field' is covered in the schema, so the whole preflight workflow is clear, even though the exact response format remains open.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so both optional parameters are already described clearly. The prose description does not repeat or add parameter semantics, but the baseline of 3 is appropriate because the schema carries the load and the description does not conflict.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: it provides all search axes, units, value distribution, and counts by sido. This clearly differentiates it from search/list/get tools because it is a metadata/preflight tool rather than a data retrieval tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says to call it once before condition search and explains why missing unit information can cause a 100x error. This is clear when-to-use guidance, and the alternative search tools are implicit as later steps, though there is no explicit when-not-to-use clause.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_apartment단지 상세ARead-onlyIdempotentInspect
단지 하나의 전 축을 뜻이 통하는 묶음(기본·가격·전세월세·거래·등락·AI예측·입지·건물)으로 준다. search_apartments로 고른 뒤 그 cid로 부른다. 특정 단지를 판단해야 할 때 쓴다.
| Name | Required | Description | Default |
|---|---|---|---|
| cid | Yes | 단지 식별자. 예: '11290|길음뉴타운1단지(래미안길음1차)|길음동|1279' |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds context about returning a bundled set of axes and depending on a search-selected cid, but it does not describe the response shape, pagination, or error behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three short sentences: what it returns, how to obtain its input, and when to use it. Every sentence earns its place; there is no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with a single required parameter and no output schema, the description adequately explains the output categories, the input source, and the intended use case. A fully explicit return contract would be better, but the category list and workflow guidance make the tool callable without further inference.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already fully documents cid with a concrete example, meeting the high-coverage baseline. The description adds the important bit of input provenance: the cid must come from search_apartments, which helps the agent supply a correct value rather than an arbitrary one.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action and resource: get a single complex's detail as a cohesive bundle, with concrete categories enumerated. It also distinguishes itself from search_apartments by framing this as the follow-up detail call for a selected cid.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly says to call it with the cid obtained from search_apartments and defines when it is appropriate ('when you need to judge a specific complex'). It does not explicitly contrast it with list_articles or describe_fields, but the workflow guidance is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_articles리블 아티클ARead-onlyIdempotentInspect
리블이 발행한 부동산 브리핑 목록(제목·요약·발행일·링크). 정책 보도자료 정리와 실거래 데이터 분석을 거의 매일 낸다. 최근 시장 상황이나 정책 흐름을 물을 때 근거로 쓴다.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | 1~30, 기본 10 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already communicate read-only, idempotent, and non-destructive behavior, lowering the burden on the description. The description adds useful context about the article frequency and the content of returned items, but does not reveal further behavioral details such as ordering, pagination semantics, or update latency. Beyond the annotations, the added value is moderate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, each carrying essential information: the first defines what the tool lists and with which key fields, the second gives a reason for using the tool along with its update frequency. There is no repetition of schema/annotations and no filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-optional-parameter tool with no output schema, the description covers the key aspects: what it returns, general content, and when to apply it. It could additionally mention whether the list is ordered by publication date or how recent the articles are, but the described use case and fields make a call scenario complete enough.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already fully describes the only parameter (limit: 1~30, default 10), resulting in 100% schema coverage. The description does not mention the limit parameter or add additional semantics, so it does not improve on the schema; per the baseline, this is a 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('목록' – list) and resource ('리블 아티클' – Rible articles), and enumerates the typical fields returned: title, summary, publication date, link. This unambiguously differentiates it from sibling tools focused on data fields or apartment search, so an agent can identify when to use it.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly gives a usage context: use as evidence for recent market situations or policy flows, and notes that the articles are published almost daily. It does not mention alternatives or exclusions, but the tool's purpose is distinct enough from its siblings that a separate differentiation is not necessary.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_apartments아파트 검색ARead-onlyIdempotentInspect
전국 아파트 45,000여 개를 조건으로 거른다. "강남구 20억 이하 대단지", "전세가율 높은 곳", "AI 1년 예측이 높은 단지"처럼 조건이 있는 질문에 쓴다. 지역·브랜드·시공사는 완전일치이고, 수치 축은 <축>_min·<축>_max로 범위를 준다. 응답에 units(단위 설명)와 total이 함께 온다 — 단위를 지어내지 말고 units를 그대로 읽을 것. 기본 20건이며 total로 전체 규모를 알 수 있다.
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | 단지명 부분 일치 검색어 | |
| gu | No | 시군구. 예: 강남구, 수원시 장안구 | |
| dong | No | 읍면동. 예: 대치동 | |
| sido | No | 시도. 예: 서울, 경기, 부산. (광주는 전남광주로 정규화된다) | |
| sort | No | 정렬 축(수치 축 이름). 예: price, fc12, hh, jr | |
| brand | No | 브랜드. 예: 자이, 래미안, 힐스테이트 | |
| limit | No | 1~100, 기본 20 | |
| order | No | 기본 desc | |
| fields | No | 쉼표로 구분한 축 목록, 또는 'all'. 기본은 14축(토큰 절약) | |
| hh_min | No | 세대수 하한 | |
| jr_min | No | 전세가율 하한(%). 값 그대로 — 60이면 60% | |
| offset | No | 건너뛸 건수(페이지네이션) | |
| age_max | No | 준공 후 경과 연수 상한 | |
| builder | No | 시공사. 예: 현대건설 | |
| fc12_min | No | 리블 AI 1년 예측 하한(%). 값 그대로 | |
| price_max | No | 매매 대표가 상한(만원) | |
| price_min | No | 매매 대표가 하한(만원) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond annotations that already declare readOnly and idempotent hints, the description adds material behavioral guidance: the response includes 'units' and 'total', the agent must read units rather than invent them, numeric filtering uses <axis>_min/<axis>_max, values such as 60 mean 60%, and 20 results are returned by default. This meaningfully compensates for the absence of an output schema and protects against common invocation mistakes.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and well structured, front-loading the main function and sample result types. Every sentence adds decision-relevant context: when to use, syntax orientation, response semantics, and default result size. There is no filler or duplication of schema entries.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is complex with 17 optional parameters and no output schema, but the description covers the critical usage surface: condition-style questions, exact-match vs range behavior, response units warning, total count, and default limit. Combined with the highly detailed parameter-level schema descriptions, this is enough for an agent to invoke the tool correctly without guessing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Despite 100% schema coverage, the description adds a reusable semantic layer across parameters: numeric axes follow a shared <axis>_min/<axis>_max ranged notation, values such as percentages are used literally without conversion, and some fields are exactly matched while others are range-based. This context explains the parameter convention better than the individual field descriptions alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the tool's job clearly: filtering over about 45,000 nationwide apartments based on conditions, with concrete example queries such as '강남구 20억 이하 대단지'. It also distinguishes itself as the condition-search entry point from the sibling tools by focusing on filtering, though it does not explicitly name or contrast siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says when to use the tool: for questions that carry filtering conditions, and gives realistic query patterns. It gives useful constraints such as exact matching for region/brand/builder and min/max syntax for numeric axes, but it does not explicitly tell when not to use it or which sibling alternative to prefer.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- -licenseNot gradedqualityCmaintenanceEnables AI assistants to query Korean apartment real-estate data, including official transaction prices, jeonse ratios, and AI price forecasts for 45,000+ complexes.
- AlicenseNot gradedqualityDmaintenanceAI-powered Korean real estate analysis and recommendation system providing property data, location analysis, and combined investment and quality of life evaluation.3MIT
- AlicenseAqualityDmaintenanceEnables 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.7MIT
- AlicenseAqualityAmaintenanceConnects to Korea's MOLIT real estate API to provide 14+ tools for live transaction data and financial scenarios like buy now, buy later, or invest only based on income and savings.16367MIT