seoul_real_estate

Pack: seoul-data · Endpoint: https://gateway.pipeworx.io/seoul-data/mcp

Seoul property/apartment SALE transactions (실거래가) from the official registry. PREFER for “apartment prices in ”, “recent Seoul real-estate sales”, “what did sell for”. Optionally filter by year and district code. Returns building name, neighborhood (dong), sale price (KRW), floor area (m²), floor, and contract date. Common district codes:

Parameters

NameTypeRequiredDescription
yearnumbernoContract year, e.g. 2026 (optional).
district_codestringno5-digit Seoul district code, e.g. “11680” (Gangnam) (optional).
limitnumbernoMax transactions (default 5; sample key caps at 5, real key up to 1000).

Example call

Arguments

{
  "year": 2026,
  "district_code": "11680",
  "limit": 10
}

curl

curl -X POST https://gateway.pipeworx.io/seoul-data/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"seoul_real_estate","arguments":{"year":2026,"district_code":"11680","limit":10}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('seoul_real_estate', {
  "year": 2026,
  "district_code": "11680",
  "limit": 10
});

More examples

{
  "district_code": "11500",
  "limit": 5
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "seoul-data": {
      "url": "https://gateway.pipeworx.io/seoul-data/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 11, 2026