Back to stacks

Web Scraper

by Jonathan S

Full scraping toolkit: Puppeteer, Playwright, and Browserbase for headless automation at any scale.

Servers in this stack

browser
Puppeteer

Browser automation and web scraping with Puppeteer.

@modelcontextprotocol/server-puppeteer
browser
Playwright

Browser automation and end-to-end testing with Playwright.

@playwright/mcp
browser
Browserbase

Automate browsers in the cloud with Browserbase.

@browserbasehq/mcp-server-browserbase
web
Fetch

HTTP fetch tool for reading web content and APIs.

@modelcontextprotocol/server-fetch

Copy config

// .vscode/mcp.json
{
"servers": {
"puppeteer": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-puppeteer"
],
"type": "stdio"
},
"playwright": {
"command": "npx",
"args": [
"-y",
"@playwright/mcp"
],
"type": "stdio"
},
"browserbase": {
"command": "npx",
"args": [
"-y",
"@browserbasehq/mcp-server-browserbase"
],
"type": "stdio"
},
"fetch": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fetch"
],
"type": "stdio"
}
}
}