나라장터 입찰 MCP
나라장터 입찰공고·사전규격·낙찰정보 검색. Korean public procurement bids via KONEPS open API.
Should I use this
Quality & Safety
Findings (3)
- LOWin search_bids
- LOWin search_pre_specs
- LOWin analyze_history
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"kr-public-mcp": {
"url": "https://kr-public-mcp.songdonghyeon01.workers.dev/mcp"
}
}
}Remote endpoints
https://kr-public-mcp.songdonghyeon01.workers.dev/mcpstreamable-httpWhat it can do
Tool inventory
Tools (5)
🟢search_bids(keyword, from_date, to_date, category, region, ...)
나라장터 입찰공고를 검색한다. 공고명·기관 키워드, 기간, 업무구분(공사/용역/물품/외자), 지역, 추정가격 범위로 필터링. 수집된 공고만 검색된다(수집은 매시간). 반환: 공고번호, 공고명, 수요기관, 추정가격, 입찰마감일시, D-day, 원문 링크.
Input Schema
{
"type": "object",
"properties": {
"keyword": {
"description": "공고명·공고기관·수요기관 키워드",
"type": "string"
},
"from_date": {
"description": "공고일 시작 (YYYY-MM-DD)",
"type": "string"
},
"to_date": {
"description": "공고일 끝 (YYYY-MM-DD)",
"type": "string"
},
"category": {
"description": "cnstwk=공사, servc=용역, thng=물품, frgcpt=외자",
"type": "string",
"enum": [
"cnstwk",
"servc",
"thng",
"frgcpt"
]
},
"region": {
"description": "참가제한지역 키워드 (예: 서울, 경기)",
"type": "string"
},
"min_price": {
"description": "추정가격 하한 (원)",
"type": "number"
},
"max_price": {
"description": "추정가격 상한 (원)",
"type": "number"
},
"limit": {
"description": "최대 건수 (기본 20, 최대 100)",
"type": "number"
}
},
"$schema": "https://json-schema.org/draft/2020-12/schema"
}🟢get_bid_detail(bid_no, bid_seq)
입찰공고 상세 조회. 자격요건(면허·참가가능지역), 일정(공고·개찰·마감), 기초금액·추정가격, 계약방법, 첨부파일 링크, 변경 이력을 반환한다. search_bids 결과의 공고번호를 넣으면 된다.
Input Schema
{
"type": "object",
"properties": {
"bid_no": {
"type": "string",
"description": "입찰공고번호 (예: 20260912345)"
},
"bid_seq": {
"description": "공고차수 (기본 000)",
"type": "string"
}
},
"required": [
"bid_no"
],
"$schema": "https://json-schema.org/draft/2020-12/schema"
}🟢search_pre_specs(keyword, from_date, to_date, category, agency)
나라장터 사전규격(발주 전 규격 공개)을 검색한다. 본공고 전 단계라 조기 발굴에 유용하다. 반환: 사전규격등록번호, 품명, 수요기관, 배정예산, 의견 마감일, 연결된 본공고 번호. Pro 전용.
Input Schema
{
"type": "object",
"properties": {
"keyword": {
"description": "품명·사업명 키워드",
"type": "string"
},
"from_date": {
"description": "등록일 시작 (YYYY-MM-DD)",
"type": "string"
},
"to_date": {
"description": "등록일 끝 (YYYY-MM-DD)",
"type": "string"
},
"category": {
"type": "string",
"enum": [
"cnstwk",
"servc",
"thng",
"frgcpt"
]
},
"agency": {
"description": "발주기관·수요기관 키워드",
"type": "string"
}
},
"$schema": "https://json-schema.org/draft/2020-12/schema"
}🟢analyze_history(agency, keyword, category, months)
과거 낙찰 결과를 기관·키워드·업무구분으로 집계한다. 낙찰률 분포(최소·평균·최대), 다빈도 낙찰업체, 평균 참가업체 수, 최근 낙찰 목록을 반환한다. Pro 전용.
Input Schema
{
"type": "object",
"properties": {
"agency": {
"description": "공고기관·수요기관 키워드",
"type": "string"
},
"keyword": {
"description": "공고명 키워드",
"type": "string"
},
"category": {
"type": "string",
"enum": [
"cnstwk",
"servc",
"thng",
"frgcpt"
]
},
"months": {
"description": "분석 기간 (개월, 기본 12)",
"type": "number"
}
},
"$schema": "https://json-schema.org/draft/2020-12/schema"
}⚪watch_bids(action, watch_id, label, email, keyword, ...)
입찰 알림 조건을 관리한다. add로 조건+이메일 저장, list로 조건 확인, remove로 삭제, matches로 최근 매칭 공고 조회. 저장된 조건은 매일 08:00 KST에 신규 공고와 매칭해 이메일로 보낸다. Pro 전용.
Input Schema
{
"type": "object",
"properties": {
"action": {
"type": "string",
"enum": [
"add",
"list",
"remove",
"matches"
],
"description": "수행할 작업"
},
"watch_id": {
"description": "remove 시 대상 watch_id",
"type": "string"
},
"label": {
"description": "조건 별칭",
"type": "string"
},
"email": {
"description": "add 시 알림 받을 이메일",
"type": "string"
},
"keyword": {
"type": "string"
},
"category": {
"type": "string",
"enum": [
"cnstwk",
"servc",
"thng",
"frgcpt"
]
},
"region": {
"type": "string"
},
"min_price": {
"type": "number"
},
"max_price": {
"type": "number"
}
},
"required": [
"action"
],
"$schema": "https://json-schema.org/draft/2020-12/schema"
}Community
Evidence