Connect to the hosted server
Add https://mcp.litescrape.com/mcp as an HTTP MCP server in your client. For Claude Code:
claude mcp add --transport http litescrape https://mcp.litescrape.com/mcpGoogle 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:
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.
{
"mcpServers": {
"litescrape": {
"command": "npx",
"args": [
"-y",
"litescrape-mcp-server"
]
}
}
}