Skip to main content
Glama
ChangooLee

mcp-kr-g2b

by ChangooLee

get_bid_data

Query Korean public procurement bid announcements by selecting an operation and providing search parameters such as date range or bid number to retrieve matching records.

Instructions

[나라장터 입찰공고정보서비스] 조달청 나라장터 OpenAPI 조회 도구. operation 에 아래 오퍼레이션명(영문) 중 하나를 지정하고, params 에 해당 오퍼레이션의 조회조건을 dict 로 전달하세요. numOfRows/pageNo/type/serviceKey 는 자동 처리됩니다. 각 오퍼레이션의 정확한 파라미터/응답필드는 get_g2b_operation_info('bid', '') 로 확인하세요.

사용 가능한 오퍼레이션 (25개):

  • getBidPblancListInfoCnstwk: 입찰공고목록 정보에 대한 공사조회

  • getBidPblancListInfoServc: 입찰공고목록 정보에 대한 용역조회

  • getBidPblancListInfoFrgcpt: 입찰공고목록 정보에 대한 외자조회

  • getBidPblancListInfoThng: 입찰공고목록 정보에 대한 물품조회

  • getBidPblancListInfoThngBsisAmount: 입찰공고목록 정보에 대한 물품기초금액조회

  • getBidPblancListInfoCnstwkBsisAmount: 입찰공고목록 정보에 대한 공사기초금액조회

  • getBidPblancListInfoServcBsisAmount: 입찰공고목록 정보에 대한 용역기초금액조회

  • getBidPblancListInfoChgHstryThng: 입찰공고목록 정보에 대한 물품변경이력조회

  • getBidPblancListInfoChgHstryCnstwk: 입찰공고목록 정보에 대한 공사변경이력조회

  • getBidPblancListInfoChgHstryServc: 입찰공고목록 정보에 대한 용역변경이력조회

  • getBidPblancListInfoCnstwkPPSSrch: 나라장터검색조건에 의한 입찰공고공사조회

  • getBidPblancListInfoServcPPSSrch: 나라장터검색조건에 의한 입찰공고용역조회

  • getBidPblancListInfoFrgcptPPSSrch: 나라장터검색조건에 의한 입찰공고외자조회

  • getBidPblancListInfoThngPPSSrch: 나라장터검색조건에 의한 입찰공고물품조회

  • getBidPblancListInfoLicenseLimit: 입찰공고목록 정보에 대한 면허제한정보조회

  • getBidPblancListInfoPrtcptPsblRgn: 입찰공고목록 정보에 대한 참가가능지역정보조회

  • getBidPblancListInfoThngPurchsObjPrdct: 입찰공고목록 정보에 대한 물품 구매대상물품조회

  • getBidPblancListInfoServcPurchsObjPrdct: 입찰공고목록 정보에 대한 용역 구매대상물품조회

  • getBidPblancListInfoFrgcptPurchsObjPrdct: 입찰공고목록 정보에 대한 외자 구매대상물품조회

  • getBidPblancListInfoEorderAtchFileInfo: 입찰공고목록 정보에 대한 e발주 첨부파일정보조회

  • getBidPblancListInfoEtc: 입찰공고목록 정보에 대한 기타공고조회

  • getBidPblancListInfoEtcPPSSrch: 나라장터검색조건에 의한 입찰공고 기타조회

  • getBidPblancListPPIFnlRfpIssAtchFileInfo: 입찰공고목록 정보에 대한 혁신장터 최종제안요청서 교부 첨부파일정보조회

  • getBidPblancListBidPrceCalclAInfo: 입찰공고목록 정보에 대한 입찰가격산식A정보조회

  • getBidPblancListEvaluationIndstrytyMfrcInfo: 입찰공고목록 정보에 대한 평가대상주력분야 조회

자주 쓰는 조회조건: inqryDiv(조회구분 코드, 보통 1=등록/공고일시), inqryBgnDt/inqryEndDt(YYYYMMDDHHMM 조회기간), bidNtceNo(입찰공고번호), dminsttNm(수요기관명), indstrytyNm(업종명), prdctClsfcNo(품목분류번호) 등. ⚠️ 날짜 기반 조회(inqryBgnDt/inqryEndDt 등)는 보통 한 번에 1개월 이내 범위만 허용됩니다. 기간이 길면 월 단위로 나눠 호출하세요. 'PPSSrch' 오퍼레이션은 bidNtceNm(공고명 일부)/indstrytyNm/추정가격 범위 등 상세 검색조건을 지원합니다.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
operationYes오퍼레이션명(영문). 예: getBidPblancListInfoCnstwk (입찰공고목록 정보에 대한 공사조회)
paramsNo오퍼레이션별 조회조건 dict (예: inqryDiv, inqryBgnDt, inqryEndDt, bidNtceNo 등). 정확한 키는 get_g2b_operation_info 로 확인
fetch_allNoTrue 면 totalCount 까지 전체 페이지 수집, False 면 단일 페이지
num_of_rowsNo페이지당 결과 수(기본 500, 최대 999. 대량수집 시 요청수↓)
page_noNo페이지 번호. 지정하면 해당 페이지만 단건 조회
Behavior4/5

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

No annotations are provided, so the description must disclose behavioral traits. It explains that the tool is a query interface to an external API, automatically handles common parameters (numOfRows, pageNo, type, serviceKey), and notes date range restrictions. It does not explicitly state it is read-only, but the query nature is evident. A more explicit statement about side effects would raise the score.

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 appropriately sized for a complex tool with 25 operations. It is well-structured: purpose overview, operation list, common parameters, and a warning. Every sentence adds necessary information, and the most critical guidance (how to use operations and params) is front-loaded.

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?

Given the complexity (25 operations, no output schema), the description provides a good starting point. It explains how to set up queries and points to another tool for detailed parameter/response info. It lacks explicit error handling or rate limit information, but the core usage is well-covered.

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

Parameters5/5

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

The input schema covers all 5 parameters with descriptions. The description adds significant value by listing all 25 possible 'operation' values, giving common query condition keys (inqryDiv, inqryBgnDt, etc.), and providing a crucial warning about 1-month date range limits. It also directs users to another tool for exact parameter/response details, compensating for the lack of param enums.

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 clearly states it's a tool for querying the Korea Public Procurement Service (나라장터) OpenAPI for bid announcements. It lists all 25 specific operations, distinguishing it from sibling tools that handle other data types (contracts, industry, etc.). The verb 'get' and resource 'bid_data' are well-defined.

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

Usage Guidelines5/5

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

It provides explicit guidance on how to use the tool: specify an operation in the 'operation' parameter and pass query conditions in 'params'. It warns about date range limitations (1 month per call) and recommends using 'get_g2b_operation_info' for exact parameter details. Alternatives among siblings are implied by context (other get_*_data tools).

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

Install Server

Other Tools

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/ChangooLee/mcp-kr-g2b'

If you have feedback or need assistance with the MCP directory API, please join our Discord server