Skip to content

Quick Start

Basic Usage

from webscout_mcp import WebScoutMCP

# Initialize the MCP server
server = WebScoutMCP()

# Search the web
results = server.search("web scraping with AI")
print(results)

MCP Client Configuration

Add to your MCP client configuration:

{
  "mcpServers": {
    "webscout": {
      "command": "python",
      "args": ["-m", "webscout_mcp"]
    }
  }
}