MCP Catalogs
Home

httprunner vs filesystem

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

httprunner
by httprunner
filesystem
by modelcontextprotocol
Stars★ 4,277★ 85,748
30d uses
Score5577
Official
Categories
Browser AutomationDeveloper Toolstesting
File SystemDeveloper ToolsProductivity
LanguageGoTypeScript
Last commit5 mo agothis month

httprunner · Summary

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

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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"]
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.