Skip to main content
Glama

MCP Home Assistant

by Coolver
tools.ts10.4 kB
import { Tool } from '@modelcontextprotocol/sdk/types.js'; export const tools: Tool[] = [ // File Operations (Read-only) { name: 'ha_read_file', description: '[READ-ONLY] Read a file from Home Assistant configuration directory. Safe operation - only reads data.', inputSchema: { type: 'object', properties: { path: { type: 'string', description: 'Path to the file relative to /config (e.g., "configuration.yaml", "automations.yaml", "scripts/my_script.yaml")', }, }, required: ['path'], }, }, { name: 'ha_write_file', description: '[WRITE] Write content to a file in Home Assistant. MODIFIES configuration - requires approval.', inputSchema: { type: 'object', properties: { path: { type: 'string', description: 'Path to the file relative to /config', }, content: { type: 'string', description: 'Content to write to the file', }, }, required: ['path', 'content'], }, }, { name: 'ha_list_files', description: '[READ-ONLY] List files and directories in Home Assistant. Safe operation - only reads data.', inputSchema: { type: 'object', properties: { directory: { type: 'string', description: 'Directory path relative to /config (default: "/")', }, }, }, }, { name: 'ha_delete_file', description: '[WRITE] Delete a file from Home Assistant. DESTRUCTIVE - requires approval!', inputSchema: { type: 'object', properties: { path: { type: 'string', description: 'Path to the file to delete', }, }, required: ['path'], }, }, // Entity Operations (Read-only) { name: 'ha_list_entities', description: '[READ-ONLY] List all entities in Home Assistant. Safe operation - only reads data.', inputSchema: { type: 'object', properties: { domain: { type: 'string', description: 'Optional domain filter (e.g., "light", "climate", "sensor")', }, }, }, }, { name: 'ha_get_entity_state', description: '[READ-ONLY] Get entity state and attributes. Safe operation - only reads data.', inputSchema: { type: 'object', properties: { entity_id: { type: 'string', description: 'Entity ID (e.g., "light.living_room", "climate.bedroom")', }, }, required: ['entity_id'], }, }, // Helper Operations { name: 'ha_create_helper', description: '[WRITE] Create a Home Assistant helper. MODIFIES configuration - requires approval.', inputSchema: { type: 'object', properties: { type: { type: 'string', description: 'Helper type (input_boolean, input_number, input_text, input_select, input_datetime)', }, config: { type: 'object', description: 'Helper configuration object', }, }, required: ['type', 'config'], }, }, { name: 'ha_list_helpers', description: '[READ-ONLY] List all helpers in Home Assistant. Safe operation - only reads data.', inputSchema: { type: 'object', properties: {}, }, }, // Automation Operations { name: 'ha_create_automation', description: '[WRITE] Create new automation in Home Assistant. MODIFIES configuration - requires approval.', inputSchema: { type: 'object', properties: { config: { type: 'object', description: 'Automation configuration (id, alias, trigger, condition, action)', }, }, required: ['config'], }, }, { name: 'ha_list_automations', description: '[READ-ONLY] List all automations in Home Assistant. Safe operation - only reads data.', inputSchema: { type: 'object', properties: {}, }, }, // Script Operations { name: 'ha_create_script', description: '[WRITE] Create new script in Home Assistant. MODIFIES configuration - requires approval.', inputSchema: { type: 'object', properties: { config: { type: 'object', description: 'Script configuration object', }, }, required: ['config'], }, }, { name: 'ha_list_scripts', description: '[READ-ONLY] List all scripts in Home Assistant. Safe operation - only reads data.', inputSchema: { type: 'object', properties: {}, }, }, // Git/Backup Operations { name: 'ha_git_commit', description: '[WRITE] Commit configuration to Git. Creates backup snapshot.', inputSchema: { type: 'object', properties: { message: { type: 'string', description: 'Commit message describing the changes', }, }, required: ['message'], }, }, { name: 'ha_git_history', description: '[READ-ONLY] Get Git commit history. Safe operation - only reads data.', inputSchema: { type: 'object', properties: { limit: { type: 'number', description: 'Number of commits to retrieve (default: 20)', }, }, }, }, { name: 'ha_git_rollback', description: '[WRITE] Rollback configuration to specific commit. DESTRUCTIVE - requires approval!', inputSchema: { type: 'object', properties: { commit_hash: { type: 'string', description: 'Git commit hash to rollback to', }, }, required: ['commit_hash'], }, }, { name: 'ha_git_diff', description: '[READ-ONLY] Show differences between commits. Safe operation - only reads data.', inputSchema: { type: 'object', properties: { commit1: { type: 'string', description: 'First commit hash (optional). If omitted, shows uncommitted changes', }, commit2: { type: 'string', description: 'Second commit hash (optional). If omitted with commit1, shows changes since commit1 to HEAD', }, }, }, }, // System Operations { name: 'ha_check_config', description: '[READ-ONLY] Validate Home Assistant configuration. Safe operation - only checks, does not modify.', inputSchema: { type: 'object', properties: {}, }, }, { name: 'ha_reload_config', description: '[WRITE] Reload Home Assistant configuration. APPLIES changes - requires approval!', inputSchema: { type: 'object', properties: { component: { type: 'string', description: 'Component to reload: "automations", "scripts", "templates", "core", or "all" (default: "all")', enum: ['automations', 'scripts', 'templates', 'core', 'all'], }, }, }, }, { name: 'ha_get_logs', description: '[READ-ONLY] Get agent logs to troubleshoot issues. Safe operation - only reads data.', inputSchema: { type: 'object', properties: { limit: { type: 'number', description: 'Number of log entries to retrieve (default: 100)', }, level: { type: 'string', description: 'Filter by log level: DEBUG, INFO, WARNING, ERROR (optional)', enum: ['DEBUG', 'INFO', 'WARNING', 'ERROR'], }, }, }, }, { name: 'ha_install_hacs', description: '[WRITE] Install HACS (Home Assistant Community Store). Downloads latest HACS from GitHub, installs to custom_components, and restarts Home Assistant. Opens access to 1000+ integrations. MODIFIES configuration - requires approval!', inputSchema: { type: 'object', properties: {}, }, }, { name: 'ha_hacs_status', description: '[READ-ONLY] Check if HACS is installed and get version info. Safe operation - only reads data.', inputSchema: { type: 'object', properties: {}, }, }, { name: 'ha_hacs_list_repositories', description: '[READ-ONLY] List available HACS repositories (integrations, themes, plugins). Requires HACS to be installed and configured. Safe operation - only reads data.', inputSchema: { type: 'object', properties: {}, }, }, { name: 'ha_hacs_install_repository', description: '[WRITE] Install integration/theme/plugin from HACS. Requires HACS to be installed. MODIFIES configuration - requires approval!', inputSchema: { type: 'object', properties: { repository: { type: 'string', description: 'Repository name to install (e.g., "AlexxIT/XiaomiGateway3")', }, category: { type: 'string', description: 'Repository category: integration, theme, plugin, appdaemon, netdaemon, python_script (default: integration)', enum: ['integration', 'theme', 'plugin', 'appdaemon', 'netdaemon', 'python_script'], }, }, required: ['repository'], }, }, { name: 'ha_hacs_search', description: '[READ-ONLY] Search HACS repositories by name, author, or description. Safe operation - only reads data.', inputSchema: { type: 'object', properties: { query: { type: 'string', description: 'Search query (e.g., "xiaomi", "gateway", "sensor")', }, category: { type: 'string', description: 'Filter by category (optional)', enum: ['integration', 'theme', 'plugin', 'appdaemon', 'netdaemon', 'python_script'], }, }, required: ['query'], }, }, { name: 'ha_hacs_update_all', description: '[WRITE] Update all installed HACS repositories to latest versions. Home Assistant restart required after updates. MODIFIES configuration - requires approval!', inputSchema: { type: 'object', properties: {}, }, }, { name: 'ha_hacs_repository_details', description: '[READ-ONLY] Get detailed information about a specific HACS repository (stars, authors, versions, etc). Safe operation - only reads data.', inputSchema: { type: 'object', properties: { repository_id: { type: 'string', description: 'Repository identifier (e.g., "AlexxIT/XiaomiGateway3" or part of entity_id)', }, }, required: ['repository_id'], }, }, ];

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Coolver/mcp-home-assistant'

If you have feedback or need assistance with the MCP directory API, please join our Discord server