Naver MCP Server
A server implementation for Naver OpenAPI using the Model Context Protocol (MCP). This project provides tools to interact with various Naver services, such as searching blogs, news, books, and more.
Quick Overview
Installation
1# Clone the repository 2git clone https://github.com/pfldy2850/py-mcp-naver.git 3 4# Navigate into the project directory 5cd py-mcp-naver 6 7# Synchronize dependencies 8uv sync --dev --all-extras
Pre-requisite
To use the Naver MCP server, you need to apply for access to the Naver Open API. You can apply for Open API access at the link below:
https://developers.naver.com/apps/#/register=datalab
Run
Run it with:
1# Start the server (Using FastMCP CLI) 2fastmcp install src/server.py -e NAVER_CLIENT_ID=<YOUR NAVER CLIENT ID> -e NAVER_CLIENT_SECRET=<YOUR NAVER CLIENT SECRET>
The tool sets up everything you need to create an MCP server integrated with Naver OpenAPI.
Features
This server provides the following tools for interacting with Naver OpenAPI:
- Blog Search: Search blog posts on Naver.
- News Search: Search news articles on Naver.
- Book Search: Search books and advanced book information.
- Adult Content Check: Check if a search term is adult content.
- Encyclopedia Search: Search encyclopedia entries.
- Cafe Article Search: Search articles in Naver cafes.
- Q&A Search: Search questions and answers on Naver.
- Local Search: Search local information.
- Spelling Correction: Correct spelling errors in text.
- Web Search: Search web pages.
- Image Search: Search images with filters.
- Shopping Search: Search shopping items with filters.
- Document Search: Search documents.
Naver MCP Tools
The following tools are implemented in the server:
Blog Search
Search blog posts on Naver.
1search_blog(query: str, display: int = 10, start: int = 1, sort: str = "sim")
News Search
Search news articles on Naver.
1search_news(query: str, display: int = 10, start: int = 1, sort: str = "sim")
Book Search
Search books on Naver.
1search_book(query: str, display: int = 10, start: int = 1, sort: str = "sim")
Advanced Book Search
Get detailed book information using title or ISBN.
1get_book_adv(query: str = None, d_titl: str = None, d_isbn: str = None, ...)
Adult Content Check
Check if a search term is adult content.
1adult_check(query: str)
Encyclopedia Search
Search encyclopedia entries on Naver.
1search_encyc(query: str, display: int = 10, start: int = 1)
Cafe Article Search
Search articles in Naver cafes.
1search_cafe_article(query: str, display: int = 10, start: int = 1, sort: str = "sim")
Q&A Search
Search questions and answers on Naver.
1search_kin(query: str, display: int = 10, start: int = 1, sort: str = "sim")
Local Search
Search local information on Naver.
1search_local(query: str, display: int = 10, start: int = 1, sort: str = "random")
Spelling Correction
Correct spelling errors in a given text.
1fix_spelling(query: str)
Web Search
Search web pages on Naver.
1search_webkr(query: str, display: int = 10, start: int = 1)
Image Search
Search images on Naver with filters.
1search_image(query: str, display: int = 10, start: int = 1, sort: str = "sim", filter: str = "all")
Shopping Search
Search shopping items on Naver with filters.
1search_shop(query: str, display: int = 10, start: int = 1, sort: str = "sim", filter: str = None, exclude: str = None)
Document Search
Search documents on Naver.
1search_doc(query: str, display: int = 10, start: int = 1)
License
This project is open source software licensed as MIT.