fa-mcp-sdk 0.4.14 → 0.4.17
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.
|
@@ -66,10 +66,10 @@ node deploy/srv.cjs <command> [options]
|
|
|
66
66
|
./deploy/srv.cjs delete -n custom-service
|
|
67
67
|
|
|
68
68
|
# With a specific port
|
|
69
|
-
./deploy/srv.cjs delete -p
|
|
69
|
+
./deploy/srv.cjs delete -p 1234
|
|
70
70
|
|
|
71
71
|
# Combined params
|
|
72
|
-
./deploy/srv.cjs d -n custom-service -p
|
|
72
|
+
./deploy/srv.cjs d -n custom-service -p 1234
|
|
73
73
|
```
|
|
74
74
|
|
|
75
75
|
**What happens:**
|
|
@@ -88,7 +88,7 @@ node deploy/srv.cjs <command> [options]
|
|
|
88
88
|
./deploy/srv.cjs r
|
|
89
89
|
|
|
90
90
|
# With params
|
|
91
|
-
./deploy/srv.cjs r -n custom-service -v 22.17.1 -p
|
|
91
|
+
./deploy/srv.cjs r -n custom-service -v 22.17.1 -p 1234
|
|
92
92
|
```
|
|
93
93
|
|
|
94
94
|
**What happens:**
|
|
@@ -206,5 +206,20 @@ journalctl -u <serviceName> --since "1 hour ago"
|
|
|
206
206
|
### Manual control
|
|
207
207
|
|
|
208
208
|
```bash
|
|
209
|
-
|
|
209
|
+
systemctl start|stop|restart|disable|status <serviceName>
|
|
210
210
|
```
|
|
211
|
+
|
|
212
|
+
```bash
|
|
213
|
+
# Show all loaded service units
|
|
214
|
+
systemctl list-units --type=service
|
|
215
|
+
|
|
216
|
+
# Show only running services
|
|
217
|
+
systemctl list-units --type=service --state=running
|
|
218
|
+
|
|
219
|
+
# Show all loaded service units and their status
|
|
220
|
+
systemctl list-units --type=service --state=active,inactive,failed
|
|
221
|
+
|
|
222
|
+
# Show all services, including inactive and disabled
|
|
223
|
+
systemctl list-unit-files --type=service
|
|
224
|
+
```
|
|
225
|
+
|
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.4.
|
|
4
|
+
"version": "0.4.17",
|
|
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",
|
|
File without changes
|