@mp-consulting/homebridge-mcp-server 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -75,7 +75,7 @@ npx @modelcontextprotocol/inspector homebridge-mcp-server
75
75
 
76
76
  | Tool | Description |
77
77
  |------|-------------|
78
- | `list_accessories` | List all accessories with current state |
78
+ | `list_accessories` | List all accessories with current state. Supports filtering by `room`, `type`, `name`, `manufacturer`, and `excludeManufacturer` |
79
79
  | `get_accessory` | Get detailed info for a specific accessory |
80
80
  | `set_accessory` | Control an accessory (on/off, brightness, temperature, etc.) |
81
81
  | `get_accessory_layout` | Get the room layout from the Homebridge UI |
@@ -85,7 +85,7 @@ npx @modelcontextprotocol/inspector homebridge-mcp-server
85
85
  | Tool | Description |
86
86
  |------|-------------|
87
87
  | `get_homebridge_status` | Check if Homebridge is running |
88
- | `get_server_status` | Get server version, uptime, Node.js version |
88
+ | `get_server_status` | Get server version, uptime, Node.js version, OS details, and instance ID |
89
89
  | `restart_homebridge` | Restart the Homebridge service |
90
90
  | `get_pairing_info` | Get HomeKit pairing code / QR info |
91
91
  | `get_cached_accessories` | List cached accessories |
@@ -131,12 +131,18 @@ Once configured, you can ask Claude things like:
131
131
  ## Development
132
132
 
133
133
  ```bash
134
- git clone https://github.com/your-org/homebridge-mcp-server.git
134
+ git clone https://github.com/mp-consulting/homebridge-mcp-server.git
135
135
  cd homebridge-mcp-server
136
136
  npm install
137
137
  npm run build
138
138
  ```
139
139
 
140
+ ```bash
141
+ npm run dev # Run with auto-reload (tsx)
142
+ npm test # Run tests
143
+ npm run test:watch # Run tests in watch mode
144
+ ```
145
+
140
146
  ## License
141
147
 
142
148
  MIT
package/dist/index.js CHANGED
@@ -9,7 +9,7 @@ import { register as registerPlugins } from "./tools/plugins.js";
9
9
  import { register as registerSystem } from "./tools/system.js";
10
10
  const server = new McpServer({
11
11
  name: "homebridge-mcp-server",
12
- version: "1.0.0",
12
+ version: "1.0.1",
13
13
  });
14
14
  const client = new HomebridgeClient();
15
15
  // Register all tool groups
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mp-consulting/homebridge-mcp-server",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "MCP (Model Context Protocol) server for Homebridge — control smart home accessories, manage plugins, and monitor your Homebridge server from AI assistants.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",