MCP Catalogs
Home

home-assistant-vibecode-agent vs filesystem

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

home-assistant-vibecode-agent
by Coolver
filesystem
by modelcontextprotocol
Stars★ 550★ 85,748
30d uses
Score5377
Official
Categories
Developer ToolsAI / LLM ToolsOps & Infra
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last committhis monththis month

home-assistant-vibecode-agent · Summary

An MCP server that enables AI IDEs to manage Home Assistant through natural language for automation creation, dashboard design, and configuration management.

filesystem · Summary

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

home-assistant-vibecode-agent · Use cases

  • Create and debug Home Assistant automations using natural language
  • Design and customize UI dashboards with cards and themes
  • Automatically install and manage HACS integrations

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

home-assistant-vibecode-agent · Install

Installation

Option A: Home Assistant Add-on (Recommended)

  1. Open Home Assistant UI → Settings → Add-ons → Add-on Store → ⋮ → Repositories
  2. Add repository: https://github.com/coolver/home-assistant-vibecode-agent
  3. Find HA Vibecode Agent → INSTALL → Start on boot: ON → START
  4. Click "Open Web UI" and follow setup instructions for your IDE

Option B: Standalone Docker

  1. Clone repository: git clone https://github.com/Coolver/home-assistant-vibecode-agent.git
  2. Copy and configure .env: cp .env.example .env
  3. Start agent: docker compose -f docker-compose.standalone.yml up -d
  4. Get API key from logs or config file
  5. Configure MCP client with the API key

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "home-assistant": {
      "command": "npx",
      "args": ["@coolver/home-assistant-mcp"]
    }
  }
}

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.