Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ddf9070a64 | ||
|
|
f5c01ad83a | ||
|
|
190915214d |
10
README.md
10
README.md
@@ -122,6 +122,14 @@ For further technical details, check out our [Documentation Index](docs/index.md
|
||||
|
||||
## Installation 🛠
|
||||
|
||||
### Installing via Smithery
|
||||
|
||||
To install Home Assistant MCP Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@jango-blockchained/advanced-homeassistant-mcp):
|
||||
|
||||
```bash
|
||||
npx -y @smithery/cli install @jango-blockchained/advanced-homeassistant-mcp --client claude
|
||||
```
|
||||
|
||||
### 🐳 Docker Setup (Recommended)
|
||||
|
||||
For a hassle-free, containerized deployment:
|
||||
@@ -285,4 +293,4 @@ This project is licensed under the MIT License. See [LICENSE](LICENSE) for full
|
||||
|
||||
---
|
||||
|
||||
🔋 Batteries included.
|
||||
🔋 Batteries included.
|
||||
|
||||
21
smithery.yaml
Normal file
21
smithery.yaml
Normal file
@@ -0,0 +1,21 @@
|
||||
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
|
||||
|
||||
startCommand:
|
||||
type: stdio
|
||||
configSchema:
|
||||
# JSON Schema defining the configuration options for the MCP.
|
||||
type: object
|
||||
required:
|
||||
- hassToken
|
||||
properties:
|
||||
hassToken:
|
||||
type: string
|
||||
description: The token for connecting to Home Assistant API.
|
||||
port:
|
||||
type: number
|
||||
default: 4000
|
||||
description: The port on which the MCP server will run.
|
||||
commandFunction:
|
||||
# A function that produces the CLI command to start the MCP on stdio.
|
||||
|-
|
||||
config => ({command: 'bun', args: ['--smol', 'run', 'start'], env: { HASS_TOKEN: config.hassToken, PORT: config.port.toString() }})
|
||||
Reference in New Issue
Block a user