claude-faf-mcp 2.5.4 → 2.5.5
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 +6 -13
- package/dist/src/index.js +0 -0
- package/package.json +1 -1
- package/dist/src/cli.d.ts +0 -2
- package/dist/src/cli.js +0 -30
- package/dist/src/cli.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# claude-faf-mcp v2.5.
|
|
1
|
+
# claude-faf-mcp v2.5.5
|
|
2
2
|
|
|
3
3
|
<div align="center">
|
|
4
4
|
|
|
5
|
-
<img src="https://
|
|
5
|
+
<img src="https://cdn.jsdelivr.net/npm/claude-faf-mcp@latest/assets/icons/faf-icon-64.png" alt="Orange Smiley" width="48" />
|
|
6
6
|
|
|
7
7
|
**Project DNA ✨ for ANY AI** • **33+ Tools** • **Championship Scoring**
|
|
8
8
|
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
|
|
24
24
|
## 🏆 Championship Scoring System
|
|
25
25
|
|
|
26
|
-

|
|
27
27
|
|
|
28
28
|
Track your project's AI-readiness with F1-inspired tiers:
|
|
29
29
|
|
|
@@ -127,7 +127,7 @@ The `.faf` file persists across conversations - no need to re-explain your proje
|
|
|
127
127
|
## 📊 Technical Specs
|
|
128
128
|
|
|
129
129
|
```
|
|
130
|
-
Version: 2.5.
|
|
130
|
+
Version: 2.5.5
|
|
131
131
|
Performance: <11ms operations
|
|
132
132
|
TypeScript: 100% strict mode
|
|
133
133
|
Dependencies: 1 (MCP SDK only)
|
|
@@ -138,22 +138,15 @@ Coverage: 4,400+ lines
|
|
|
138
138
|
|
|
139
139
|
---
|
|
140
140
|
|
|
141
|
-
## ✨ What's New in v2.5.
|
|
141
|
+
## ✨ What's New in v2.5.5
|
|
142
142
|
|
|
143
|
-
**Image Fix Release** -
|
|
143
|
+
**Image Fix Release** - jsdelivr CDN URLs ensure reliable display across npm, GitHub, and docs.
|
|
144
144
|
- Fixed broken image links on npmjs.com package page
|
|
145
145
|
- Orange Smiley logo now renders at top
|
|
146
146
|
- Championship Score Card displays in scoring section
|
|
147
147
|
- All v2.5.2 functionality maintained
|
|
148
148
|
|
|
149
149
|
### v2.5.2 - Visual Championship Experience
|
|
150
|
-
[keep rest as-is...]
|
|
151
|
-
|
|
152
|
-
**Championship branding complete** - Orange Smiley logo & score card now display on NPM (third time's the charm! 🏆)
|
|
153
|
-
|
|
154
|
-
### v2.5.2 - Visual Championship Experience
|
|
155
|
-
|
|
156
|
-
### Visual Championship Experience!
|
|
157
150
|
- **Orange Smiley branding** - Complete visual identity on NPM
|
|
158
151
|
- **Score card screenshot** - See the actual terminal output
|
|
159
152
|
- **Championship polish** - Professional presentation
|
package/dist/src/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-faf-mcp",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.5",
|
|
4
4
|
"description": "MCP for .faf | Project DNA for true AI context in Claude Desktop ✨ - Transform projects with perfect AI understanding • 33+ tools, Championship scoring • 100% TypeScript strict 🧡 Orange Smiley MCP • FREE & Open Source",
|
|
5
5
|
"icon": "./assets/icons/faf-icon-64.png",
|
|
6
6
|
"logo": "./assets/icons/faf-icon-64.png",
|
package/dist/src/cli.d.ts
DELETED
package/dist/src/cli.js
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
"use strict";
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
const commander_1 = require("commander");
|
|
5
|
-
const server_1 = require("./server");
|
|
6
|
-
commander_1.program
|
|
7
|
-
.name('claude-faf-mcp')
|
|
8
|
-
.description('Universal FAF MCP Server for Claude - AI Context Intelligence & Project Enhancement')
|
|
9
|
-
.version('2.2.0')
|
|
10
|
-
.option('-t, --transport <type>', 'Transport type (stdio|http-sse)', 'stdio')
|
|
11
|
-
.option('-p, --port <number>', 'Port for HTTP-SSE transport', '3001')
|
|
12
|
-
.option('--faf-engine <path>', 'Path to FAF CLI engine', 'faf')
|
|
13
|
-
.option('--debug', 'Enable debug logging')
|
|
14
|
-
.action(async (options) => {
|
|
15
|
-
try {
|
|
16
|
-
const server = new server_1.ClaudeFafMcpServer({
|
|
17
|
-
transport: options.transport,
|
|
18
|
-
port: options.transport === 'http-sse' ? parseInt(options.port) : undefined,
|
|
19
|
-
fafEnginePath: options.fafEngine,
|
|
20
|
-
debug: options.debug
|
|
21
|
-
});
|
|
22
|
-
await server.start();
|
|
23
|
-
}
|
|
24
|
-
catch (error) {
|
|
25
|
-
console.error('Failed to start Claude FAF MCP Server:', error);
|
|
26
|
-
process.exit(1);
|
|
27
|
-
}
|
|
28
|
-
});
|
|
29
|
-
commander_1.program.parse();
|
|
30
|
-
//# sourceMappingURL=cli.js.map
|
package/dist/src/cli.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../../src/cli.ts"],"names":[],"mappings":";;;AAEA,yCAAoC;AACpC,qCAA8C;AAE9C,mBAAO;KACJ,IAAI,CAAC,gBAAgB,CAAC;KACtB,WAAW,CAAC,qFAAqF,CAAC;KAClG,OAAO,CAAC,OAAO,CAAC;KAChB,MAAM,CAAC,wBAAwB,EAAE,iCAAiC,EAAE,OAAO,CAAC;KAC5E,MAAM,CAAC,qBAAqB,EAAE,6BAA6B,EAAE,MAAM,CAAC;KACpE,MAAM,CAAC,qBAAqB,EAAE,wBAAwB,EAAE,KAAK,CAAC;KAC9D,MAAM,CAAC,SAAS,EAAE,sBAAsB,CAAC;KACzC,MAAM,CAAC,KAAK,EAAE,OAAO,EAAE,EAAE;IACxB,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,IAAI,2BAAkB,CAAC;YACpC,SAAS,EAAE,OAAO,CAAC,SAAS;YAC5B,IAAI,EAAE,OAAO,CAAC,SAAS,KAAK,UAAU,CAAC,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS;YAC3E,aAAa,EAAE,OAAO,CAAC,SAAS;YAChC,KAAK,EAAE,OAAO,CAAC,KAAK;SACrB,CAAC,CAAC;QAEH,MAAM,MAAM,CAAC,KAAK,EAAE,CAAC;IACvB,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,OAAO,CAAC,KAAK,CAAC,wCAAwC,EAAE,KAAK,CAAC,CAAC;QAC/D,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC;AACH,CAAC,CAAC,CAAC;AAEL,mBAAO,CAAC,KAAK,EAAE,CAAC"}
|