claude-faf-mcp 2.4.1 โ 2.4.3
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 -18
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.js +17 -0
- package/dist/src/index.js.map +1 -0
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# ๐งกโก๏ธ claude-faf-mcp v2.4.
|
|
1
|
+
# ๐งกโก๏ธ claude-faf-mcp v2.4.3 | .faf Project DNA for ANY AI โจ
|
|
2
2
|
|
|
3
3
|
<div align="center">
|
|
4
4
|
|
|
@@ -41,21 +41,25 @@ Add a .faf file to your repo and watch Claude, ChatGPT, Gemini, or any AI tool u
|
|
|
41
41
|
## โก Key Features
|
|
42
42
|
|
|
43
43
|
### Technical Excellence
|
|
44
|
-
- **Performance** - <
|
|
44
|
+
- **Performance** - <11ms operations, rigorously benchmarked
|
|
45
45
|
- **Reliability** - Extensively tested including edge cases
|
|
46
46
|
- **Type Safety** - 100% TypeScript with **FULL strict mode** ๐
|
|
47
47
|
- **Security** - Minimal dependencies (only MCP SDK)
|
|
48
48
|
- **Production Ready** - Zero-error tolerance
|
|
49
49
|
|
|
50
|
-
### ๐ NEW in v2.4
|
|
51
|
-
**
|
|
52
|
-
- โ
**Full `strict: true`** enabled with ALL safety flags
|
|
53
|
-
- โ
**Zero TypeScript errors** across 1,400+ lines
|
|
54
|
-
- โ
**35/35 tests passing** - Type safety doesn't break functionality
|
|
55
|
-
- โ
**Performance maintained** - Still sub-millisecond operations
|
|
56
|
-
- โ
**Build time unchanged** - Sub-2 second builds
|
|
50
|
+
### ๐ NEW in v2.4: TypeScript Championship Edition
|
|
51
|
+
**Engineering Excellence: FULL Type Safety with ZERO Performance Loss**
|
|
57
52
|
|
|
58
|
-
|
|
53
|
+
We achieved what many said was impossible - enabling TypeScript's strictest safety settings while improving upon blazing-fast performance. This proves that code quality and speed aren't mutually exclusive.
|
|
54
|
+
|
|
55
|
+
**Championship Achievements:**
|
|
56
|
+
- โ
**100% TypeScript Strict Mode** - Every safety flag enabled
|
|
57
|
+
- โ
**<11ms Performance Platform** - Fast operations as foundation
|
|
58
|
+
- โ
**35/35 Tests Passing** - Complete reliability
|
|
59
|
+
- โ
**4,400+ Lines Protected** - Full type coverage
|
|
60
|
+
- โ
**Zero Build Errors** - Clean compilation
|
|
61
|
+
|
|
62
|
+
**This is the future:** Maximum safety WITHOUT sacrificing speed! ๐๏ธ๐ก๏ธ
|
|
59
63
|
|
|
60
64
|
## ๐ Quick Install
|
|
61
65
|
|
|
@@ -85,7 +89,7 @@ The MCP server that brings .faf format power to Claude Desktop. Drop any project
|
|
|
85
89
|
|
|
86
90
|
- โ
**Zero Configuration** - Works instantly
|
|
87
91
|
- โ
**33+ Tools** - Complete file operations
|
|
88
|
-
- โ
**<
|
|
92
|
+
- โ
**<11ms Performance** - F1-inspired speed
|
|
89
93
|
- โ
**Bi-directional Sync** - .faf โ claude.md
|
|
90
94
|
- โ
**99% AI Readiness** - Guaranteed understanding
|
|
91
95
|
|
|
@@ -132,13 +136,13 @@ Add to Claude Desktop configuration:
|
|
|
132
136
|
|
|
133
137
|
```
|
|
134
138
|
๐ Status: PRODUCTION
|
|
135
|
-
โโ ๐ Version: 2.4.
|
|
136
|
-
โโ ๐ TypeScript:
|
|
137
|
-
โโ ๐ Performance: <
|
|
138
|
-
โโ ๐ฆ Dependencies: 1 (MCP SDK
|
|
139
|
-
โโ ๐งช Tests: 35/35 passing
|
|
140
|
-
โโ ๐จ Build: Zero errors
|
|
141
|
-
โโ
|
|
139
|
+
โโ ๐ Version: 2.4.3
|
|
140
|
+
โโ ๐ TypeScript: Full Strict Mode
|
|
141
|
+
โโ ๐ Performance: <11ms operations
|
|
142
|
+
โโ ๐ฆ Dependencies: 1 (MCP SDK - THE platform)
|
|
143
|
+
โโ ๐งช Tests: 35/35 passing (3 suites)
|
|
144
|
+
โโ ๐จ Build: Zero errors
|
|
145
|
+
โโ ๐ Codebase: 4,400+ lines protected
|
|
142
146
|
```
|
|
143
147
|
|
|
144
148
|
## ๐ Development
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
"use strict";
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
const server_js_1 = require("./server.js");
|
|
5
|
+
// MCP servers run via stdio transport when launched by Claude Desktop
|
|
6
|
+
async function main() {
|
|
7
|
+
const server = new server_js_1.ClaudeFafMcpServer({
|
|
8
|
+
transport: 'stdio',
|
|
9
|
+
fafEnginePath: 'faf'
|
|
10
|
+
});
|
|
11
|
+
await server.start();
|
|
12
|
+
}
|
|
13
|
+
main().catch((error) => {
|
|
14
|
+
console.error('Failed to start MCP server:', error);
|
|
15
|
+
process.exit(1);
|
|
16
|
+
});
|
|
17
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;AAEA,2CAAiD;AAEjD,sEAAsE;AACtE,KAAK,UAAU,IAAI;IACjB,MAAM,MAAM,GAAG,IAAI,8BAAkB,CAAC;QACpC,SAAS,EAAE,OAAO;QAClB,aAAa,EAAE,KAAK;KACrB,CAAC,CAAC;IAEH,MAAM,MAAM,CAAC,KAAK,EAAE,CAAC;AACvB,CAAC;AAED,IAAI,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE;IACrB,OAAO,CAAC,KAAK,CAAC,6BAA6B,EAAE,KAAK,CAAC,CAAC;IACpD,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-faf-mcp",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.3",
|
|
4
4
|
"description": "๐งก Orange Smiley MCP - Brings .faf AI context directly into Claude Desktop. Transform any project into perfect AI context. 100% TypeScript strict mode. 100% FREE โข Open Source โข If helpful, a โญ is appreciated!",
|
|
5
|
-
"main": "dist/
|
|
5
|
+
"main": "dist/src/index.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"claude-faf-mcp": "dist/src/
|
|
7
|
+
"claude-faf-mcp": "dist/src/index.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "tsc",
|
|
@@ -70,8 +70,7 @@
|
|
|
70
70
|
"access": "public"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@modelcontextprotocol/sdk": "^1.0.0"
|
|
74
|
-
"commander": "^12.0.0"
|
|
73
|
+
"@modelcontextprotocol/sdk": "^1.0.0"
|
|
75
74
|
},
|
|
76
75
|
"devDependencies": {
|
|
77
76
|
"@jest/globals": "^30.1.2",
|