faf-mcp 1.0.6 โ 1.1.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/.faf +10 -0
- package/CLAUDE.md +14 -0
- package/README.md +59 -39
- package/package.json +3 -2
- package/project.faf +125 -0
package/.faf
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
project:
|
|
2
|
+
name: faf-mcp
|
|
3
|
+
goal: Universal MCP server for all platforms
|
|
4
|
+
instant_context:
|
|
5
|
+
tech_stack: Node.js/TypeScript
|
|
6
|
+
main_language: TypeScript
|
|
7
|
+
what_building: Universal FAF MCP Server - AI Context Intelligence for All Platforms
|
|
8
|
+
metadata:
|
|
9
|
+
last_claude_sync: 2025-11-13T20:02:49.198Z
|
|
10
|
+
bi_sync: active
|
package/CLAUDE.md
CHANGED
|
@@ -13,6 +13,20 @@
|
|
|
13
13
|
- **Stack:** Node.js/TypeScript
|
|
14
14
|
- **Quality:** F1-INSPIRED (Championship Performance)
|
|
15
15
|
|
|
16
|
+
## ๐ก Quick Start for AI
|
|
17
|
+
|
|
18
|
+
**Q: How do I get started?**
|
|
19
|
+
|
|
20
|
+
**A: Just USE FAF**
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
Use FAF to initialize your project
|
|
24
|
+
Use FAF to sync my project.faf to all platforms
|
|
25
|
+
Use FAF to score my AI-readiness
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
That's it! Start every prompt with "**Use FAF**" and the MCP tools will handle the rest.
|
|
29
|
+
|
|
16
30
|
### Our Mission - Universal MCP Integration
|
|
17
31
|
|
|
18
32
|
**v1.0.0 Launch: PLATFORM-AGNOSTIC**
|
package/README.md
CHANGED
|
@@ -1,21 +1,12 @@
|
|
|
1
1
|
<div style="display: flex; align-items: center; gap: 12px;">
|
|
2
2
|
<img src="https://raw.githubusercontent.com/Wolfe-Jam/faf/main/assets/logos/orange-smiley.svg" alt="FAF" width="40" />
|
|
3
3
|
<div>
|
|
4
|
-
<h1 style="margin: 0; color: #FF8C00;">
|
|
4
|
+
<h1 style="margin: 0; color: #FF8C00;">faf-mcp | use>faf</h1>
|
|
5
5
|
<p style="margin: 4px 0 0 0;"><strong>IANA-Registered Format for AI Context</strong> ยท <code>application/vnd.faf+yaml</code></p>
|
|
6
6
|
</div>
|
|
7
7
|
</div>
|
|
8
8
|
|
|
9
|
-
>
|
|
10
|
-
> Works with Claude Desktop, Cursor, Windsurf, and all MCP-compatible platforms
|
|
11
|
-
|
|
12
|
-
## ๐ก Quick Start
|
|
13
|
-
|
|
14
|
-
```
|
|
15
|
-
Use FAF to initialize your project
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
That's it! Start every prompt with "**Use FAF**" and the MCP tools will handle the rest.
|
|
9
|
+
> Universal MCP server for .FAF (Foundational AI-context Format) with 50 tools - Persistent project context for Cursor, Windsurf, Cline, VS Code, and all MCP-compatible platforms (including [Claude Desktop](https://github.com/Wolfe-Jam/claude-faf-mcp))
|
|
19
10
|
|
|
20
11
|
[](https://www.npmjs.com/package/faf-mcp)
|
|
21
12
|
[](https://discord.com/invite/3pjzpKsP)
|
|
@@ -25,17 +16,48 @@ That's it! Start every prompt with "**Use FAF**" and the MCP tools will handle t
|
|
|
25
16
|
|
|
26
17
|
---
|
|
27
18
|
|
|
28
|
-
##
|
|
19
|
+
## โก Quick Start
|
|
29
20
|
|
|
30
|
-
**
|
|
21
|
+
**1. Install:**
|
|
31
22
|
|
|
32
|
-
|
|
23
|
+
```bash
|
|
24
|
+
npm install -g faf-mcp
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
**2. Copy and paste this to your AI:**
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
Install the FAF MCP server: npm install -g faf-mcp, then add this to my MCP config: {"mcpServers": {"faf": {"command": "npx", "args": ["-y", "faf-mcp"]}}} and restart.
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Platform-Specific Setup
|
|
34
|
+
|
|
35
|
+
**Cursor IDE:** Add to `~/.cursor/mcp.json` ([setup guide](https://docs.cursor.com/context/model-context-protocol))
|
|
36
|
+
|
|
37
|
+
**Windsurf Editor:** Add to `~/.codeium/windsurf/mcp_config.json` ([Cascade docs](https://docs.windsurf.com/windsurf/cascade/mcp))
|
|
38
|
+
|
|
39
|
+
**Cline:** Add to Cline's MCP settings
|
|
40
|
+
|
|
41
|
+
**VS Code:** Install MCP extension, then add server config
|
|
42
|
+
|
|
43
|
+
**Claude Desktop:** Use the [dedicated claude-faf-mcp package](https://github.com/Wolfe-Jam/claude-faf-mcp) for optimized Claude integration
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## ๐ AI-Readiness Scorecard
|
|
48
|
+
|
|
49
|
+
> **"README for the AI era"** โ Google Gemini
|
|
33
50
|
|
|
34
51
|
<div align="center">
|
|
35
|
-
<img src="
|
|
36
|
-
<p><em>project.faf
|
|
52
|
+
<img src="https://raw.githubusercontent.com/Wolfe-Jam/faf-mcp/main/packages/faf-mcp/assets/Project-faf-pckg-json-README.png" alt="project.faf file positioning" width="600" />
|
|
53
|
+
<p><em><strong>project.faf is to AI context what package.json is to dependencies</strong></em></p>
|
|
54
|
+
<p><em>Lives at the project root, between package.json and README.md</em></p>
|
|
37
55
|
</div>
|
|
38
56
|
|
|
57
|
+
**The closer you get to 100% the better AI can assist you.**
|
|
58
|
+
|
|
59
|
+
At 55% you are building your project with half a blueprint and basically flipping a coin with AI. .FAF defines, and AI becomes optimized for Context with the project.faf file.
|
|
60
|
+
|
|
39
61
|
```
|
|
40
62
|
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
41
63
|
๐๏ธ FAF AI-READINESS SCORE: 100/100 โ PODIUM EDITION
|
|
@@ -59,24 +81,6 @@ At 55% you are building your project with half a blueprint and basically flippin
|
|
|
59
81
|
|
|
60
82
|
---
|
|
61
83
|
|
|
62
|
-
## โก Quick Start
|
|
63
|
-
|
|
64
|
-
**Copy and paste this to Claude/your AI:**
|
|
65
|
-
|
|
66
|
-
> Install the FAF MCP server: `npm install -g faf-mcp`, then add this to my MCP config: `{"mcpServers": {"faf": {"command": "npx", "args": ["-y", "faf-mcp"]}}}` and restart.
|
|
67
|
-
|
|
68
|
-
### Platform-Specific Setup
|
|
69
|
-
|
|
70
|
-
**Claude Desktop:** Add to `claude_desktop_config.json` ([location guide](https://wolfe-jam.github.io/claude-faf-mcp/))
|
|
71
|
-
|
|
72
|
-
**Cursor IDE:** Add to `~/.cursor/mcp.json` ([setup guide](https://docs.cursor.com/context/model-context-protocol))
|
|
73
|
-
|
|
74
|
-
**Windsurf Editor:** Add to `~/.codeium/windsurf/mcp_config.json` ([Cascade docs](https://docs.windsurf.com/windsurf/cascade/mcp))
|
|
75
|
-
|
|
76
|
-
**VS Code:** Install MCP extension, then add server config
|
|
77
|
-
|
|
78
|
-
---
|
|
79
|
-
|
|
80
84
|
## ๐ฏ Want a Platform-Specific Package?
|
|
81
85
|
|
|
82
86
|
We're launching `faf-mcp` as the universal package. If you'd prefer a dedicated package for your platform (like `cursor-faf-mcp` or `windsurf-faf-mcp` with tailored setup instructions), **[request it here](https://github.com/Wolfe-Jam/faf-mcp/issues)**.
|
|
@@ -85,9 +89,9 @@ We'll publish platform-specific packages based on demand.
|
|
|
85
89
|
|
|
86
90
|
---
|
|
87
91
|
|
|
88
|
-
## ๐ฌ
|
|
92
|
+
## ๐ฌ use>faf | Prompt Pattern
|
|
89
93
|
|
|
90
|
-
**
|
|
94
|
+
**Start every prompt with "Use FAF"** to invoke MCP tools directly:
|
|
91
95
|
|
|
92
96
|
### All Platforms
|
|
93
97
|
```
|
|
@@ -137,11 +141,13 @@ Use FAF to create platform sync files
|
|
|
137
141
|
```
|
|
138
142
|
Platform Context Protocol
|
|
139
143
|
โโโโโโโโ โโโโโโโ โโโโโโโโ
|
|
140
|
-
|
|
144
|
+
Any IDE โ IANA Format โ Open Protocol
|
|
141
145
|
Cursor โ .faf โ MCP
|
|
142
146
|
Windsurf โ .faf โ MCP
|
|
147
|
+
Cline โ .faf โ MCP
|
|
143
148
|
VS Code โ .faf โ MCP
|
|
144
|
-
|
|
149
|
+
Claude โ .faf โ MCP
|
|
150
|
+
Gemini โ .faf โ MCP
|
|
145
151
|
```
|
|
146
152
|
|
|
147
153
|
**.FAF is the foundational, universal base layer** for any platform using the Model Context Protocol. It provides the standardized Context that makes MCP work for everyone.
|
|
@@ -185,7 +191,17 @@ Use FAF to create platform sync files
|
|
|
185
191
|
|
|
186
192
|
## ๐ Why FAF?
|
|
187
193
|
|
|
188
|
-
|
|
194
|
+
### Championship Credentials
|
|
195
|
+
|
|
196
|
+
**๐
Creators of the Format** - We designed .FAF (IANA-registered `application/vnd.faf+yaml`)
|
|
197
|
+
**๐
First & Only** - Persistent Project Context MCP Server approved by Anthropic
|
|
198
|
+
**๐
Creators of Context-Mirroring** - faf_bi_sync creates native files for all platforms
|
|
199
|
+
**๐
Google Chrome-Approved** - Published Chrome Extension
|
|
200
|
+
**๐
12K+ npm Downloads** - Proven adoption across the ecosystem
|
|
201
|
+
|
|
202
|
+
> "README for the AI era" โ Google Gemini
|
|
203
|
+
|
|
204
|
+
### The FAF Advantage
|
|
189
205
|
|
|
190
206
|
**Persistent Context** - Your project's DNA lives in `project.faf`, readable by any AI or human
|
|
191
207
|
|
|
@@ -193,6 +209,10 @@ Use FAF to create platform sync files
|
|
|
193
209
|
|
|
194
210
|
**Zero Setup Tax** - One file (`project.faf`) eliminates AI context setup across your entire team
|
|
195
211
|
|
|
212
|
+
**FREE FOREVER** - MIT License, open source, no subscription
|
|
213
|
+
|
|
214
|
+
**All Boats Rise Together** - Improving projects, AI performance, code quality, speed to market for everyone
|
|
215
|
+
|
|
196
216
|
**Championship Engineering** - F1-inspired performance with strict TypeScript, zero runtime errors
|
|
197
217
|
|
|
198
218
|
---
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "faf-mcp",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"mcpName": "io.github.Wolfe-Jam/faf-mcp",
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "faf-mcp | use>faf โข IANA-registered format (application/vnd.faf+yaml) โข Universal MCP server for Cursor, Windsurf, Cline, VS Code, and all platforms",
|
|
6
6
|
"icon": "./assets/icons/faf-icon-256.png",
|
|
7
7
|
"logo": "./assets/icons/faf-icon-256.png",
|
|
8
8
|
"displayName": ".faf ๐งกโก๏ธ",
|
|
@@ -85,6 +85,7 @@
|
|
|
85
85
|
"README.md",
|
|
86
86
|
"CLAUDE.md",
|
|
87
87
|
".faf",
|
|
88
|
+
"project.faf",
|
|
88
89
|
"LICENSE",
|
|
89
90
|
"CHANGELOG.md"
|
|
90
91
|
],
|
package/project.faf
ADDED
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
faf_version: 2.5.0
|
|
2
|
+
ai_scoring_system: 2025-09-20
|
|
3
|
+
ai_score: 85%
|
|
4
|
+
ai_confidence: HIGH
|
|
5
|
+
ai_value: 30_seconds_replaces_20_minutes_of_questions
|
|
6
|
+
ai_tldr:
|
|
7
|
+
project: Faf Mcp - "USE>FAFโข - IANA-registered format (application/vnd.faf+yaml)
|
|
8
|
+
โข Universal AI context โข MCP server for all platforms โข Start with 'Use
|
|
9
|
+
FAF'"
|
|
10
|
+
stack: CLI/TypeScript/TypeScript (tsc)/npm registry/Node.js
|
|
11
|
+
quality_bar: ZERO_ERRORS_F1_STANDARDS
|
|
12
|
+
current_focus: Production deployment preparation
|
|
13
|
+
your_role: Build features with perfect context
|
|
14
|
+
instant_context:
|
|
15
|
+
what_building: USE>FAFโข - IANA-registered format (application/vnd.faf+yaml) โข
|
|
16
|
+
Universal AI context โข MCP server for all platforms โข Start with 'Use FAF'
|
|
17
|
+
tech_stack: CLI/TypeScript/TypeScript (tsc)/npm registry/Node.js
|
|
18
|
+
main_language: TypeScript
|
|
19
|
+
deployment: npm registry
|
|
20
|
+
key_files:
|
|
21
|
+
- package.json
|
|
22
|
+
- tsconfig.json
|
|
23
|
+
context_quality:
|
|
24
|
+
slots_filled: 16/21 (76%)
|
|
25
|
+
ai_confidence: GOOD
|
|
26
|
+
handoff_ready: true
|
|
27
|
+
missing_context:
|
|
28
|
+
- CI/CD pipeline
|
|
29
|
+
- Database
|
|
30
|
+
project:
|
|
31
|
+
name: Faf Mcp
|
|
32
|
+
goal: USE>FAFโข - IANA-registered format (application/vnd.faf+yaml) โข Universal
|
|
33
|
+
AI context โข MCP server for all platforms โข Start with 'Use FAF'
|
|
34
|
+
main_language: TypeScript
|
|
35
|
+
type: cli-ts
|
|
36
|
+
generated: 2025-11-13T20:02:03.291Z
|
|
37
|
+
mission: ๐ Make Your AI Happy! ๐งก Trust-Driven ๐ค
|
|
38
|
+
revolution: 30 seconds replaces 20 minutes of questions
|
|
39
|
+
brand: F1-Inspired Software Engineering - Championship AI Context
|
|
40
|
+
ai_instructions:
|
|
41
|
+
how_to_start: "Just USE FAF - Start every prompt with 'Use FAF to...' and MCP tools handle the rest"
|
|
42
|
+
priority_order:
|
|
43
|
+
- 1. Read THIS .faf file first
|
|
44
|
+
- 2. Check CLAUDE.md for session context
|
|
45
|
+
- 3. Review package.json for dependencies
|
|
46
|
+
quick_commands:
|
|
47
|
+
- "Use FAF to initialize your project"
|
|
48
|
+
- "Use FAF to sync my project.faf to all platforms"
|
|
49
|
+
- "Use FAF to score my AI-readiness"
|
|
50
|
+
working_style:
|
|
51
|
+
code_first: true
|
|
52
|
+
explanations: minimal
|
|
53
|
+
quality_bar: zero_errors
|
|
54
|
+
testing: required
|
|
55
|
+
warnings:
|
|
56
|
+
- Never modify dial components without approval
|
|
57
|
+
- All TypeScript must pass strict mode
|
|
58
|
+
- Test coverage required for new features
|
|
59
|
+
stack:
|
|
60
|
+
frontend: CLI
|
|
61
|
+
css_framework: None
|
|
62
|
+
ui_library: None
|
|
63
|
+
state_management: None
|
|
64
|
+
backend: Node.js
|
|
65
|
+
runtime: Node.js >=18.0.0
|
|
66
|
+
database: None
|
|
67
|
+
build: TypeScript (tsc)
|
|
68
|
+
package_manager: npm
|
|
69
|
+
api_type: CLI
|
|
70
|
+
hosting: npm registry
|
|
71
|
+
cicd: None
|
|
72
|
+
preferences:
|
|
73
|
+
quality_bar: zero_errors
|
|
74
|
+
commit_style: conventional_emoji
|
|
75
|
+
response_style: concise_code_first
|
|
76
|
+
explanation_level: minimal
|
|
77
|
+
communication: direct
|
|
78
|
+
testing: required
|
|
79
|
+
documentation: as_needed
|
|
80
|
+
state:
|
|
81
|
+
phase: development
|
|
82
|
+
version: 1.0.0
|
|
83
|
+
focus: production_deployment
|
|
84
|
+
status: green_flag
|
|
85
|
+
next_milestone: npm_publication
|
|
86
|
+
blockers: null
|
|
87
|
+
tags:
|
|
88
|
+
auto_generated:
|
|
89
|
+
- faf-mcp
|
|
90
|
+
- cli
|
|
91
|
+
- typescript
|
|
92
|
+
- typescript-(tsc)
|
|
93
|
+
- npm-registry
|
|
94
|
+
- node.js
|
|
95
|
+
smart_defaults:
|
|
96
|
+
- .faf
|
|
97
|
+
- ai-ready
|
|
98
|
+
- "2025"
|
|
99
|
+
- software
|
|
100
|
+
- open-source
|
|
101
|
+
user_defined: null
|
|
102
|
+
human_context:
|
|
103
|
+
who: Development teams
|
|
104
|
+
what: "everything:"
|
|
105
|
+
why: To MCP work for everyone
|
|
106
|
+
where: Web platform
|
|
107
|
+
when: Production/Stable
|
|
108
|
+
how: Use FAF to initialize your project
|
|
109
|
+
additional_context: null
|
|
110
|
+
context_score: 0
|
|
111
|
+
total_prd_score: 85
|
|
112
|
+
success_rate: 50%
|
|
113
|
+
ai_scoring_details:
|
|
114
|
+
system_date: 2025-09-20
|
|
115
|
+
slot_based_percentage: 76
|
|
116
|
+
ai_score: 85
|
|
117
|
+
total_slots: 21
|
|
118
|
+
filled_slots: 16
|
|
119
|
+
scoring_method: Honest percentage - no fake minimums
|
|
120
|
+
trust_embedded: COUNT ONCE architecture - trust MY embedded scores
|
|
121
|
+
faf_dna:
|
|
122
|
+
birth_dna: 22
|
|
123
|
+
birth_certificate: FAF-2025-FAFMCP-NR94
|
|
124
|
+
birth_date: 2025-11-13T20:02:03.306Z
|
|
125
|
+
current_score: 83
|