claude-faf-mcp 2.4.1 → 2.4.2
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/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
|
@@ -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.2",
|
|
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",
|