- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Documented (README)
- !No description
claude mcp add litescrape -- npx -y litescrape-mcp-server{
"mcpServers": {
"litescrape": {
"command": "npx",
"args": ["-y", "litescrape-mcp-server"],
"env": {
"LITESCRAPE_API_KEY": "<litescrape_api_key>"
}
}
}
}LITESCRAPE_API_KEYResumen de MCP Servers
# Litescrape MCP Server
Google Search, Bing, DuckDuckGo and Google Maps results for any MCP client, free and without an API key. Add a key for Google AI Mode, Google AI Overview, Google Shopping and Google Reviews, and to lift every limit.
Results come straight from the search engines' own pages as structured JSON, through the [Litescrape API](https://litescrape.com). Links are real destinations, never redirects, and nothing is cached: every call runs fresh.
## Quick start
No account, no key, one line.
**Claude Code**
```
claude mcp add litescrape -- npx -y litescrape-mcp-server
```
**Cursor, Windsurf, Claude Desktop, Codex, Gemini CLI and most other clients** (`mcp.json`, `claude_desktop_config.json`, or the client's MCP settings)
```json
{
"mcpServers": {
"litescrape": {
"command": "npx",
"args": ["-y", "litescrape-mcp-server"]
}
}
}
```
**VS Code**
```
code --add-mcp '{"name":"litescrape","command":"npx","args":["-y","litescrape-mcp-server"]}'
```
**Codex CLI**
```
codex mcp add litescrape -- npx -y litescrape-mcp-server
```
**Gemini CLI**
```
gemini mcp add litescrape npx -y litescrape-mcp-server
```
Requires Node.js 20 or newer.
**Hosted, nothing to install**: clients that connect to remote servers can use `https://mcp.litescrape.com/mcp` instead. Same tools, same free allowance; send an API key as `Authorization: Bearer ls_live_...` to unlock the rest.
```
claude mcp add --transport http litescrape https://mcp.litescrape.com/mcp
```
## What you get without a key
| Tool | Returns | Free calls per network per UTC day |
| ------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------- |
| `search` | Google organic results in fast mode (title, link, snippet); shares the `google_search` allowance | 25 |
| `google_search` | The full Google results page: organic results, Knowledge Graph, AI Overview, ads, related questions and every other module Google served | 25 |
| `bing_search` | Bing organic results, answer boxes, Knowledge Graph, Copilot answer and more | 50 |
| `duckduckgo_search` | DuckDuckGo organic results with region, safety and date filters | 50 |
| `google_maps` | Google Maps places (name, address, rating, hours, phone, website, coordinates) or one exact place | 50 |
One call runs at a time per network, and failed calls never count. When a limit is reached, the tool result says so and tells the model exactly how to add a key, so the agent can relay it to you.
## Add an API key
A key unlocks `google_ai_mode`, `google_ai_overview`, `google_shopping` and `google_reviews`, removes the daily limits and allows concurrent calls. Get one at [litescrape.com](https://litescrape.com), then set `LITESCRAPE_API_KEY` in the server's environment:
```json
{
"mcpServers": {
"litescrape": {
"command": "npx",
"args": ["-y", "litescrape-mcp-server"],
"env": {
"LITESCRAPE_API_KEY": "ls_live_..."
}
}
}
}
```
With Claude Code: `claude mcp add litescrape -e LITESCRAPE_API_KEY=ls_live_... -- npx -y litescrape-mcp-server`
With the hosted endpoint: `claude mcp add --transport http litescrape https://mcp.litescrape.com/mcp --header "Authorization: Bearer ls_live_..."`
## Tools
| Tool | Key needed | What it does |
| -------------------- | ---------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `search` | No | Web search through Google, organic results only. Parameters: `q`, `gl`, `hl`, `location`, `num`, `start` |
| `google_search` | No | Full Google Search page. Localization (`gl`, `hl`, `location`, `uule`, `lat`/`lon`), verticals (`tbm`: news, videos, local, shopping, patents), date filters (`tbs`, `as_qdr`), site restriction (`as_sitesearch`), pagination (`start`, `num`), `device`, `fast_mode` |
| `bing_search` | No | Bing web search with `mkt`/`cc`, `location`, `lat`/`lon`, `first`, `safeSearch`, `filters`, `device` |
| `duckduckgo_search` | No | DuckDuckGo web search with `kl`, `safe`, `df`, `start`, `m` |
| `google_maps` | No | Places by query inside a viewport (`ll`, `location`, `lat`/`lon` with `z` or `m`) with price, rating and opening-hours filters, or one exact place by `place_id`, `data_cid` or `data` |
| `google_ai_overview` | Yes | Only the AI Overview for a Google search, or `null` when Google shows none |
| `google_ai_mode` | Yes | Google AI Mode's generated answer with its cited sources; `continuable` returns a follow-up token, `image_url` adds a picture to the question |
| `google_shopping` | Yes | The Google Shopping product grid, category blocks, sponsored listings and refinement chips; price, sale, shipping and small-business refinements, `sort_by`, pagination |
| `google_reviews` | Yes | The Google Maps reviews of one place by `place_id` or `data_id` (from a `google_maps` result) with `place_info`; `sort_by`, `topic_id` or `query` filters, `num`, and `next_page_token` for the next page |
Parameter names and accepted values follow the [Litescrape API reference](https://litescrape.com/docs).
Every tool accepts `result_groups`, a list of top-level groups to keep (for example `["organic_results", "knowledge_graph"]`) so the model's context stays small. `search_metadata` is always included.
## Results
A tool result is one text block: a one-line summary, a blank line, then the API's JSON response unchanged.
```
Google Search for "espresso machine": 10 organic results; also knowledge_graph, related_questions, ai_overview. Free allowance: 24 of 25 google_search calls left today (no API key set).
{"search_metadata":{...},"search_parameters":{...},"organic_results":[...],...}
```
The same JSON is also returned as `structuredContent` for clients that read it.
## Limits and errors
| What happened | Tool result |
| ---------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
| Daily allowance for that tool is used up | Error text naming the tool and the limit, when it resets (00:00 UTC), and how to add a key |
| A keyless call is already in flight | The server waits for the API's `Retry-After` (a few seconds) and retries up to twice before reporting the limit |
| A key-only tool was called without a key | Error text naming the tool and the free alternatives, and how to add a key; no request is made |
| The upstream page could not be fetched | Error text with the API's `error_code`, HTTP status and `request_id`; retryable failures are retried twice, and failed calls are not charged |
| Invalid arguments | Rejected by the tool schema before any request |
Requests time out after 120 seconds by default (the API's own deadline is 90 seconds). AI Mode is the slowest tool.
## Configuration
| Environment variable | Default | Meaning |
| ----------------------- | ---------------------------- | -------------------------------------------------- |
| `LITESCRAPE_API_KEY` | unset | Bearer key; unset means the free keyless allowance |
| `LITESCRAPE_API_URL` | `https://api.litescrape.com` | API origin, for self-hosted or staging deployments |
| `LITESCRAPE_TIMEOUT_MS` | `120000` | Per-request timeout in milliseconds Lo que la gente pregunta sobre litescrape-mcp-server
¿Qué es litescrape/litescrape-mcp-server?
+
litescrape/litescrape-mcp-server es mcp servers para el ecosistema de Claude AI con 0 estrellas en GitHub.
¿Cómo se instala litescrape-mcp-server?
+
Puedes instalar litescrape-mcp-server clonando el repositorio (https://github.com/litescrape/litescrape-mcp-server) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar litescrape/litescrape-mcp-server?
+
Nuestro agente de seguridad ha analizado litescrape/litescrape-mcp-server y le ha asignado un Trust Score de 77/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene litescrape/litescrape-mcp-server?
+
litescrape/litescrape-mcp-server es mantenido por litescrape. La última actividad registrada en GitHub es del 2026-09-15, con 0 issues abiertos.
¿Hay alternativas a litescrape-mcp-server?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega litescrape-mcp-server en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/litescrape-litescrape-mcp-server)<a href="https://claudewave.com/repo/litescrape-litescrape-mcp-server"><img src="https://claudewave.com/api/badge/litescrape-litescrape-mcp-server" alt="Featured on ClaudeWave: litescrape/litescrape-mcp-server" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ
The fastest path to AI-powered full stack observability, even for lean teams.