Initial commit: Home Assistant MCP Server

This commit is contained in:
2026-02-03 09:38:31 +08:00
commit 6a7dfb88a5
9 changed files with 1921 additions and 0 deletions

31
package.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "home-assistant-mcp",
"version": "1.0.0",
"description": "MCP Server for Home Assistant integration",
"type": "module",
"main": "dist/index.js",
"bin": {
"home-assistant-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch"
},
"keywords": [
"mcp",
"home-assistant",
"llm",
"ai"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.0"
}
}