homebutler 0.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.
Files changed (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +16 -0
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # homebutler
2
+
3
+ **Manage your homelab from any AI — Claude, ChatGPT, Cursor, or terminal.**
4
+
5
+ This is a placeholder package. For the MCP server, install:
6
+
7
+ ```bash
8
+ npm install -g homebutler-mcp
9
+ ```
10
+
11
+ For the full CLI, visit: https://github.com/Higangssh/homebutler
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "homebutler",
3
+ "version": "0.0.1",
4
+ "description": "Homelab management CLI + MCP server. Use homebutler-mcp for the MCP server package.",
5
+ "keywords": ["homebutler", "homelab", "mcp", "server", "docker", "monitoring"],
6
+ "license": "MIT",
7
+ "author": "Higangssh",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/Higangssh/homebutler"
11
+ },
12
+ "homepage": "https://github.com/Higangssh/homebutler",
13
+ "scripts": {
14
+ "postinstall": "echo 'For the MCP server, use: npm install -g homebutler-mcp'"
15
+ }
16
+ }