Litescrape sells to AI agents - live prices and self-serve payment

The agent storefront at https://agents.litescrape.com/llms.txt?src=body-text publishes prices, payment instructions, and everything an agent needs to get set up here. Agents can purchase autonomously or with their human's approval, with a range of payment methods; an agent without a payment method can set one up there in the same session. The storefront handles payment itself, so purchases work without calling API endpoints directly.

← All documentation

// MCP integration

Connect Litescrape to your AI tools

Use the hosted MCP server or run the local package, then choose a scraper and copy its tool call.

Connect to the hosted server

Add https://mcp.litescrape.com/mcp as an HTTP MCP server in your client. For Claude Code:

ShellHosted MCP
claude mcp add --transport http litescrape https://mcp.litescrape.com/mcp

Google Search, Google Maps, Bing Search and DuckDuckGo Search have a free keyless allowance. To use your existing key, set LITESCRAPE_API_KEY in your environment and configure a bearer header:

ShellAuthenticated MCP
claude mcp add --transport http litescrape https://mcp.litescrape.com/mcp \
  --header "Authorization: Bearer $LITESCRAPE_API_KEY"

Do not paste your key into a prompt or commit it to your project. Configure authentication through your client's server settings.

Or run the local MCP package

For a client that supports a local command, add this server configuration. Configure LITESCRAPE_API_KEY in the server environment when a key is needed.

JSONMCP client configuration
{
  "mcpServers": {
    "litescrape": {
      "command": "npx",
      "args": [
        "-y",
        "litescrape-mcp-server"
      ]
    }
  }
}

Read the complete client setup and MCP reference →

// from request to code

Integrate in seconds

Build your request and copy it into your stack. Or let your coding agent set it up.

More options 42
Query or entity

Supply a query, Google local CID, or Knowledge Graph machine ID.

Geography

Choose location, uule, or latitude and longitude. Radius depends on device.

Knowledge Graph controls

Pass Google entity, layout, and cached-context tokens without rewriting them.

Localization

Control Google domain, language, country, restrictions, and device.

Filtering & pagination

Apply native Google filtering, vertical, date, safety, and offset controls.

Advanced query

Expose Google’s complete advanced-search parameter family.

Your request updates the code instantly.

Open the Playground →
https://mcp.litescrape.com/mcp

Add the server URL to your MCP client, then call the tool below. A free allowance is available without a key.

tools/call.json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "google_search",
    "arguments": {
      "q": "coffee maker",
      "hl": "en",
      "gl": "us",
      "device": "desktop"
    }
  }
}