httprunner vs next-devtools-mcp
Side-by-side comparison to help you pick between these two MCP servers.
httprunner by httprunner | next-devtools-mcp by vercel | |
|---|---|---|
| Stars | ★ 4,277 | ★ 747 |
| 30d uses | — | — |
| Score | 55 | 54 |
| Official | — | — |
| Categories | Browser AutomationDeveloper Toolstesting | Developer ToolsBrowser AutomationAI / LLM Tools |
| Language | Go | TypeScript |
| Last commit | 5 mo ago | 2 mo ago |
httprunner · Summary
HttpRunner is an all-in-one testing framework that includes MCP server functionality for UI automation.
next-devtools-mcp · Summary
Next.js DevTools MCP server providing development tools and utilities for Next.js applications.
httprunner · Use cases
- Automated UI testing for mobile applications on Android and iOS
- Cross-platform browser automation with visual recognition
- API testing integration with UI automation in a single framework
next-devtools-mcp · Use cases
- Diagnose runtime errors and issues in Next.js applications
- Automate browser testing of Next.js applications using Playwright
- Search and retrieve official Next.js documentation and guides
- Upgrade and migrate Next.js applications to newer versions
httprunner · Install
Installation
- Install HttpRunner v5:
go install github.com/httprunner/httprunner@latest- Start the MCP server:
hrp mcp-server- For Claude Desktop configuration, add to
claude_desktop_config.json:
{
"mcpServers": {
"httprunner": {
"command": "hrp",
"args": ["mcp-server"]
}
}
}next-devtools-mcp · Install
Installation
Using add-mcp CLI:
npx add-mcp next-devtools-mcp@latestManual installation:
{
"mcpServers": {
"next-devtools": {
"command": "npx",
"args": ["-y", "next-devtools-mcp@latest"]
}
}
}