search_drugs_by_name
Search for pharmaceutical drugs by name using the Korea Pharmaceutical Information Center database. Find basic drug information and identify similar medications for further detailed lookup.
Instructions
약학정보원에서 의약품 이름으로 대략적인 정보들을 가져옵니다. 이름이 유사한 의약품 여러개가 나올 수 있습니다. 더 자세한 정보가 필요하다면 get_drug_detail_by_id()로 조회해야 합니다.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
drugname | Yes | 검색할 의약품의 이름 (영문 또는 한글) |
Input Schema (JSON Schema)
{
"properties": {
"drugname": {
"description": "검색할 의약품의 이름 (영문 또는 한글)",
"type": "string"
}
},
"required": [
"drugname"
],
"type": "object"
}