Skip to main content
Glama
by garylab

Serper MCP 서버

대장간 배지

Serper를 통해 Google 검색을 제공하는 모델 컨텍스트 프로토콜 서버입니다. 이 서버를 통해 LLM은 Google에서 검색 결과 정보를 얻을 수 있습니다.

사용 가능한 도구

용법

Smithery를 통해 설치

Smithery를 통해 Claude Desktop용 Serper MCP Server를 자동으로 설치하려면:

지엑스피1

uv 사용(권장)

  1. OS 시스템에 uv 설치되어 있는지 확인하세요.

  2. MCP 클라이언트 코드 구성 또는 Claude 설정( claude_desktop_config.json 파일)에서 serper mcp 서버를 추가합니다.

    { "mcpServers": { "serper": { "command": "uvx", "args": ["serper-mcp-server"], "env": { "SERPER_API_KEY": "<Your Serper API key>" } } } }

    uvpypi.orguvx 사용하여 자동으로 mcp 서버를 다운로드하고 MCP 클라이언트에 적용합니다.

프로젝트에 pip 사용

  1. MCP 클라이언트 코드 requirements.txt 파일에 serper-mcp-server 추가합니다.

    serper-mcp-server
  2. 종속성을 설치합니다.

    pip install -r requirements.txt
  3. 클라이언트에 대한 구성을 추가합니다.

    { "mcpServers": { "serper": { "command": "python3", "args": ["-m", "serper_mcp_server"], "env": { "SERPER_API_KEY": "<Your Serper API key>" } } } }

글로벌 사용을 위해 pip 사용

  1. pip 또는 pip3 OS 시스템에 있는지 확인하세요.

    pip install serper-mcp-server # or pip3 install serper-mcp-server
  2. MCP 클라이언트 코드 구성 또는 Claude 설정, serper mcp 서버 추가:

    { "mcpServers": { "serper": { "command": "python3", "args": ["serper-mcp-server"], "env": { "SERPER_API_KEY": "<Your Serper API key>" } } } }

디버깅

MCP 검사기를 사용하여 서버를 디버깅할 수 있습니다. uvx 설치의 경우:

npx @modelcontextprotocol/inspector uvx serper-mcp-server

또는 특정 디렉토리에 패키지를 설치했거나 해당 디렉토리에서 개발 중인 경우:

cd path/to/servers/src/serper npx @modelcontextprotocol/inspector uv run serper-mcp-server -e SERPER_API_KEY=<the key>

특허

serper-mcp-server는 MIT 라이선스에 따라 라이선스가 부여됩니다. 즉, MIT 라이선스의 조건에 따라 소프트웨어를 자유롭게 사용, 수정 및 배포할 수 있습니다. 자세한 내용은 프로젝트 저장소의 LICENSE 파일을 참조하세요.

Related MCP Servers

  • A
    security
    A
    license
    A
    quality
    A Model Context Protocol server that enables LLMs to perform web searches using Google's Custom Search API through a standardized interface.
    Last updated -
    37
    MIT License
  • A
    security
    -
    license
    A
    quality
    A Model Context Protocol server that provides web search capabilities using Google Custom Search API and webpage content extraction functionality.
    Last updated -
    2
    4
    1
    • Apple
  • A
    security
    A
    license
    A
    quality
    A 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 -
    1
    20
    7
    Apache 2.0
    • Apple
  • -
    security
    -
    license
    -
    quality
    A Model Context Protocol server that enables LLMs to perform web searches using Google's Gemini API and return synthesized responses with citations.
    Last updated -
    47
    MIT License

View all related MCP servers

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/garylab/serper-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server