Serper MCP 서버
Serper를 통해 Google 검색을 제공하는 모델 컨텍스트 프로토콜 서버입니다. 이 서버를 통해 LLM은 Google에서 검색 결과 정보를 얻을 수 있습니다.
사용 가능한 도구
google_search- 모든 매개변수 설정google_search_images- 모든 매개변수 설정google_search_videos- 모든 매개변수 설정google_search_places- 모든 매개변수 설정google_search_maps- 모든 매개변수 설정google_search_reviews- 모든 매개변수 설정google_search_news- 모든 매개변수 설정google_search_shopping- 모든 매개변수 설정google_search_lens- 모든 매개변수 설정google_search_scholar- 모든 매개변수 설정google_search_parents- 모든 매개변수 설정google_search_autocomplete- 모든 매개변수 설정webpage_scrape- 모든 매개변수 설정
용법
Smithery를 통해 설치
Smithery를 통해 Claude Desktop용 Serper MCP Server를 자동으로 설치하려면:
지엑스피1
uv 사용(권장)
OS 시스템에
uv설치되어 있는지 확인하세요.MCP 클라이언트 코드 구성 또는 Claude 설정(
claude_desktop_config.json파일)에서serpermcp 서버를 추가합니다.{ "mcpServers": { "serper": { "command": "uvx", "args": ["serper-mcp-server"], "env": { "SERPER_API_KEY": "<Your Serper API key>" } } } }uvpypi.org 의uvx사용하여 자동으로 mcp 서버를 다운로드하고 MCP 클라이언트에 적용합니다.
프로젝트에 pip 사용
MCP 클라이언트 코드
requirements.txt파일에serper-mcp-server추가합니다.serper-mcp-server종속성을 설치합니다.
pip install -r requirements.txt클라이언트에 대한 구성을 추가합니다.
{ "mcpServers": { "serper": { "command": "python3", "args": ["-m", "serper_mcp_server"], "env": { "SERPER_API_KEY": "<Your Serper API key>" } } } }
글로벌 사용을 위해 pip 사용
pip또는pip3OS 시스템에 있는지 확인하세요.pip install serper-mcp-server # or pip3 install serper-mcp-serverMCP 클라이언트 코드 구성 또는 Claude 설정,
serpermcp 서버 추가:{ "mcpServers": { "serper": { "command": "python3", "args": ["serper-mcp-server"], "env": { "SERPER_API_KEY": "<Your Serper API key>" } } } }
디버깅
MCP 검사기를 사용하여 서버를 디버깅할 수 있습니다. uvx 설치의 경우:
또는 특정 디렉토리에 패키지를 설치했거나 해당 디렉토리에서 개발 중인 경우:
특허
serper-mcp-server는 MIT 라이선스에 따라 라이선스가 부여됩니다. 즉, MIT 라이선스의 조건에 따라 소프트웨어를 자유롭게 사용, 수정 및 배포할 수 있습니다. 자세한 내용은 프로젝트 저장소의 LICENSE 파일을 참조하세요.
Related MCP Servers
- AsecurityAlicenseAqualityA Model Context Protocol server that enables LLMs to perform web searches using Google's Custom Search API through a standardized interface.Last updated -37MIT License
- Asecurity-licenseAqualityA Model Context Protocol server that provides web search capabilities using Google Custom Search API and webpage content extraction functionality.Last updated -241
- AsecurityAlicenseAqualityA Model Context Protocol server that enables LLM clients like VSCode, Copilot, and Claude Desktop to search the web using Google Programmable Search Engine API.Last updated -1207Apache 2.0
- -security-license-qualityA Model Context Protocol server that enables LLMs to perform web searches using Google's Gemini API and return synthesized responses with citations.Last updated -47MIT License