Compare commits
2 Commits
v0.1.4
...
smithery/c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f5c01ad83a | ||
|
|
190915214d |
@@ -122,6 +122,14 @@ For further technical details, check out our [Documentation Index](docs/index.md
|
|||||||
|
|
||||||
## Installation 🛠
|
## 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)
|
### 🐳 Docker Setup (Recommended)
|
||||||
|
|
||||||
For a hassle-free, containerized deployment:
|
For a hassle-free, containerized deployment:
|
||||||
|
|||||||
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