MCP Catalogs
Home

hass-mcp-server vs fetch

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

hass-mcp-server
by ganhammar
fetch
by modelcontextprotocol
Stars★ 34★ 85,748
30d uses
Score4476
Official
Categories
AI / LLM Toolshome-automationiot
Web ScrapingAI / LLM ToolsProductivity
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.

fetch · Summary

An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.

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

fetch · Use cases

  • LLMs reading news articles and blogs
  • Content analysis of web pages
  • Retrieving information from public websites
  • Chunked reading of large web documents

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

fetch · Install

Installation

**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:

uvx mcp-server-fetch

**Using PIP** Install via pip:

pip install mcp-server-fetch

Then run as:

python -m mcp_server_fetch

Claude Desktop Configuration

{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": ["mcp-server-fetch"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.