@gesslar/fluffos-mcp 0.1.0 → 0.1.2

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 +56 -4
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  **Real driver validation for LPC development** - An MCP server that wraps FluffOS CLI tools to provide actual driver-level validation and debugging.
4
4
 
5
+ <a href="https://glama.ai/mcp/servers/@gesslar/fluffos-mcp">
6
+ <img width="380" height="200" src="https://glama.ai/mcp/servers/@gesslar/fluffos-mcp/badge" alt="FluffOS Server MCP server" />
7
+ </a>
8
+
5
9
  This MCP server exposes FluffOS's powerful CLI utilities (`symbol` and `lpcc`) to AI assistants, enabling them to validate LPC code against the actual driver and examine compiled bytecode.
6
10
 
7
11
  ## What This Enables
@@ -36,10 +40,19 @@ Node.js 16+ required:
36
40
  node --version # Should be v16.0.0 or higher
37
41
  ```
38
42
 
39
- ### 3. Install Dependencies
43
+ ## Installation
44
+
45
+ You can install the server via npm:
40
46
 
41
47
  ```bash
42
- cd /path/to/fluffos-mcp
48
+ npm install -g @gesslar/fluffos-mcp
49
+ ```
50
+
51
+ Or clone and install locally:
52
+
53
+ ```bash
54
+ git clone https://github.com/gesslar/fluffos-mcp.git
55
+ cd fluffos-mcp
43
56
  npm install
44
57
  ```
45
58
 
@@ -59,6 +72,24 @@ Add to your Warp MCP configuration:
59
72
 
60
73
  **Location**: Settings → AI → Model Context Protocol
61
74
 
75
+ **If installed via npm:**
76
+
77
+ ```json
78
+ {
79
+ "fluffos": {
80
+ "command": "npx",
81
+ "args": ["@gesslar/fluffos-mcp"],
82
+ "env": {
83
+ "FLUFFOS_BIN_DIR": "/path/to/fluffos/bin",
84
+ "MUD_RUNTIME_CONFIG_FILE": "/mud/lib/etc/config.test",
85
+ "FLUFFOS_DOCS_DIR": "/path/to/fluffos/docs"
86
+ }
87
+ }
88
+ }
89
+ ```
90
+
91
+ **If cloned locally:**
92
+
62
93
  ```json
63
94
  {
64
95
  "fluffos": {
@@ -81,6 +112,26 @@ Restart Warp after adding the configuration.
81
112
 
82
113
  Add to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) or equivalent:
83
114
 
115
+ **If installed via npm:**
116
+
117
+ ```json
118
+ {
119
+ "mcpServers": {
120
+ "fluffos": {
121
+ "command": "npx",
122
+ "args": ["@gesslar/fluffos-mcp"],
123
+ "env": {
124
+ "FLUFFOS_BIN_DIR": "/path/to/fluffos/bin",
125
+ "MUD_RUNTIME_CONFIG_FILE": "/mud/lib/etc/config.test",
126
+ "FLUFFOS_DOCS_DIR": "/path/to/fluffos/docs"
127
+ }
128
+ }
129
+ }
130
+ }
131
+ ```
132
+
133
+ **If cloned locally:**
134
+
84
135
  ```json
85
136
  {
86
137
  "mcpServers": {
@@ -89,7 +140,8 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS)
89
140
  "args": ["/absolute/path/to/fluffos-mcp/index.js"],
90
141
  "env": {
91
142
  "FLUFFOS_BIN_DIR": "/path/to/fluffos/bin",
92
- "MUD_RUNTIME_CONFIG_FILE": "/mud/lib/etc/config.test"
143
+ "MUD_RUNTIME_CONFIG_FILE": "/mud/lib/etc/config.test",
144
+ "FLUFFOS_DOCS_DIR": "/path/to/fluffos/docs"
93
145
  }
94
146
  }
95
147
  }
@@ -204,6 +256,6 @@ PRs welcome! This is a simple wrapper that can be extended with more FluffOS too
204
256
  - **FluffOS Team** - For the amazing driver and CLI tools
205
257
  - [Model Context Protocol](https://modelcontextprotocol.io/) - Making this integration possible
206
258
 
207
- ## License
259
+ ## ~~License~~
208
260
 
209
261
  Unlicense - Public Domain. Do whatever you want with this code.
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.2",
4
4
  "description": "MCP server for FluffOS driver tools - validate and disassemble LPC code",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -23,7 +23,11 @@
23
23
  "lpc",
24
24
  "mud",
25
25
  "mcp",
26
- "model-context-protocol"
26
+ "model-context-protocol",
27
+ "kraft",
28
+ "dinner",
29
+ "white",
30
+ "cheddar"
27
31
  ],
28
32
  "author": "gesslar",
29
33
  "license": "Unlicense",