llm-search

mcphub-com/llm-search

3.5

llm-search is hosted online, so all tools can be tested directly either in theInspector tabor in theOnline Client.

If you are the rightful owner of llm-search and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

This MCP server provides a robust web search tool called llm_search, designed for advanced internet searches with optional content crawling.

Try llm-search with chat:

Server config via mcphub

Tools
2
Resources
0
Prompts
0

🚀 Tool Overview

This is an MCP server that exposes a single powerful web search tool: llm_search. It enables advanced internet searches with optional content crawling to retrieve full-page content in markdown format.

✨ Features

🔎 Full support for Google-style search operators (e.g., inurl:, site:, intitle:)

🌍 Location-specific search simulation

📄 Optional full-page crawling for markdown-formatted content

🛠️ Tool Parameters

query: The search query string. You can use typical Google search syntax like site:, inurl:, or intitle:. Supports advanced filters like as_dt, as_eq, etc.

location: Simulate a search from a specific geographic location (preferably at the city level).

start: Number of results to skip (used for pagination). 0 is the first page, 10 is the second, etc.

crawl: If true, crawls the linked pages and returns content in markdown. Adds latency and may skip pages that timeout.

📦 Response Format

{
  "answer_box": { ... },
  "organic_results": [
    {
      "title": "...",
      "link": "...",
      "snippet": "...",
      "text_content": "..." // if crawl = true
    },
    ...
  ]
}