Back to stacks

Automation Engineer

by Jonathan S

End-to-end automation: browser control, container orchestration, and code execution sandboxes.

Servers in this stack

browser
Playwright

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

@playwright/mcp
browser
Puppeteer

Browser automation and web scraping with Puppeteer.

@modelcontextprotocol/server-puppeteer
developer-tools
Docker

Manage Docker containers, images, and volumes.

developer-tools
E2B Code Sandbox

Execute code securely in isolated cloud sandboxes with E2B.

@e2b/mcp-server
developer-tools
GitHub

Interact with GitHub repositories, issues, and pull requests.

@modelcontextprotocol/server-github

Copy config

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