@forcefield/mcp-server 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.
- package/README.md +22 -6
- package/build/chunk-4L46G65Q.js +1229 -0
- package/build/chunk-4L46G65Q.js.map +1 -0
- package/build/chunk-6YANB5QT.js +15 -0
- package/build/chunk-6YANB5QT.js.map +1 -0
- package/build/chunk-7XLGRGP6.js +9161 -0
- package/build/chunk-7XLGRGP6.js.map +1 -0
- package/build/cli/index.js +73 -0
- package/build/cli/index.js.map +1 -0
- package/build/index.js +6 -9142
- package/build/index.js.map +1 -1
- package/build/setup/index.js +7 -1040
- package/build/setup/index.js.map +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -4,13 +4,25 @@ Forcefield MCP server and setup wizard.
|
|
|
4
4
|
|
|
5
5
|
## Release Channel
|
|
6
6
|
|
|
7
|
-
Current channel is **
|
|
8
|
-
Install requires npm access to the `@forcefield` scope.
|
|
7
|
+
Current channel is **public beta**.
|
|
9
8
|
|
|
10
|
-
##
|
|
9
|
+
## Setup
|
|
11
10
|
|
|
12
11
|
```bash
|
|
13
|
-
|
|
12
|
+
npm i -g forcefield
|
|
13
|
+
forcefield setup
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
One-off (no global install):
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npx -y forcefield setup
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Direct runtime package path (equivalent):
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
npx -y -p @forcefield/mcp-server forcefield setup
|
|
14
26
|
```
|
|
15
27
|
|
|
16
28
|
Primary guided workflow after setup:
|
|
@@ -19,16 +31,20 @@ Primary guided workflow after setup:
|
|
|
19
31
|
Optional troubleshooting primer:
|
|
20
32
|
- `/ff-start`
|
|
21
33
|
|
|
34
|
+
Diagnostics:
|
|
35
|
+
- `forcefield doctor`
|
|
36
|
+
|
|
22
37
|
## Binaries
|
|
23
38
|
|
|
24
39
|
This package ships:
|
|
40
|
+
- `forcefield` — unified CLI (`setup`, `doctor`, `status`, `mcp`)
|
|
25
41
|
- `forcefield-setup` — interactive/setup automation
|
|
26
42
|
- `forcefield-mcp` — MCP runtime process
|
|
27
43
|
|
|
28
44
|
Direct runtime invocation (normally done by IDE adapters):
|
|
29
45
|
|
|
30
46
|
```bash
|
|
31
|
-
npx -y @forcefield/mcp-server forcefield-mcp
|
|
47
|
+
npx -y -p @forcefield/mcp-server forcefield-mcp
|
|
32
48
|
```
|
|
33
49
|
|
|
34
50
|
## Setup Auth Contract
|
|
@@ -63,7 +79,7 @@ Open `http://localhost:3000`.
|
|
|
63
79
|
|
|
64
80
|
## Release Safety
|
|
65
81
|
|
|
66
|
-
- `publishConfig.access` is `
|
|
82
|
+
- `publishConfig.access` is `public`
|
|
67
83
|
- default dist-tag is `beta`
|
|
68
84
|
- release guard: `pnpm run release:check`
|
|
69
85
|
|