Description

MCP Web UI is a web-based user interface that serves as a Host within the Model Context Protocol architecture.

Installation

npx -y mcp-web-ui
npm install mcp-web-ui
git clone https://github.com/MegaGrindStone/mcp-web-ui

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "mcp-web-ui": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-web-ui"
      ]
    }
  }
}