claude-faf-mcp 3.2.1 → 3.3.0

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/CHANGELOG.md CHANGED
@@ -5,6 +5,30 @@ All notable changes to claude-faf-mcp will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [3.3.0] - 2025-11-12
9
+
10
+ ### Added
11
+ - **Desktop Extension (.mcpb)** - One-click installation bundle with branded FAF orange icon
12
+ - Packaged .mcpb format for drag-and-drop installation in Claude Desktop
13
+ - Orange smiley icon displays in all MCP server views
14
+ - Available from GitHub releases page
15
+ - **MCP Protocol Icons** - Added full icon set (48x48, 128x128, 256x256, 512x512) to server.json
16
+ - Icons hosted on GitHub raw URLs for registry display
17
+ - Proper MIME types and size specifications
18
+
19
+ ### Changed
20
+ - **One-Command Installation** - Moved faf-cli from peerDependencies to dependencies
21
+ - `npm install -g claude-faf-mcp` now auto-installs both packages
22
+ - Dual download metrics maintained (both packages counted separately)
23
+ - Eliminated manual two-step installation process
24
+ - **README Restructure** - Added two installation options
25
+ - Option 1: npm (one command, no config editing)
26
+ - Option 2: Desktop Extension (with branded icon)
27
+ - Clear documentation of path resolution system
28
+
29
+ ### Installation Experience
30
+ This release perfects the installation flow: users get one-command simplicity while we maintain accurate download metrics for both claude-faf-mcp and faf-cli packages.
31
+
8
32
  ## [3.2.0] - 2025-11-10
9
33
 
10
34
  ### Added
package/README.md CHANGED
@@ -52,25 +52,17 @@ At 55% you are building your project with half a blueprint and basically flippin
52
52
 
53
53
  ## ⚡ Quick Start
54
54
 
55
- **⚠️ INSTALLATION ORDER REQUIRED:**
55
+ ### Option 1: npm (One Command 🚀)
56
56
 
57
- **Step 1: Install CLI First (Required)**
58
- ```bash
59
- npm install -g faf-cli
60
- ```
57
+ **One command installs everything:**
61
58
 
62
- **Step 2: Then Install MCP Server**
63
59
  ```bash
64
- # Via npx (recommended - always latest)
65
- npx @modelcontextprotocol/inspector npx -y claude-faf-mcp
66
-
67
- # Or install globally
68
60
  npm install -g claude-faf-mcp
69
61
  ```
70
62
 
71
- **Why this order?** MCP auto-detects CLI at startup. Installing MCP first will show warnings. Always install faf-cli before claude-faf-mcp.
63
+ That's it! Auto-installs faf-cli + MCP server. Both get download metrics.
72
64
 
73
- **Claude Desktop Configuration:**
65
+ **Configure Claude Desktop:**
74
66
  ```json
75
67
  {
76
68
  "mcpServers": {
@@ -82,6 +74,34 @@ npm install -g claude-faf-mcp
82
74
  }
83
75
  ```
84
76
 
77
+ Restart Claude Desktop and you're ready!
78
+
79
+ ---
80
+
81
+ ### Option 2: Desktop Extension (With Icon 🧡)
82
+
83
+ **Get the FAF orange icon in Claude Desktop!**
84
+
85
+ **Step 1: Install CLI**
86
+ ```bash
87
+ npm install -g faf-cli
88
+ ```
89
+
90
+ **Step 2: Install Desktop Extension**
91
+ 1. **Download** the `.mcpb` file:
92
+ https://github.com/Wolfe-Jam/claude-faf-mcp/releases/latest
93
+
94
+ 2. **Install in Claude Desktop:**
95
+ - Settings → Extensions → Advanced settings
96
+ - Click "Install Extension"
97
+ - Select `claude-faf-mcp-v3.2.1.mcpb`
98
+ - Restart Claude Desktop
99
+
100
+ 3. **Verify the FAF orange icon** shows in your MCP list!
101
+
102
+ **Why this is easier:** No config file editing, auto-detects CLI, branded icon everywhere.
103
+
104
+
85
105
  ---
86
106
 
87
107
  ## 📁 Projects Convention
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-faf-mcp",
3
- "version": "3.2.1",
3
+ "version": "3.3.0",
4
4
  "mcpName": "io.github.Wolfe-Jam/claude-faf-mcp",
5
5
  "description": "IANA-registered format (application/vnd.faf+yaml) • Persistent project context • MCP server for Claude Desktop • MIT License",
6
6
  "icon": "./assets/icons/faf-icon-256.png",
@@ -119,10 +119,8 @@
119
119
  "publishConfig": {
120
120
  "access": "public"
121
121
  },
122
- "peerDependencies": {
123
- "faf-cli": ">=3.1.1"
124
- },
125
122
  "dependencies": {
123
+ "faf-cli": ">=3.1.1",
126
124
  "@modelcontextprotocol/sdk": "^1.20.1",
127
125
  "yaml": "^2.4.1"
128
126
  },