MCP Catalogs
Home

httprunner vs gemini-skill

Side-by-side comparison to help you pick between these two MCP servers.

httprunner
by httprunner
gemini-skill
by WJZ-P
Stars★ 4,277★ 813
30d uses
Score5552
Official
Categories
Browser AutomationDeveloper Toolstesting
AI / LLM ToolsBrowser AutomationProductivity
LanguageGoJavaScript
Last commit5 mo ago1 mo ago

httprunner · Summary

HttpRunner is an all-in-one testing framework that includes MCP server functionality for UI automation.

gemini-skill · Summary

MCP server that automates Google Gemini through browser automation for image generation, chat, and image extraction.

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

gemini-skill · Use cases

  • Generate images through text prompts in AI assistants
  • Automate multi-turn conversations with Gemini
  • Extract and download images from chat conversations automatically
  • Integrate Gemini capabilities into AI agent workflows

httprunner · Install

Installation

  1. Install HttpRunner v5:
go install github.com/httprunner/httprunner@latest
  1. Start the MCP server:
hrp mcp-server
  1. For Claude Desktop configuration, add to claude_desktop_config.json:
{
  "mcpServers": {
    "httprunner": {
      "command": "hrp",
      "args": ["mcp-server"]
    }
  }
}

gemini-skill · Install

Installation

Prerequisites

  • Node.js ≥ 18
  • Chrome/Edge/Chromium browser with Google account logged in

Steps

git clone https://github.com/WJZ-P/gemini-skill.git
cd gemini-skill
npm install

Configuration

Create a .env file in the project root with your configuration:

BROWSER_DEBUG_PORT=40821
BROWSER_HEADLESS=false
DAEMON_TTL_MS=1800000
OUTPUT_DIR=./gemini-image

Claude Desktop Configuration

Add to Claude Desktop's claude_desktop_config.json:

{
  "mcpServers": {
    "gemini": {
      "command": "node",
      "args": ["<absolute_path_to_gemini-skill>/src/mcp-server.js"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.