@houtini/lm 1.0.11 → 1.0.13

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 +7 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -67,15 +67,14 @@ Generate responsive HTML components using houtini-lm for a pricing card with dar
67
67
 
68
68
  ## Installation
69
69
 
70
- ### 1. Install Dependencies
70
+ ### 1. Install the Package
71
71
 
72
72
  ```bash
73
- # Clone the repository
74
- git clone https://github.com/houtini-ai/lm.git
75
- cd lm
73
+ # Install globally via npm
74
+ npm install -g @houtini/lm
76
75
 
77
- # Install Node.js dependencies
78
- npm install
76
+ # Or use npx (no installation required)
77
+ npx @houtini/lm
79
78
  ```
80
79
 
81
80
  ### 2. Configure Claude Desktop
@@ -89,8 +88,8 @@ Add to your Claude Desktop configuration file:
89
88
  {
90
89
  "mcpServers": {
91
90
  "houtini-lm": {
92
- "command": "node",
93
- "args": ["path/to/houtini-lm/index.js"],
91
+ "command": "npx",
92
+ "args": ["@houtini/lm"],
94
93
  "env": {
95
94
  "LLM_MCP_ALLOWED_DIRS": "C:/your-projects,C:/dev,C:/websites"
96
95
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@houtini/lm",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "type": "module",
5
5
  "description": "Houtini LM - LM Studio MCP Server with Expert Prompt Library and Custom Prompting",
6
6
  "main": "dist/index.js",