@sanlim/home-assistant-switch-mcp-server
Version:
A MCP server for Home Assistant switch services.
57 lines (56 loc) • 1.91 kB
JSON
{
"name": "@sanlim/home-assistant-switch-mcp-server",
"version": "1.0.14",
"type": "module",
"main": "./build/main.js",
"bin": {
"home-assistant-switch-mcp-server": "./build/main.js"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && chmod 755 build/main.js",
"build:windows": "tsc",
"server": "node build/main.js",
"version:patch": "npm version patch && node scripts/version.js $(node -p \"require('./package.json').version\") && git add package-github.json && git commit --amend --no-edit",
"version:minor": "npm version minor && node scripts/version.js $(node -p \"require('./package.json').version\") && git add package-github.json && git commit --amend --no-edit",
"version:major": "npm version major && node scripts/version.js $(node -p \"require('./package.json').version\") && git add package-github.json && git commit --amend --no-edit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexandresanlim/home-assistant-switch-mcp-server.git"
},
"bugs": {
"url": "https://github.com/alexandresanlim/home-assistant-switch-mcp-server/issues"
},
"homepage": "https://github.com/alexandresanlim/home-assistant-switch-mcp-server",
"keywords": [
"mcp",
"mcpServers",
"mcp-server",
"home-assistant",
"home-assistant-switch",
"home-assistant-state",
"iot",
"smart-home",
"hass"
],
"author": "Alexandre Sanlim <@alexandresanlim> (https://github.com/alexandresanlim)",
"license": "ISC",
"description": "A MCP server for Home Assistant switch services.",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.9.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.14.0",
"typescript": "^5.8.3"
}
}