MCP Catalogs
Home

hass-mcp-server vs everything

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

hass-mcp-server
by ganhammar
everything
by modelcontextprotocol
Stars★ 34★ 85,748
30d uses
Score4477
Official
Categories
AI / LLM Toolshome-automationiot
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit1 mo agothis month

hass-mcp-server · Summary

Home Assistant MCP server with HTTP transport for remote access via OAuth or long-lived tokens.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

hass-mcp-server · Use cases

  • Remote control of Home Assistant devices and automations through Claude web interface
  • Automated configuration management of YAML files with automatic backups and validation
  • System monitoring and troubleshooting using AI-powered prompts and completions

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

hass-mcp-server · Install

Installation

HACS (Recommended)

  1. Open HACS in Home Assistant
  2. Search for "MCP Server"
  3. Click "Download"
  4. Restart Home Assistant
  5. Configure the integration

Claude Desktop Integration

{
  "mcpServers": {
    "home-assistant": {
      "command": "npx",
      "args": ["@modelcontextprotocol/server-homeassistant"],
      "env": {
        "HOME_ASSISTANT_URL": "https://your-home-assistant.com",
        "HOME_ASSISTANT_TOKEN": "your-long-lived-token"
      }
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.