MCP KIPRIS는 KIPRIS(韩国特许信息院)API를 활용한 특허 검색 도구입니다. 이 도구를 통해 한국 및 해외 특허를 다양한 조건으로 검색할 수 있습니다.
MCP KIPRIS를 사용하기 위해서는 먼저 환경 설정을 진행한 후 서버를 실행해야 합니다.
export KIPRIS_API_KEY=your_api_key_here
python3 server.py
需要设置 KIPRIS API 使用的认证密钥。
export KIPRIS_API_KEY=your_api_key_here
python3 server.py
以下是使用韩国专利检索工具的示例:
# 假设这里有调用韩国专利检索工具的代码
# 例如使用 'patent_applicant_search' 工具进行申请人检索
# 代码保持原始状态,这里仅为示例
# result = patent_applicant_search('applicant_name')
以下是使用海外专利检索工具的示例:
# 假设这里有调用海外专利检索工具的代码
# 例如使用 'foreign_patent_international_application_number_search' 工具进行国际申请号检索
# 代码保持原始状态,这里仅为示例
# result = foreign_patent_international_application_number_search('international_application_number')
韩国专利检索:
patent_applicant_search:以申请人为基准进行检索patent_keyword_search:以关键词为基准进行检索patent_application_number_search:以申请号进行检索patent_righter_search:以权利人信息为基准进行检索patent_summary_search:查询摘要信息patent_detail_search:查询详细信息海外专利检索:
foreign_patent_applicant_search:以海外申请人为基准进行检索foreign_patent_application_number_search:以海外申请号进行检索foreign_patent_free_search:以自由文本进行检索foreign_patent_international_application_number_search:以国际申请号进行检索foreign_patent_international_open_number_search:以国际公开号进行检索所有 API 响应均以 JSON 格式返回,结构如下:
[
{
"type": "text",
"text": "검색 결과 텍스트",
"metadata": null
}
]
服务器默认提供 DEBUG 级别的日志记录。可以在日志中查看以下信息:
本项目采用 MIT 许可证。
暂未发现具体的技术实现细节相关内容,故跳过该章节。
git checkout -b feature/AmazingFeature)git commit -m 'Add some AmazingFeature')git push origin feature/AmazingFeature)