rust-faf-mcp 0.7.0 → 0.7.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.
- package/README.md +19 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
**Persistent Project Context for Rust MCP clients. Native. Fast. cargo install**
|
|
8
8
|
|
|
9
|
-
**The Table-of-8 Edition (v0.7.
|
|
9
|
+
**The Table-of-8 Edition (v0.7.1)** — `one.faf/rust-faf-mcp` · **rmcp 3.0.1** (MCP Tier 1 foundation) · **faf-rust-sdk 3.1** (the same always-33 kernel `faf-wasm-sdk` uses) · solid cargo-native Rust MCP for Rust devs
|
|
10
10
|
|
|
11
|
-
**v0.7.
|
|
11
|
+
**v0.7.1** — Pin the install. PATH `rust-faf-mcp` is not the pin. See [CHANGELOG](./CHANGELOG.md#071---2026-09-02--the-table-of-8-edition).
|
|
12
12
|
|
|
13
13
|
**FAF defines. MD instructs. AI codes.**
|
|
14
14
|
|
|
@@ -25,19 +25,18 @@ Rust-native [MCP](https://modelcontextprotocol.io) (Model Context Protocol) serv
|
|
|
25
25
|
## Quickstart
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
|
-
# Rust toolchain:
|
|
29
|
-
cargo install rust-faf-mcp
|
|
28
|
+
# Rust toolchain (install):
|
|
29
|
+
cargo install rust-faf-mcp --version 0.7.1
|
|
30
30
|
|
|
31
|
-
# No Rust (downloads GH Release binary for darwin/linux
|
|
32
|
-
npx rust-faf-mcp
|
|
31
|
+
# No Rust (try — downloads GH Release binary for darwin/linux):
|
|
32
|
+
npx --yes rust-faf-mcp@0.7.1
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
-
|
|
36
|
-
Then point any MCP client at it:
|
|
35
|
+
Point an MCP client at the **pin**. A bare `rust-faf-mcp` on PATH may be an old Homebrew binary.
|
|
37
36
|
|
|
38
37
|
```bash
|
|
39
38
|
# Claude Code
|
|
40
|
-
claude mcp add faf rust-faf-mcp
|
|
39
|
+
claude mcp add faf -- npx --yes rust-faf-mcp@0.7.1
|
|
41
40
|
```
|
|
42
41
|
|
|
43
42
|
```jsonc
|
|
@@ -45,18 +44,24 @@ claude mcp add faf rust-faf-mcp
|
|
|
45
44
|
{
|
|
46
45
|
"mcpServers": {
|
|
47
46
|
"faf": {
|
|
48
|
-
"command": "
|
|
47
|
+
"command": "npx",
|
|
48
|
+
"args": ["--yes", "rust-faf-mcp@0.7.1"]
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
+
After `cargo install rust-faf-mcp --version 0.7.1`, `"command": "rust-faf-mcp"` is the install. Until you have proven that binary, use the npx pin.
|
|
55
|
+
|
|
54
56
|
No flags, no config files, no network listener. Pure stdio JSON-RPC.
|
|
55
57
|
|
|
56
|
-
Or via Homebrew (macOS, pre-built)
|
|
58
|
+
Or via Homebrew (macOS, pre-built). If you already have it, upgrade — an old keg can sit on PATH as `rust-faf-mcp`:
|
|
57
59
|
|
|
58
60
|
```bash
|
|
61
|
+
brew update
|
|
59
62
|
brew install Wolfe-Jam/faf/rust-faf-mcp
|
|
63
|
+
# already installed:
|
|
64
|
+
brew upgrade Wolfe-Jam/faf/rust-faf-mcp
|
|
60
65
|
```
|
|
61
66
|
|
|
62
67
|
## One command, done forever
|
|
@@ -103,7 +108,7 @@ instant_context:
|
|
|
103
108
|
test: cargo test
|
|
104
109
|
stack:
|
|
105
110
|
backend: Rust
|
|
106
|
-
|
|
111
|
+
build: cargo
|
|
107
112
|
```
|
|
108
113
|
|
|
109
114
|
Every AI agent reads this once and knows exactly what you're building. No 20-minute onboarding. No wrong assumptions.
|
|
@@ -208,7 +213,8 @@ If `rust-faf-mcp` has been useful, consider starring the repo — it helps other
|
|
|
208
213
|
## Links
|
|
209
214
|
|
|
210
215
|
- [crates.io/crates/rust-faf-mcp](https://crates.io/crates/rust-faf-mcp)
|
|
211
|
-
- [npmjs.com/package/rust-faf-mcp](https://www.npmjs.com/package/rust-faf-mcp) — `npx rust-faf-mcp` (no Rust toolchain; downloads GH Release binary)
|
|
216
|
+
- [npmjs.com/package/rust-faf-mcp](https://www.npmjs.com/package/rust-faf-mcp) — `npx --yes rust-faf-mcp@0.7.1` (no Rust toolchain; downloads GH Release binary)
|
|
217
|
+
|
|
212
218
|
- [Dual-package publish guide](https://github.com/Wolfe-Jam/mcp-better/blob/main/docs/DUAL-PACKAGE-RUST-MCP.md) — cargo + npm (this server is the product example)
|
|
213
219
|
- [docs/DUAL-PACKAGE.md](./docs/DUAL-PACKAGE.md) — pointer + OIDC docs for this repo
|
|
214
220
|
- [docs/SKILLS-OVER-MCP.md](./docs/SKILLS-OVER-MCP.md) — J1 Agent Skill `faf-context` (skills/list · digests)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rust-faf-mcp",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"mcpName": "one.faf/rust-faf-mcp",
|
|
5
5
|
"description": "Persistent project context — Rust-native MCP server. IANA-registered .faf format. npm shim downloads the native binary from GitHub Releases.",
|
|
6
6
|
"license": "MIT",
|