search_business_information
Retrieve business information for a specific company, including overview, products, production, sales, risk management, contracts, and R&D activities, based on defined parameters like company name, date range, and information type.
Instructions
회사의 사업 관련 현황 정보를 제공하는 도구
Args:
company_name: 회사명 (예: 삼성전자, 네이버 등)
start_date: 시작일 (YYYYMMDD 형식, 예: 20230101)
end_date: 종료일 (YYYYMMDD 형식, 예: 20231231)
information_type: 조회할 정보 유형
'사업의 개요' - 회사의 전반적인 사업 내용
'주요 제품 및 서비스' - 회사의 주요 제품과 서비스 정보
'원재료 및 생산설비' - 원재료 조달 및 생산 설비 현황
'매출 및 수주상황' - 매출과 수주 현황 정보
'위험관리 및 파생거래' - 리스크 관리 방안 및 파생상품 거래 정보
'주요계약 및 연구개발활동' - 주요 계약 현황 및 R&D 활동
'기타 참고사항' - 기타 사업 관련 참고 정보
ctx: MCP Context 객체
Returns:
요청한 정보 유형에 대한 해당 회사의 사업 정보 텍스트
Input Schema
Name | Required | Description | Default |
---|---|---|---|
company_name | Yes | ||
end_date | Yes | ||
information_type | Yes | ||
start_date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"company_name": {
"title": "Company Name",
"type": "string"
},
"end_date": {
"title": "End Date",
"type": "string"
},
"information_type": {
"title": "Information Type",
"type": "string"
},
"start_date": {
"title": "Start Date",
"type": "string"
}
},
"required": [
"company_name",
"start_date",
"end_date",
"information_type"
],
"title": "search_business_informationArguments",
"type": "object"
}