Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
Home Assistant MCP Server
Claim
by
hekmon8
GitHub
Home Automation & IoT
JavaScript
MIT License
29
Apple
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
Homeassistant-server-mcp
src
.gitignore
LICENSE
mcp_setting.example.json
package.json
package-lock.json
README.md
tsconfig.json
{ "name": "homeassistant-server", "version": "0.1.0", "description": "A Model Context Protocol server", "private": true, "type": "module", "bin": { "homeassistant-server": "./build/index.js" }, "files": [ "build" ], "scripts": { "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"", "prepare": "npm run build", "watch": "tsc --watch", "inspector": "npx @modelcontextprotocol/inspector build/index.js" }, "dependencies": { "@modelcontextprotocol/sdk": "0.6.0", "axios": "^1.7.9" }, "devDependencies": { "@types/node": "^20.11.24", "typescript": "^5.3.3" } }