Naver Search MCP Server
Naver 搜索 MCP 服务器
该 MCP(多平台通信协议)服务器提供对 Naver 搜索 API 的访问,允许 AI 代理在 Naver 上搜索各种类型的内容。
概述
搜索博客、新闻、书籍、图片、购物商品等
支持分页的多个搜索类别
针对 LLM 使用进行了优化的结构化文本响应
检查成人内容
转换键盘输入错误(勘误表)
Related MCP server: KiMCP
目录
设置
先决条件
Python 3.12+
Naver 开发者 API 凭证
您可以通过在Naver Developers门户上注册来获取这些凭证。
您也可以查看我的博客Naver Search API MCP Server 。
安装
克隆存储库:
git clone https://github.com/jikime/py-mcp-naver-search.git
cd py-mcp-naver-search紫外线安装
curl -LsSf https://astral.sh/uv/install.sh | sh创建虚拟环境并安装依赖项:
uv venv -p 3.12
source .venv/bin/activate
pip install -r requirements.txt使用您的 Naver API 凭据创建一个
.env文件:
cp env.example .env
vi .env
NAVER_CLIENT_ID=your_client_id_here
NAVER_CLIENT_SECRET=your_client_secret_here使用 Docker
构建 Docker 镜像:
docker build -t py-mcp-naver-search .运行容器:
docker run py-mcp-naver-search使用本地
运行服务器:
mcp run server.py配置 MCP 设置
将服务器配置添加到您的 MCP 设置文件:
克劳德桌面应用程序
要通过Smithery自动安装:
npx -y @smithery/cli install @jikime/py-mcp-naver-search --client claude要手动安装,请打开
~/Library/Application Support/Claude/claude_desktop_config.json
将其添加到mcpServers对象:
{
"mcpServers": {
"Google Toolbox": {
"command": "/path/to/bin/uv",
"args": [
"--directory",
"/path/to/py-mcp-naver-search",
"run",
"server.py"
]
}
}
}游标 IDE
打开~/.cursor/mcp.json
将其添加到mcpServers对象:
{
"mcpServers": {
"Google Toolbox": {
"command": "/path/to/bin/uv",
"args": [
"--directory",
"/path/to/py-mcp-naver-search",
"run",
"server.py"
]
}
}
}对于 Docker
{
"mcpServers": {
"Google Toolbox": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"py-mcp-naver-search"
]
}
}
}使用客户端
该存储库包含用于测试的客户端脚本:
# Basic search
uv run client.py blog "Python programming" display=5 page=1
# News search with sorting
uv run client.py news "AI" display=10 page=1 sort=date
# Image search with filtering
uv run client.py image "cat" display=10 filter=large
# Check for adult content
uv run client.py adult "your query"
# Errata correction
uv run client.py errata "spdlqj"可用的搜索类别
服务器支持以下搜索类别:
blog- 博客文章news- 新闻文章book- 书籍adult- 成人内容检查encyc百科全书条目cafe_article- 咖啡馆文章kin- 问答知识local- 本地商业信息errata- 键盘输入错误修正shop- 购物商品doc- 学术论文和文件image- 图片webkr——Web 文档
API 参考
工具
搜索博客
search_blog(query: str, display: int = 10, page: int = 1, sort: str = "sim") -> str使用给定的关键字在 Naver 上搜索博客。
搜索新闻
search_news(query: str, display: int = 10, page: int = 1, sort: str = "sim") -> str使用给定的关键字在 Naver 上搜索新闻。
搜索图书
search_book(query: str, display: int = 10, page: int = 1, sort: str = "sim") -> str使用给定的关键字在 Naver 上搜索书籍信息。
检查成人查询
check_adult_query(query: str) -> str确定输入查询是否是成人搜索词。
搜索百科全书
search_encyclopedia(query: str, display: int = 10, page: int = 1, sort: str = "sim") -> str使用给定的关键字在 Naver 上搜索百科全书信息。
搜索咖啡馆文章
search_cafe_article(query: str, display: int = 10, page: int = 1, sort: str = "sim") -> str使用给定的关键字在 Naver 上搜索咖啡馆文章。
搜索知识
search_kin(query: str, display: int = 10, page: int = 1, sort: str = "sim") -> str使用给定的关键字在 Naver 上搜索知识问答。
搜索本地
search_local(query: str, display: int = 5, page: int = 1, sort: str = "random") -> str使用给定的关键字搜索本地商业信息。
更正勘误表
correct_errata(query: str) -> str转换韩语/英语键盘输入错误。
搜索商店
search_shop(query: str, display: int = 10, page: int = 1, sort: str = "sim") -> str使用给定的关键字在 Naver 上搜索购物产品信息。
搜索文档
search_doc(query: str, display: int = 10, page: int = 1) -> str使用给定的关键字搜索学术论文、报告等。
搜索图片
search_image(query: str, display: int = 10, page: int = 1, sort: str = "sim", filter: str = "all") -> str使用给定的关键字搜索图像。
搜索网络文档
search_webkr(query: str, display: int = 10, page: int = 1) -> str使用给定的关键字搜索网络文档。
资源
可用的搜索类别
GET http://localhost:8000/available-search-categories返回此 MCP 服务器上可用的 Naver 搜索类别列表。
响应格式
所有工具都以结构化文本格式返回响应,并针对 LLM 处理进行了优化:
Naver Blog search results (total 12,345 of 1~10):
### Result 1
Title(title): Sample Blog Post
Link(link): https://blog.example.com/post1
Description(description): This is a sample blog post about...
Blogger name(bloggername): John Doe
Blogger link(bloggerlink): https://blog.example.com
Post date(postdate): 20250429
### Result 2
...致谢
执照
该项目根据 MIT 许可证获得许可 - 有关详细信息,请参阅 LICENSE 文件。
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityDmaintenanceProvides AI tools with access to real-time web search, automated code reviews, and detailed Korean business information through the AgentSkills API. It enables users to perform structured searches, analyze code for security and performance, and retrieve Korean company financial data.3
- AlicenseNot gradedqualityDmaintenanceIntegrates Korean APIs (Naver, Kakao, TMAP) into LLM applications for search, maps, and directions.10MIT
- AlicenseNot gradedqualityCmaintenanceKorean-aware Google search and place discovery server using Serper API. Features include web search, Naver blog/cafe search, and a unique discover_places tool that generates queries from Korean area and category to extract place names.MIT
- FlicenseNot gradedqualityDmaintenanceEnables searching and retrieving Korean laws, precedents, and administrative rules through the National Law Information Center Open API, optimized for AI agents.
Related MCP Connectors
The best web search for your AI Agent
Web search, page extraction and structured commerce, social and business data for AI agents
LLM-ready web search + instant answers + URL-to-clean-text fetch for agents and RAG.
Appeared in Searches
- Naver - Korean Search Engine and Web Portal
- A platform for analyzing crypto narratives based on macroeconomic events and cultural trends
- A tool for analyzing Indian stock data for investment decisions using LLMs and news insights
- A server for finding academic papers, reading summaries, and tracking latest publications
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/jikime/py-mcp-naver-search'
If you have feedback or need assistance with the MCP directory API, please join our Discord server