Zypin MCP
A lightweight MCP server for browser automation using Playwright with essential tools for navigation, form interaction, and web scraping. Provides 16 core browser automation tools with minimal setup and fast performance.
README
Zypin MCP
A simple MCP (Model Context Protocol) server for browser automation using Playwright. This is a simplified version that focuses on essential browser automation features without the complexity of the full Playwright MCP server.
Features
- Simple Setup: Minimal configuration and dependencies
- Essential Tools: Core browser automation functionality
- Fast: Lightweight implementation with minimal overhead
- Reliable: Focused on the most commonly used features
Project Structure
zypin-mcp/
├── package.json # Project configuration and dependencies
├── index.js # Main CLI entry point and MCP server
├── browser.js # Simple browser wrapper using Playwright
├── tools.js # MCP tools implementation (16 tools)
├── test.js # Basic functionality tests
├── .gitignore # Git ignore rules
├── README.md # This documentation
└── node_modules/ # Dependencies (3 packages)
File Descriptions
index.js: Main entry point that sets up the MCP server, handles CLI arguments, and manages the browser lifecyclebrowser.js: Simple wrapper around Playwright that provides essential browser automation methodstools.js: Defines all 16 MCP tools with their schemas and handlerstest.js: Basic test suite to verify core functionality.gitignore: Minimal git ignore rules for essential exclusions
Architecture
The project follows a simple, modular architecture:
┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
│ MCP Client │ │ index.js │ │ browser.js │
│ (VS Code, │◄──►│ (MCP Server) │◄──►│ (Playwright) │
│ Cursor, etc.) │ │ │ │ │
└─────────────────┘ └─────────────────┘ └─────────────────┘
│
▼
┌─────────────────┐
│ tools.js │
│ (16 MCP Tools)│
└─────────────────┘
Component Interactions
- MCP Client sends requests to the server via STDIO transport
- index.js receives MCP protocol messages and routes them to appropriate handlers
- tools.js defines the available tools and their schemas
- browser.js executes the actual browser automation commands
Key Design Principles
- Single Responsibility: Each file has a clear, focused purpose
- Minimal Dependencies: Only 3 essential packages
- Command Line Only: Simple CLI options, no config files
- Essential Tools Only: 16 tools covering 80% of use cases
- Error Handling: Clear error messages and graceful failures
Quick Start
Installation
Option 1: Standalone Installation
npm install https://github.com/zypin-testing/zypin-mcp
Option 2: Integrated with Zypin Core (Recommended)
npm install -g https://github.com/zypin-testing/zypin-core
Basic Usage
Standalone Usage
Add to your MCP client configuration:
{
"mcpServers": {
"zypin-browser": {
"command": "npx",
"args": ["https://github.com/zypin-testing/zypin-mcp"]
}
}
}
Integrated Usage (Zypin Core)
# Start MCP server through Zypin CLI
zypin mcp
# With options
zypin mcp --browser firefox --headed
Benefits of Zypin Core Integration:
- ✅ Unified CLI interface
- ✅ Automatic updates with
zypin update - ✅ Integrated with testing workflow
- ✅ Consistent command structure
Command Line Options
Standalone Usage
# Basic usage
npx zypin-mcp
# With options
npx zypin-mcp --browser firefox --headed --width 1920 --height 1080
Integrated Usage (Zypin Core)
# Basic usage
zypin mcp
# With options
zypin mcp --browser firefox --headed --width 1920 --height 1080
Available Options:
--browser <browser>: Browser to use (chromium, firefox, webkit) - default: chromium--headless: Run in headless mode (default)--headed: Run in headed mode (overrides headless)--width <width>: Viewport width - default: 1280--height <height>: Viewport height - default: 720--timeout <timeout>: Default timeout in milliseconds - default: 30000
Default Settings:
- Browser: chromium
- Mode: headless
- Viewport: 1280x720
- Timeout: 30000ms
Available Tools
Navigation
navigate(url)- Go to a URLgo_back()- Go back to previous pagego_forward()- Go forward to next pagereload()- Reload current page
Interaction
click(selector)- Click an elementtype(selector, text)- Type text into input fieldselect(selector, value)- Select option from dropdownfill_form(fields)- Fill multiple form fields
Information
snapshot()- Get page snapshot with interactive elementsscreenshot(filename?)- Take screenshotget_text(selector)- Get text from elementget_url()- Get current URLget_title()- Get page title
Utilities
wait_for(selector, timeout?)- Wait for element to appearevaluate(script)- Run JavaScript on pageclose()- Close browser
Integration with Zypin Core
Zypin MCP is now integrated into the Zypin Core framework, providing a unified testing and automation experience.
Complete Testing Workflow
# 1. Create a test project
zypin create-project my-tests --template selenium/basic-webdriver
cd my-tests
npm install
# 2. Start testing services
zypin start --packages selenium
# 3. Run traditional tests
zypin run --input test.js
# 4. Start MCP server for browser automation
zypin mcp --browser chromium --headed
# 5. Update everything
zypin update
MCP Client Configuration
When using Zypin Core integration, configure your MCP client to use the integrated command:
{
"mcpServers": {
"zypin-browser": {
"command": "zypin",
"args": ["mcp", "--browser", "chromium"]
}
}
}
Benefits of Integration
- Unified Interface: All testing tools accessible through one CLI
- Automatic Updates: MCP server updates with
zypin update - Consistent Workflow: Same command patterns across all tools
- Integrated Monitoring: Health checks and process management
- Template Support: MCP projects can be created from templates
Examples
Basic Navigation
// Navigate to a website
await navigate({ url: "https://example.com" });
// Take a screenshot
await screenshot({ filename: "homepage.png" });
// Get page information
const info = await snapshot();
console.log(info.title, info.url);
Form Interaction
// Fill a login form
await fill_form({
"#username": "myuser",
"#password": "mypass"
});
// Click submit button
await click({ selector: "#login-button" });
// Wait for redirect
await wait_for({ selector: ".dashboard" });
Element Interaction
// Click a link
await click({ selector: "a[href='/products']" });
// Type in search box
await type({
selector: "#search-input",
text: "laptop"
});
// Select from dropdown
await select({
selector: "#category",
value: "electronics"
});
Comparison with Full Playwright MCP
| Feature | Zypin MCP | Full Playwright MCP |
|---|---|---|
| Bundle Size | ~10MB | ~50MB |
| Dependencies | 3 | 15+ |
| Configuration | CLI only | 50+ options |
| Tools | 15 essential | 30+ advanced |
| Setup Time | 2 minutes | 10+ minutes |
| Use Cases | 80% of scenarios | 100% of scenarios |
Requirements
- Node.js 18 or newer
- MCP-compatible client (VS Code, Cursor, Claude Desktop, etc.)
License
MIT
Development
Running Tests
# Run basic functionality tests
node test.js
# Test MCP server startup
npx https://github.com/zypin-testing/zypin-mcp --help
Adding New Tools
To add a new tool:
- Add the tool definition to
tools.js:
{
name: 'new_tool',
description: 'Description of the new tool',
inputSchema: {
type: 'object',
properties: {
param: { type: 'string', description: 'Parameter description' }
},
required: ['param']
},
handler: async ({ param }) => {
// Tool implementation
return { success: true, message: 'Tool executed' };
}
}
- Add corresponding method to
browser.jsif needed - Update this README with the new tool documentation
Project Metrics
- Lines of Code: ~500 lines total
- Files: 6 core files
- Dependencies: 3 packages
- Bundle Size: ~10MB
- Startup Time: < 2 seconds
Contributing
This is a simplified version focused on essential functionality. For advanced features, consider using the full Playwright MCP server.
Guidelines
- Keep it simple - avoid adding complexity unless absolutely necessary
- Focus on the 80% use case - don't add features for edge cases
- Maintain the single-file architecture for each component
- Test any changes with the included test suite
Troubleshooting
Common Issues
Browser not found error:
# Install Playwright browsers
npx playwright install chromium
MCP client connection issues:
- Ensure the server starts without errors:
npx https://github.com/zypin-testing/zypin-mcp --help - Check that your MCP client configuration is correct
- Verify the server is running in the correct directory
Tool execution errors:
- Check that selectors are valid CSS selectors
- Ensure elements exist on the page before interacting
- Use
wait_fortool to wait for elements to appear
Command line issues:
- Check that browser type is one of:
chromium,firefox,webkit - Ensure viewport dimensions are positive numbers
- Verify command line arguments are valid
Debug Mode
Run with debug output:
# See server startup messages
npx https://github.com/zypin-testing/zypin-mcp 2>&1 | tee server.log
Getting Help
- Check the MCP documentation
- Review the Playwright documentation
- Test with the included
test.jsfile
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。