基本能力
产品定位
MCP KIPRIS 是一个专业的专利搜索工具,旨在通过 KIPRIS API 提供高效、准确的专利信息检索服务。
核心功能
- 韩国专利搜索
- 出愿人搜索(PatentApplicantSearchTool)
- 关键词搜索(PatentFreeSearchTool)
- 出愿号搜索(PatentApplicationNumberSearchTool)
- 权利人搜索(PatentRighterSearchTool)
- 专利详细信息搜索(PatentDetailSearchTool)
-
专利摘要信息搜索(PatentSummarySearchTool)
-
海外专利搜索
- 出愿人搜索(ForeignPatentApplicantSearchTool)
- 出愿号搜索(ForeignPatentApplicationNumberSearchTool)
- 关键词搜索(ForeignPatentFreeSearchTool)
- 国际出愿号搜索(ForeignPatentInternationalApplicationNumberSearchTool)
- 国际公开号搜索(ForeignPatentInternationalOpenNumberSearchTool)
适用场景
- 专利研究人员进行专利检索
- 企业进行专利监控和分析
- 法律专业人士进行专利侵权调查
工具列表
- 韩国专利搜索工具
patent_applicant_search
: 出愿人基准搜索patent_keyword_search
: 关键词基准搜索patent_search
: 出愿号搜索patent_righter_search
: 权利人基准搜索patent_application_number_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
: 国际公开号搜索
常见问题解答
- 需要设置 KIPRIS API 密钥才能使用服务
- 支持多种国家代码和排序选项
- 提供详细的专利状态代码说明
使用教程
使用依赖
-
设置 KIPRIS API 密钥
bash
export KIPRIS_API_KEY="your_api_key" -
安装依赖
bash
pip install -r requirements.txt
安装教程
- 确保 Python 3.12 或更高版本
- 创建并激活虚拟环境
```bash
python -m venv .venv
source .venv/bin/activate # Linux/Mac
或
.venv\Scripts\activate # Windows
```
- 安装项目
bash
pip install -e .
调试方式
-
HTTP 服务器模式
bash
python -m mcp_kipris.sse_server --http --port 6274 --host 0.0.0.0 -
stdio 服务器模式
bash
python -m mcp_kipris.server -
SSE 连接测试
bash
curl -N http://localhost:6274/messages/ -
工具列表查询
bash
curl http://localhost:6274/tools | jq . -
专利搜索示例(三星电子最近5件专利)
bash
curl -X POST "http://localhost:6274/messages/?session_id=<세션_ID>" \
-H "Content-Type: application/json" \
-d '{
"type": "tool",
"name": "patent_applicant_search",
"args": {
"applicant": "삼성전자",
"docs_count": 5,
"desc_sort": true
}
}'