Skip to main content
Glama

Web Search MCP Server

by williamvd4

웹 검색 MCP 서버

API 키가 필요 없이 Google 검색 결과를 사용하여 무료 웹 검색을 구현하는 MCP(Model Context Protocol) 서버입니다.

특징

  • Google 검색 결과를 사용하여 웹 검색
  • API 키나 인증이 필요하지 않습니다
  • 제목, URL 및 설명이 포함된 구조화된 결과를 반환합니다.
  • 검색당 구성 가능한 결과 수

설치

  1. 이 저장소를 복제하거나 다운로드하세요
  2. 종속성 설치:

지엑스피1

  1. 서버를 빌드하세요:
npm run build
  1. MCP 구성에 서버를 추가합니다.

VSCode(Claude Dev Extension)의 경우:

{ "mcpServers": { "web-search": { "command": "node", "args": ["/path/to/web-search/build/index.js"] } } }

Claude Desktop의 경우:

{ "mcpServers": { "web-search": { "command": "node", "args": ["/path/to/web-search/build/index.js"] } } }

용법

서버는 다음 매개변수를 허용하는 search 이라는 단일 도구를 제공합니다.

{ "query": string, // The search query "limit": number // Optional: Number of results to return (default: 5, max: 10) }

사용 예:

use_mcp_tool({ server_name: "web-search", tool_name: "search", arguments: { query: "your search query", limit: 3 // optional } })

응답 예시:

[ { "title": "Example Search Result", "url": "https://example.com", "description": "Description of the search result..." } ]

제한 사항

이 도구는 Google 검색 결과의 웹 스크래핑을 사용하므로 알아야 할 몇 가지 중요한 제한 사항이 있습니다.

  1. 속도 제한 : Google은 짧은 시간 내에 너무 많은 검색이 수행될 경우 요청을 일시적으로 차단할 수 있습니다. 이를 방지하려면 다음을 수행하세요.
    • 검색 빈도를 적정 수준으로 유지하세요
    • 제한 매개변수를 신중하게 사용하세요
    • 필요한 경우 검색 사이에 지연을 구현하는 것을 고려하세요.
  2. 결과 정확도 :
    • 이 도구는 Google의 HTML 구조에 의존하며 이는 변경될 수 있습니다.
    • 일부 결과에는 설명이나 기타 메타데이터가 누락되었을 수 있습니다.
    • 복잡한 검색 연산자는 예상대로 작동하지 않을 수 있습니다.
  3. 법적 고려 사항 :
    • 이 도구는 개인용으로 사용됩니다.
    • Google 서비스 약관을 준수하세요
    • 사용 사례에 적합한 속도 제한을 구현하는 것을 고려하세요.

기여하다

문제점과 개선 요청을 자유롭게 제출하세요!

-
security - not tested
-
license - not tested
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

API 키가 필요 없이 Google 검색 결과를 사용하여 무료 웹 검색을 지원하고 제목, URL, 설명이 포함된 구조화된 결과를 반환합니다.

  1. 특징
    1. 설치
      1. 용법
        1. 제한 사항
          1. 기여하다

            Related MCP Servers

            • A
              security
              A
              license
              A
              quality
              Integrates Tavily's search API with LLMs to provide advanced web search capabilities, including intelligent result summaries, domain filtering for quality control, and configurable search parameters.
              Last updated -
              3
              64
              9
              JavaScript
              MIT License
              • Linux
            • A
              security
              A
              license
              A
              quality
              Enables search capabilities using a Google Custom Search Engine, allowing users to input a search term and retrieve search result titles, links, and snippets, while facilitating integration with other tools for content extraction and advanced search strategies.
              Last updated -
              1
              13
              Python
              The Unlicense
            • A
              security
              A
              license
              A
              quality
              Provides web search capabilities using Google Custom Search API, enabling users to perform searches through a Model Context Protocol server.
              Last updated -
              2
              1,030
              23
              JavaScript
              MIT License
              • Apple
            • -
              security
              A
              license
              -
              quality
              Provides AI-powered web search capabilities using Tavily's search API, enabling LLMs to perform sophisticated web searches, get direct answers to questions, and search recent news articles.
              Last updated -
              53
              Python
              MIT License
              • Linux
              • Apple

            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/williamvd4/web-search'

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