@gesslar/fluffos-mcp 0.1.0 → 0.1.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 +51 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -36,10 +36,19 @@ Node.js 16+ required:
36
36
  node --version # Should be v16.0.0 or higher
37
37
  ```
38
38
 
39
- ### 3. Install Dependencies
39
+ ## Installation
40
+
41
+ You can install the server via npm:
42
+
43
+ ```bash
44
+ npm install -g @gesslar/fluffos-mcp
45
+ ```
46
+
47
+ Or clone and install locally:
40
48
 
41
49
  ```bash
42
- cd /path/to/fluffos-mcp
50
+ git clone https://github.com/gesslar/fluffos-mcp.git
51
+ cd fluffos-mcp
43
52
  npm install
44
53
  ```
45
54
 
@@ -59,6 +68,24 @@ Add to your Warp MCP configuration:
59
68
 
60
69
  **Location**: Settings → AI → Model Context Protocol
61
70
 
71
+ **If installed via npm:**
72
+
73
+ ```json
74
+ {
75
+ "fluffos": {
76
+ "command": "npx",
77
+ "args": ["@gesslar/fluffos-mcp"],
78
+ "env": {
79
+ "FLUFFOS_BIN_DIR": "/path/to/fluffos/bin",
80
+ "MUD_RUNTIME_CONFIG_FILE": "/mud/lib/etc/config.test",
81
+ "FLUFFOS_DOCS_DIR": "/path/to/fluffos/docs"
82
+ }
83
+ }
84
+ }
85
+ ```
86
+
87
+ **If cloned locally:**
88
+
62
89
  ```json
63
90
  {
64
91
  "fluffos": {
@@ -81,6 +108,26 @@ Restart Warp after adding the configuration.
81
108
 
82
109
  Add to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) or equivalent:
83
110
 
111
+ **If installed via npm:**
112
+
113
+ ```json
114
+ {
115
+ "mcpServers": {
116
+ "fluffos": {
117
+ "command": "npx",
118
+ "args": ["@gesslar/fluffos-mcp"],
119
+ "env": {
120
+ "FLUFFOS_BIN_DIR": "/path/to/fluffos/bin",
121
+ "MUD_RUNTIME_CONFIG_FILE": "/mud/lib/etc/config.test",
122
+ "FLUFFOS_DOCS_DIR": "/path/to/fluffos/docs"
123
+ }
124
+ }
125
+ }
126
+ }
127
+ ```
128
+
129
+ **If cloned locally:**
130
+
84
131
  ```json
85
132
  {
86
133
  "mcpServers": {
@@ -89,7 +136,8 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS)
89
136
  "args": ["/absolute/path/to/fluffos-mcp/index.js"],
90
137
  "env": {
91
138
  "FLUFFOS_BIN_DIR": "/path/to/fluffos/bin",
92
- "MUD_RUNTIME_CONFIG_FILE": "/mud/lib/etc/config.test"
139
+ "MUD_RUNTIME_CONFIG_FILE": "/mud/lib/etc/config.test",
140
+ "FLUFFOS_DOCS_DIR": "/path/to/fluffos/docs"
93
141
  }
94
142
  }
95
143
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gesslar/fluffos-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP server for FluffOS driver tools - validate and disassemble LPC code",
5
5
  "main": "src/index.js",
6
6
  "type": "module",