fa-mcp-sdk 0.2.138 → 0.2.140

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/bin/fa-mcp.js CHANGED
@@ -894,6 +894,7 @@ certificate's public and private keys`,
894
894
  await fs.mkdir(testsTargetPath, { recursive: true });
895
895
  await this.copyDirectory(path.join(PROJ_ROOT, 'src/tests'), testsTargetPath);
896
896
  await fs.copyFile(path.join(targetPath, '.env.example'), path.join(targetPath, '.env'));
897
+ await fs.copyFile(path.join(targetPath, 'cli-template/gitignore'), path.join(targetPath, '.gitignore'));
897
898
 
898
899
  // Rename mcp-template.com.conf if mcp.domain is provided
899
900
  const mcpDomain = config['mcp.domain'];
@@ -0,0 +1,87 @@
1
+ # Dependency directories
2
+ node_modules/
3
+ jspm_packages/
4
+
5
+ # Build outputs
6
+ dist/
7
+ build/
8
+ out/
9
+ .next/
10
+ .nuxt/
11
+ .cache/
12
+
13
+ # Environment variables
14
+ .env
15
+ .env.local
16
+ .env.development.local
17
+ .env.test.local
18
+ .env.production.local
19
+
20
+ # Logs
21
+ logs
22
+ *.log
23
+ npm-debug.log*
24
+ yarn-debug.log*
25
+ yarn-error.log*
26
+ lerna-debug.log*
27
+
28
+ # Coverage directory used by tools like istanbul
29
+ coverage/
30
+ .nyc_output/
31
+
32
+ # IDE / editors
33
+ .idea/
34
+ .vscode/
35
+ *.swp
36
+ *.swo
37
+ .DS_Store
38
+ *.sublime-project
39
+ *.sublime-workspace
40
+
41
+ # Misc
42
+ Thumbs.db
43
+
44
+ # Files formed by Realtime
45
+ /_files/
46
+ /_cache/
47
+ /_data/
48
+
49
+ # DEV directories
50
+ .tmp/
51
+ temp/
52
+ /__misc/
53
+ **/_tmp/
54
+ **/_sand/
55
+
56
+ # TypeScript cache
57
+ *.tsbuildinfo
58
+
59
+ # Keep example env file
60
+ !.env.example
61
+
62
+ # OS specific files
63
+ .github
64
+
65
+ # Private exceptions
66
+ /config/local.*
67
+ local-*.*
68
+ /t.*
69
+ *.local.*
70
+ *.private.*
71
+ **/ignor.*
72
+ **/ignore.*
73
+ **/*.ignore/**
74
+ ~$*.*
75
+ *.rar
76
+
77
+ # API response logs for testing
78
+ _api_responses/
79
+ _logs/
80
+ /config.yaml
81
+ /.claude/glm.ps1
82
+
83
+ /_misc_/
84
+ /deploy/config.yml
85
+ /config/__server__/
86
+ glm.ps1
87
+ glm.sh
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "fa-mcp-sdk",
3
3
  "productName": "FA MCP SDK",
4
- "version": "0.2.138",
4
+ "version": "0.2.140",
5
5
  "description": "Core infrastructure and templates for building Model Context Protocol (MCP) servers with TypeScript",
6
6
  "type": "module",
7
7
  "main": "dist/core/index.js",