Skip to main content
Glama
hlucent

construction-alert-mcp

by hlucent

서울시 건설알림이 MCP

서울시 열린데이터광장의 건설공사(공사장) 정보를 자연어로 검색·조회할 수 있게 해주는 MCP(Model Context Protocol) 서버. Claude Desktop, Claude Code, Claude 웹(커넥터)에 연결하면 "서초구에 지금 진행 중인 공사 뭐 있어?" 같은 질문에 서울시 공식 데이터로 답할 수 있다.

상태

로컬 전용(stdio) 서버로 운영 중. 별도 클라우드 서버나 URL 접속이 없고, 인증키·사용량 제한도 없다. 각자 자기 컴퓨터에 이 저장소를 내려받아 Claude가 직접 실행하는 방식이다. (과거 fly.io로 웹 배포했던 버전은 2026-09에 완전히 폐쇄했다 — 더 이상 어떤 URL로도 서비스되지 않는다.)

Related MCP server: narajangteo-prespec

제공 도구 (4개)

도구

하는 일

search_construction_projects

자치구명·키워드로 공사장 검색 (사업명, 위치, 발주처/시공사, 착공일, 준공예정일, 도급액, 연락처 등)

search_construction_work_by_district

자치구별 공사 정보 검색 (프로젝트 코드, 착수일, 사업기간, 진행상태, 주소 등)

get_construction_progress

공정률·기성률·D-Day 등 진행 현황 조회

get_construction_project_photos

사업코드로 현장 사진 목록 조회

모든 도구는 결과에 출처 필드(서울 열린데이터광장 데이터셋명)를 포함하며, 이 MCP로 얻은 정보를 답변에 쓸 때는 반드시 출처를 함께 밝혀야 한다.

사용하는 원본 데이터

  • 서울시 건설알림이 사업개요 (OA-15585)

  • 서울시 건설알림이 공사사진 (OA-15586)

  • 서울시 건설 알림이 정보, ListConstructionWorkService (OA-1222)

  • 서울시 건설공사 추진 현황, ListOnePMISBizInfo (OA-2540)


설치 방법 (비개발자용, 처음이어도 괜찮습니다)

준비물은 딱 두 가지입니다: Node.js서울 열린데이터광장 인증키(무료, 누구나 즉시 발급).

0단계 — 사전 준비

Node.js 설치 확인

이미 Claude Code나 다른 MCP를 써보셨다면 대부분 설치되어 있습니다. PowerShell (윈도우) 또는 터미널(맥)에서 아래 명령을 입력해보세요.

node --version

v18 이상 버전이 뜨면 통과입니다. "명령을 찾을 수 없다"는 에러가 뜨면 nodejs.org에서 LTS 버전을 내려받아 설치한 뒤 다시 시도하세요.

서울 열린데이터광장 인증키 발급

  1. data.seoul.go.kr에서 회원가입/로그인

  2. 인증키 신청 페이지에서 인증키 신청 (승인까지 보통 즉시~수 분)

  3. 발급된 인증키(영문+숫자 조합 문자열)를 복사해둔다 — 아래 2단계에서 씀

1단계 — 이 저장소 내려받기

PowerShell(윈도우) 또는 터미널(맥)에서, 원하는 위치로 이동한 뒤:

git clone https://github.com/hlucent/seoul-construction-mcp.git
cd seoul-construction-mcp
npm install

git이 없다면 git-scm.com에서 설치하거나, GitHub 페이지 우측의 "Code → Download ZIP"으로 내려받아 압축을 풀어도 됩니다.

npm install 실행 후, 지금 폴더의 전체 경로를 메모해두세요. 다음 단계에서 그대로 씁니다. 확인 방법:

# 윈도우
echo %cd%

# 맥
pwd

2단계 — Claude에 등록하기

아래 세 가지 중 본인 환경에 맞는 방법 하나만 따라 하면 됩니다.

방법 A — Claude Desktop (가장 많이 씀)

  1. Claude Desktop 실행 → 설정(Settings) → Developer → "Edit Config" 클릭 (또는 아래 파일을 직접 텍스트 편집기로 연다)

    • 윈도우 (일반 설치): %APPDATA%\Claude\claude_desktop_config.json

    • 윈도우 (Microsoft Store 설치): %LOCALAPPDATA%\Packages\Claude_<임의문자열>\LocalCache\Roaming\Claude\claude_desktop_config.json (탐색기 주소창에 %LOCALAPPDATA%\Packages를 붙여넣으면 Claude_로 시작하는 폴더를 찾을 수 있다. 일반 경로를 수정했는데 Claude가 계속 옛날 설정을 쓰는 것처럼 보인다면, Microsoft Store 버전이라 이 경로가 진짜일 가능성이 높다 — 실제로 이 프로젝트에서 겪었던 문제다.)

    • 맥: ~/Library/Application Support/Claude/claude_desktop_config.json

  2. 파일 안 "mcpServers" 객체 안에 아래 항목을 추가한다. 이미 다른 MCP가 등록되어 있다면 그 옆에 콤마(,)로 이어붙인다. 경로(args)는 반드시 1단계에서 메모해둔 본인 폴더의 실제 경로로 바꿔야 한다.

    "seoul-construction-mcp": {
      "command": "node",
      "args": [
        "여기에_본인_경로/seoul-construction-mcp/src/index.js"
      ],
      "env": {
        "SEOUL_OPENAPI_KEY": "본인의_서울시_인증키"
      }
    }

    윈도우 경로는 \를 두 번(\\) 써야 합니다. 예: "C:\\Users\\내계정\\seoul-construction-mcp\\src\\index.js"

    연결이 자꾸 실패한다면? "command": "node" 대신 node.exe의 전체 경로를 직접 써보세요. PowerShell에서 (Get-Command node).Source로 확인할 수 있습니다 (보통 C:\\Program Files\\nodejs\\node.exe).

  3. 파일 저장 → Claude Desktop을 완전히 종료했다가 다시 실행한다. (창을 닫는 것만으로는 부족할 수 있다. 작업표시줄 트레이 아이콘에서 종료하거나, 윈도우는 PowerShell에서 Get-Process | Where-Object { $_.ProcessName -like "*Claude*" } | Stop-Process -Force로 완전히 끈 뒤 재실행하면 확실하다.)

  4. 새 대화창을 열어 "서초구 진행 중인 공사 알려줘"처럼 물어보고 확인한다.

방법 B — Claude Code (CLI를 이미 쓰고 있다면)

터미널에서 프로젝트 폴더 어디서든 아래 한 줄로 등록할 수 있습니다.

claude mcp add seoul-construction-mcp -s user -- node 본인_경로/seoul-construction-mcp/src/index.js

인증키는 실행할 때 환경변수로 넘기거나, 위 방법 A의 env 방식처럼 .mcp.json에 직접 넣어도 됩니다. 자세한 옵션은 claude mcp add --help 참고.

방법 C — Claude 웹(claude.ai) 커넥터로 쓰고 싶다면

claude.ai의 커넥터는 기본적으로 URL(원격 서버) 연결만 지원하고, 이 프로젝트처럼 내 컴퓨터에서 직접 실행하는 stdio 방식은 등록할 수 없습니다. 웹에서 쓰고 싶다면 별도로 웹 서버로 배포해야 하는데(예: Fly.io 등), 이 저장소는 현재 로컬 전용 구조라 별도 작업이 필요합니다. 개인/사무실 용도로는 방법 A(Desktop)나 B(Code)를 권장합니다.

3단계 — Claude Code로 설치 자체를 대신 시키기 (제일 쉬운 방법)

위 단계가 복잡하게 느껴진다면, 이 저장소를 내려받은 뒤(1단계까지만) Claude Code를 열고 이렇게 요청하세요.

CLAUDE.md 읽고, 이 프로젝트를 Claude Desktop에 등록하는 것까지 도와줘.
내 서울시 인증키는 [여기에 붙여넣기]야.

Claude Code가 본인 컴퓨터의 실제 경로를 확인하고, 설정 파일 위치를 찾아서 (Microsoft Store 버전인지도 자동으로 확인), 등록까지 대신 진행해준다.


문제 해결

증상

확인할 것

연결이 "Connection closed"로 계속 실패

① 경로에 오타/상대경로는 없는지 ② command를 node 전체경로로 바꿔봤는지 ③ Claude Desktop을 완전 종료 후 재시작했는지

설정을 분명히 고쳤는데 반영이 안 됨

Microsoft Store 버전이면 %APPDATA%\Claude가 아니라 %LOCALAPPDATA%\Packages\Claude_...\LocalCache\Roaming\Claude 경로가 진짜 설정 파일일 수 있음

"서울시 인증키가 없다"는 응답

envSEOUL_OPENAPI_KEY 값이 비어있거나 오타 — 발급받은 키를 다시 확인

도구는 뜨는데 결과가 빈 목록

자치구명 표기(예: "서초구" vs "서초"), 키워드 철자를 다시 확인

개발/기여용 참고

이 저장소를 직접 수정하고 싶다면 CLAUDE.md(작업 원칙)와 DEVLOG.md(개발 일지)를 참고하세요. 서버 코드는 src/index.js 한 파일이며, MCP SDK의 StdioServerTransport를 사용하는 순수 stdio 서버입니다(웹 서버, 인증, 사용량 제한 로직 없음).

로컬에서 코드를 고친 뒤 직접 동작을 확인하려면:

cp .env.example .env
# .env를 열어 SEOUL_OPENAPI_KEY 값을 채운다
npm start

Available Tools

4 tools
get_construction_progressA

서울시 건설공사 추진 현황(ListOnePMISBizInfo)을 사업명/발주처기관명 키워드로 검색한다. 계획/실적 공정률, 대비율, D-Day, 도급액/사업비, 시공사/감리사/발주처 담당자, 공사위치 등 공사 진행 현황을 반환한다. 자치구명과 최소 도급액은 결과를 받은 뒤 클라이언트에서 필터링한다. 공정률/대비율 값이 0이면 미입력으로 표시한다. 이 도구의 결과를 사용해 답변할 때는 반드시 출처(서울 열린데이터광장, 데이터셋명)를 답변에 명시해야 한다. 출처 표시를 생략하는 것은 금지된다.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo반환할 최대 결과 수 (기본 10). 검색은 항상 전체 데이터를 대상으로 하며, limit은 반환 개수만 제한한다.
gu_nameNo자치구명 (예: 종로구). API 자체 필터는 없어 결과를 받은 뒤 클라이언트에서 필터링한다.
biz_nameNo사업명(BIZ_NM)에 포함될 키워드
inst_nameNo발주처기관명(INST_NM) 키워드
min_amountNo최소 도급액(억원). 지정하면 도급액(AMT_CTRT)이 이 값 이상인 건만 반환. API 자체 필터는 없어 전체 데이터를 조회한 뒤 클라이언트에서 필터링한다.

TDQS

A3.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the behavioral disclosure burden and does well: it discloses that gu_name and min_amount are filtered client-side after retrieval, that 0 progress values should be displayed as '미입력', and that source attribution is mandatory when citing results. It could mention pagination or rate limits, but the disclosed behaviors are meaningful and non-obvious.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a compact paragraph that front-loads the core purpose, then adds filtering behavior, display conventions, and citation requirements. Every sentence adds relevant operational context, though a minor typo ('담당자' appears as '담당자') and slight redundancy with schema descriptions prevent a perfect score.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no annotations and no output schema, the description covers the key operational needs: what is returned, how filtering works, how to handle zero values, and the mandatory source citation. It could be more complete about result ordering, API metadata, or error behavior, but the core information needed to invoke and interpret results is present.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already provides 100% parameter descriptions, including the client-side filtering notes for gu_name and min_amount. The tool description adds little parameter-level meaning beyond restating that search is keyword-based and that filtering happens client-side. Baseline 3 is appropriate because the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it searches Seoul construction progress data by business name and ordering agency keyword, and enumerates the specific fields returned (progress rates, amounts, responsible parties, location). It does not explicitly distinguish itself from sibling tools like search_construction_projects, but the emphasis on progress-specific fields makes the purpose reasonably clear.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives useful context about client-side filtering for gu_name and min_amount, but it provides no guidance on when to use this tool versus the sibling tools such as search_construction_projects or search_construction_work_by_district. There are no explicit exclusions or alternative-selection criteria.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_construction_project_photosA

사업코드(PJT_CD)로 서울시 건설알림이 공사현장 사진 목록을 조회한다. 이 도구의 결과를 사용해 답변할 때는 반드시 출처(서울 열린데이터광장, 데이터셋명)를 답변에 명시해야 한다. 출처 표시를 생략하는 것은 금지된다.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo반환할 최대 사진 수 (기본 10)
pjt_cdYes사업코드 (search_construction_projects 결과의 사업코드 값)

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It does reveal that the operation is a read-only lookup ('조회한다') and imposes a mandatory source-citation rule for answers using its output, which adds behavioral context. However, it omits details about pagination, photo URL formats, ordering, or possible variations in results, so transparency is only partial.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is tightly structured: two sentences, the core action first, and the important usage caveat (source attribution) following immediately. Every sentence earns its place with no redundant or vague wording.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter lookup with one required input, the description covers the operation and a behavioral requirement, and the schema covers parameter details. The absence of an output schema means the description does not mention what fields the photo list contains (e.g., URLs, dates, metadata), but the tool's purpose is simple enough that this is a minor gap.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%: both limit and pjt_cd have type, constraints, and descriptions. The pjt_cd parameter description adds meaning beyond the name by pointing to search_construction_projects results as the source of valid values, which helps the agent construct a correct call.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action ('조회한다' – retrieves) and a specific resource ('공사현장 사진 목록' – construction site photo list) keyed by business code. This clearly distinguishes it from sibling tools that search projects, work by district, or get progress, none of which target photos.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description makes the input need explicit: a business code (PJT_CD) is required, and the pjt_cd parameter description further specifies that the value comes from search_construction_projects results, establishing a clear follow-up workflow. It does not explicitly mention when not to use the tool or compare with siblings, but the context is clear enough for an agent to select it appropriately.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_construction_projectsB

서울시 건설알림이(One-PMIS) 공사장 목록을 자치구명 또는 키워드로 검색한다. 사업명, 위치, 발주처/시공사, 착공일, 준공예정일, 도급액, 위경도, 발주처/건설사업관리단/시공사 연락처 등을 반환한다. 이 도구의 결과를 사용해 답변할 때는 반드시 출처(서울 열린데이터광장, 데이터셋명)를 답변에 명시해야 한다. 출처 표시를 생략하는 것은 금지된다.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo반환할 최대 결과 수 (기본 10). 검색은 항상 전체 데이터를 대상으로 하며, limit은 반환 개수만 제한한다.
gu_nameNo자치구명 (예: 서초구, 강남구). 생략하면 전체에서 검색.
keywordNo사업명에 포함될 키워드 (예: 도로, 터널, 지하차도)

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the behavioral disclosure burden. It adds useful behavioral context by requiring mandatory source attribution when results are used, and it lists the key data fields returned. It does not mention rate limits, data freshness, or result pagination, but as a read/search tool this is a moderate rather than critical gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the main function, followed by the return-value summary and then the important attribution rule. It is three sentences with no filler; though the return-field list is somewhat long, every sentence contributes meaningful information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

There is no output schema and no annotations, yet the description covers search criteria, returned fields, and a mandatory source-citation requirement. However, it leaves unclear how it differs from the sibling search_construction_work_by_district, and it does not describe result order, pagination, or edge cases, so it is not fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already fully documents the three parameters. The description repeats the gu_name/keyword search idea but does not add meaning beyond the schema's parameter descriptions, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action ('검색한다') on a specific resource (서울시 건설알림이/One-PMIS 공사장 목록), with clear filter criteria and a detailed list of returned fields. It does not explicitly differentiate itself from the sibling tool search_construction_work_by_district, which is similarly named, but its overall purpose is unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use it: when searching construction project lists by 자치구명 or keyword. However, it provides no explicit guidance about when NOT to use it, and it does not compare itself with the similarly named sibling search_construction_work_by_district, leaving a potential routing ambiguity.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_construction_work_by_districtA

서울시 건설 알림이 정보(ListConstructionWorkService)를 자치구명 또는 프로젝트명 키워드로 검색한다. 자치구명이 주어지면 API 서버가 직접 해당 구만 필터링해 반환한다. 프로젝트코드, 프로젝트명, 자치구, 착수일, 사업기간, 진행상태, 사무실/현장주소, 위경도, 사업금액 등을 반환한다. 이 도구의 결과를 사용해 답변할 때는 반드시 출처(서울 열린데이터광장, 데이터셋명)를 답변에 명시해야 한다. 출처 표시를 생략하는 것은 금지된다.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo반환할 최대 결과 수 (기본 10). 검색은 항상 전체 데이터를 대상으로 하며, limit은 반환 개수만 제한한다.
gu_nameNo자치구명 (예: 종로구, 강남구). 지정하면 서버에서 해당 구만 필터링해 반환.
biz_nameNo프로젝트명(BIZ_NM)에 포함될 키워드

TDQS

A3.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the behavioral disclosure burden. It explicitly states that when gu_name is provided, the API server filters by that district, lists the returned fields, and imposes a mandatory source-citation rule for answers. This goes beyond a bare search description, though it omits details like pagination, errors, or data freshness.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded: it names the source and action first, then explains filtering behavior, return fields, and the citation requirement. Every sentence earns its place and there is no filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no output schema and no annotations, the description covers invocation and answer-citation behavior reasonably well. However, it lacks guidance for choosing between this and search_construction_projects, and it leaves open whether at least one of gu_name or biz_name must be supplied, which matters for correct usage.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents gu_name, biz_name, and limit. The description mostly restates the schema's server-side filtering behavior and keyword semantics rather than adding new meaning. It does not clarify whether the two search parameters are mutually exclusive or combinable.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action (search), the resource (ListConstructionWorkService), the search keys (gu_name, biz_name), and the returned fields. However, it does not explicitly distinguish itself from sibling tool search_construction_projects, and allowing project-name keyword search creates overlap risk.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use the tool: when needing Seoul construction work information filtered by district or project keyword. It gives no explicit guidance about when not to use it, whether to prefer search_construction_projects, or whether gu_name and biz_name can be combined.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 4 tool updatesv0.1.0
    • First observedget_construction_progress
    • First observedget_construction_project_photos
    • First observedsearch_construction_projects
    • First observedsearch_construction_work_by_district

TDQS

A3.6/5.0

Scored across 4 tools

Disambiguation2/5

The two search tools—search_construction_projects and search_construction_work_by_district—both accept district or keyword searches and return overlapping project metadata, so an agent can easily select the wrong one. get_construction_project_photos and get_construction_progress are distinct, but the boundary between the two search tools is unclear.

Naming Consistency4/5

Tool names follow a consistent snake_case verb_noun pattern using search_ and get_ prefixes. Minor inconsistency exists because one tool uses 'work' instead of 'projects' and get_construction_progress is actually a search operation, but the overall pattern remains readable and predictable.

Tool Count4/5

Four tools is a reasonable size for a read-only construction information server. The set is not bloated, though one of the two overlapping search tools could arguably be eliminated.

Completeness4/5

The tool surface covers the core read-only needs: finding projects, viewing progress, and retrieving photos. It lacks a direct project-code lookup or document/notice retrieval, but agents can work around those gaps using the existing keyword searches.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    A
    maintenance
    MCP server that wraps the Korean government's '나라장터 사전규격정보서비스' API, enabling natural language search and retrieval of public procurement pre-specifications through simplified tools.
    5
    45 npm
    MIT
  • F
    license
    Not graded
    quality
    B
    maintenance
    MCP server for searching and recommending Korean public resources (rooms, facilities, parking, etc.) using a static snapshot of the eShare OPEN API, with read-only tools for filtered search, detail, recommendation, and filter options.
    1
    -
  • F
    license
    Not graded
    quality
    A
    maintenance
    Personal job posting management MCP server that fetches job postings from multiple Korean job sites and stores them for LLM analysis, enabling timeline tracking and cover letter draft management.
    1
    -