@maplezzk/mcps 1.0.24 → 1.0.29
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 +216 -11
- package/dist/commands/tools.js +22 -3
- package/dist/core/client.js +1 -1
- package/dist/core/config.js +1 -1
- package/dist/core/daemon-client.js +2 -2
- package/dist/core/pool.js +45 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,10 +6,13 @@
|
|
|
6
6
|
|
|
7
7
|
## 功能特性
|
|
8
8
|
|
|
9
|
-
- 🔌 **服务管理**:轻松添加、移除、查看和更新 MCP 服务(支持 Stdio 和
|
|
10
|
-
- 🛠️
|
|
11
|
-
- 🚀
|
|
12
|
-
- 🔄
|
|
9
|
+
- 🔌 **服务管理**:轻松添加、移除、查看和更新 MCP 服务(支持 Stdio、SSE 和 HTTP 模式)
|
|
10
|
+
- 🛠️ **工具发现**:查看已配置服务中所有可用的工具
|
|
11
|
+
- 🚀 **工具执行**:直接在命令行调用工具,支持参数自动解析
|
|
12
|
+
- 🔄 **守护进程**:保持与 MCP 服务的长连接,显著提高性能
|
|
13
|
+
- 📊 **表格输出**:清晰的服务器状态和工具列表展示
|
|
14
|
+
- 🔍 **工具筛选**:按关键词筛选工具,支持简洁模式
|
|
15
|
+
- 🚨 **详细日志**:可选的详细日志模式,方便调试
|
|
13
16
|
|
|
14
17
|
## 安装
|
|
15
18
|
|
|
@@ -17,6 +20,25 @@
|
|
|
17
20
|
npm install -g @maplezzk/mcps
|
|
18
21
|
```
|
|
19
22
|
|
|
23
|
+
## 快速开始
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
# 1. 添加一个服务
|
|
27
|
+
mcps add fetch --command uvx --args mcp-server-fetch
|
|
28
|
+
|
|
29
|
+
# 2. 启动守护进程
|
|
30
|
+
mcps start
|
|
31
|
+
|
|
32
|
+
# 3. 查看服务状态
|
|
33
|
+
mcps status
|
|
34
|
+
|
|
35
|
+
# 4. 查看可用工具
|
|
36
|
+
mcps tools fetch
|
|
37
|
+
|
|
38
|
+
# 5. 调用工具
|
|
39
|
+
mcps call fetch fetch url="https://example.com"
|
|
40
|
+
```
|
|
41
|
+
|
|
20
42
|
## 使用指南
|
|
21
43
|
|
|
22
44
|
### 1. 守护进程 (Daemon Mode)
|
|
@@ -25,12 +47,25 @@ mcps 支持守护进程模式,可以保持与 MCP 服务的长连接,显著
|
|
|
25
47
|
|
|
26
48
|
**启动守护进程:**
|
|
27
49
|
```bash
|
|
50
|
+
# 普通模式
|
|
28
51
|
mcps start
|
|
52
|
+
|
|
53
|
+
# 详细模式(显示每个服务器的连接过程和禁用的服务器)
|
|
54
|
+
mcps start --verbose
|
|
29
55
|
```
|
|
30
56
|
|
|
31
|
-
|
|
32
|
-
|
|
57
|
+
输出示例:
|
|
58
|
+
```
|
|
59
|
+
Starting daemon in background...
|
|
60
|
+
[Daemon] Connecting to 7 server(s)...
|
|
61
|
+
[Daemon] - chrome-devtools... Connected ✓
|
|
62
|
+
[Daemon] - fetch... Connected ✓
|
|
63
|
+
[Daemon] - gitlab-mr-creator... Connected ✓
|
|
64
|
+
[Daemon] Connected: 7/7
|
|
65
|
+
Daemon started successfully on port 4100.
|
|
66
|
+
```
|
|
33
67
|
|
|
68
|
+
**重启连接:**
|
|
34
69
|
```bash
|
|
35
70
|
# 重置所有连接
|
|
36
71
|
mcps restart
|
|
@@ -49,15 +84,36 @@ mcps stop
|
|
|
49
84
|
mcps status
|
|
50
85
|
```
|
|
51
86
|
|
|
52
|
-
|
|
87
|
+
输出示例:
|
|
88
|
+
```
|
|
89
|
+
Daemon is running (v1.0.29)
|
|
90
|
+
|
|
91
|
+
Active Connections:
|
|
92
|
+
NAME STATUS TOOLS
|
|
93
|
+
───────────────── ────────── ──────
|
|
94
|
+
chrome-devtools Connected 26
|
|
95
|
+
fetch Connected 1
|
|
96
|
+
gitlab-mr-creator Connected 30
|
|
97
|
+
Total: 3 connection(s)
|
|
98
|
+
```
|
|
53
99
|
|
|
54
100
|
### 2. 服务管理 (Server Management)
|
|
55
101
|
|
|
56
|
-
|
|
102
|
+
**查看所有服务(配置信息):**
|
|
57
103
|
```bash
|
|
58
104
|
mcps ls
|
|
59
105
|
```
|
|
60
106
|
|
|
107
|
+
输出示例:
|
|
108
|
+
```
|
|
109
|
+
NAME TYPE ENABLED COMMAND/URL
|
|
110
|
+
───────────────── ────── ─────── ─────────────
|
|
111
|
+
chrome-devtools stdio ✓ npx -y chrome-devtools-mcp ...
|
|
112
|
+
fetch stdio ✓ uvx mcp-server-fetch
|
|
113
|
+
my-server stdio ✗ npx my-server
|
|
114
|
+
Total: 3 server(s)
|
|
115
|
+
```
|
|
116
|
+
|
|
61
117
|
**添加 Stdio 服务:**
|
|
62
118
|
```bash
|
|
63
119
|
# 添加本地 Node.js 服务
|
|
@@ -65,6 +121,9 @@ mcps add my-server --command node --args ./build/index.js
|
|
|
65
121
|
|
|
66
122
|
# 使用 npx/uvx 添加服务
|
|
67
123
|
mcps add fetch --command uvx --args mcp-server-fetch
|
|
124
|
+
|
|
125
|
+
# 添加带环境变量的服务
|
|
126
|
+
mcps add my-db --command npx --args @modelcontextprotocol/server-postgres --env POSTGRES_CONNECTION_STRING="${DATABASE_URL}"
|
|
68
127
|
```
|
|
69
128
|
|
|
70
129
|
**添加 SSE 服务:**
|
|
@@ -92,13 +151,61 @@ mcps update my-server --command new-command
|
|
|
92
151
|
|
|
93
152
|
# 更新特定服务的参数
|
|
94
153
|
mcps update my-server --args arg1 arg2
|
|
154
|
+
|
|
155
|
+
# 同时更新命令和参数
|
|
156
|
+
mcps update my-server --command node --args ./new-build/index.js
|
|
95
157
|
```
|
|
96
158
|
|
|
97
159
|
### 3. 工具交互 (Tool Interaction)
|
|
98
160
|
|
|
99
161
|
**查看服务下的可用工具:**
|
|
100
162
|
```bash
|
|
101
|
-
|
|
163
|
+
# 详细模式(显示所有信息)
|
|
164
|
+
mcps tools chrome-devtools
|
|
165
|
+
|
|
166
|
+
# 简洁模式(只显示工具名称)
|
|
167
|
+
mcps tools chrome-devtools --simple
|
|
168
|
+
|
|
169
|
+
# 筛选工具(按关键词)
|
|
170
|
+
mcps tools chrome-devtools --tool screenshot
|
|
171
|
+
|
|
172
|
+
# 多个关键词 + 简洁模式
|
|
173
|
+
mcps tools gitlab-mr-creator --tool file --tool wiki --simple
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
详细模式输出示例:
|
|
177
|
+
```
|
|
178
|
+
Available Tools for chrome-devtools:
|
|
179
|
+
|
|
180
|
+
- take_screenshot
|
|
181
|
+
Take a screenshot of the page or element.
|
|
182
|
+
Arguments:
|
|
183
|
+
format*: string (Type of format to save the screenshot as...)
|
|
184
|
+
quality: number (Compression quality from 0-100)
|
|
185
|
+
uid: string (The uid of an element to screenshot...)
|
|
186
|
+
...
|
|
187
|
+
|
|
188
|
+
- click
|
|
189
|
+
Clicks on the provided element
|
|
190
|
+
Arguments:
|
|
191
|
+
uid*: string (The uid of an element...)
|
|
192
|
+
...
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
简洁模式输出示例:
|
|
196
|
+
```
|
|
197
|
+
$ mcps tools chrome-devtools -s
|
|
198
|
+
click
|
|
199
|
+
close_page
|
|
200
|
+
drag
|
|
201
|
+
emulate
|
|
202
|
+
evaluate_script
|
|
203
|
+
fill
|
|
204
|
+
...
|
|
205
|
+
take_screenshot
|
|
206
|
+
take_snapshot
|
|
207
|
+
|
|
208
|
+
Total: 26 tool(s)
|
|
102
209
|
```
|
|
103
210
|
|
|
104
211
|
**调用工具:**
|
|
@@ -117,11 +224,17 @@ mcps call <server_name> <tool_name> [arguments...]
|
|
|
117
224
|
# 简单的字符串参数
|
|
118
225
|
mcps call fetch fetch url="https://example.com"
|
|
119
226
|
|
|
227
|
+
# 带多个参数
|
|
228
|
+
mcps call fetch fetch url="https://example.com" max_length=5000
|
|
229
|
+
|
|
120
230
|
# JSON 对象参数
|
|
121
231
|
mcps call my-server createUser user='{"name": "Alice", "age": 30}'
|
|
122
232
|
|
|
123
233
|
# 布尔值/数字参数
|
|
124
|
-
mcps call
|
|
234
|
+
mcps call chrome-devtools take_screenshot fullPage=true quality=90
|
|
235
|
+
|
|
236
|
+
# 混合参数
|
|
237
|
+
mcps call my-server config debug=true timeout=5000 options='{"retries": 3}'
|
|
125
238
|
```
|
|
126
239
|
|
|
127
240
|
## 配置文件
|
|
@@ -129,7 +242,99 @@ mcps call my-server config debug=true timeout=5000
|
|
|
129
242
|
默认情况下,配置文件存储在:
|
|
130
243
|
`~/.mcps/mcp.json`
|
|
131
244
|
|
|
132
|
-
您可以通过设置 `
|
|
245
|
+
您可以通过设置 `MCPS_CONFIG_DIR` 环境变量来更改存储位置。
|
|
246
|
+
|
|
247
|
+
配置文件示例:
|
|
248
|
+
```json
|
|
249
|
+
{
|
|
250
|
+
"servers": [
|
|
251
|
+
{
|
|
252
|
+
"name": "fetch",
|
|
253
|
+
"type": "stdio",
|
|
254
|
+
"command": "uvx",
|
|
255
|
+
"args": ["mcp-server-fetch"]
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"name": "my-server",
|
|
259
|
+
"type": "stdio",
|
|
260
|
+
"command": "node",
|
|
261
|
+
"args": ["./build/index.js"],
|
|
262
|
+
"env": {
|
|
263
|
+
"API_KEY": "${API_KEY}"
|
|
264
|
+
},
|
|
265
|
+
"disabled": false
|
|
266
|
+
}
|
|
267
|
+
]
|
|
268
|
+
}
|
|
269
|
+
```
|
|
270
|
+
|
|
271
|
+
## 环境变量
|
|
272
|
+
|
|
273
|
+
- `MCPS_CONFIG_DIR`: 配置文件目录(默认:`~/.mcps`)
|
|
274
|
+
- `MCPS_PORT`: Daemon 端口(默认:`4100`)
|
|
275
|
+
- `MCPS_VERBOSE`: 详细日志模式(默认:`false`)
|
|
276
|
+
|
|
277
|
+
## 命令参考
|
|
278
|
+
|
|
279
|
+
### 服务管理
|
|
280
|
+
- `mcps ls` - 列出所有服务
|
|
281
|
+
- `mcps add <name>` - 添加新服务
|
|
282
|
+
- `mcps rm <name>` - 移除服务
|
|
283
|
+
- `mcps update [name]` - 更新服务配置
|
|
284
|
+
|
|
285
|
+
### 守护进程
|
|
286
|
+
- `mcps start [-v]` - 启动守护进程(`-v` 显示详细日志)
|
|
287
|
+
- `mcps stop` - 停止守护进程
|
|
288
|
+
- `mcps status` - 查看守护进程状态
|
|
289
|
+
- `mcps restart [server]` - 重启守护进程或特定服务
|
|
290
|
+
|
|
291
|
+
### 工具交互
|
|
292
|
+
- `mcps tools <server> [-s] [-t <name>...]` - 查看可用工具
|
|
293
|
+
- `-s, --simple`: 只显示工具名称
|
|
294
|
+
- `-t, --tool`: 按名称筛选工具(可重复使用)
|
|
295
|
+
- `mcps call <server> <tool> [args...]` - 调用工具
|
|
296
|
+
|
|
297
|
+
## 性能优化
|
|
298
|
+
|
|
299
|
+
mcps 通过以下方式优化性能:
|
|
300
|
+
|
|
301
|
+
1. **守护进程模式**:保持长连接,避免重复启动开销
|
|
302
|
+
2. **工具缓存**:连接时缓存工具数量,避免重复查询
|
|
303
|
+
3. **异步连接**:并行初始化多个服务器连接
|
|
304
|
+
|
|
305
|
+
典型性能:
|
|
306
|
+
- 启动守护进程:10-15 秒(首次,取决于服务数量)
|
|
307
|
+
- 查看状态:~200ms
|
|
308
|
+
- 调用工具:~50-100ms
|
|
309
|
+
|
|
310
|
+
## 常见问题
|
|
311
|
+
|
|
312
|
+
**Q: 如何查看所有服务器的运行状态?**
|
|
313
|
+
```bash
|
|
314
|
+
mcps status # 查看活跃连接
|
|
315
|
+
mcps ls # 查看所有配置(包括禁用的)
|
|
316
|
+
```
|
|
317
|
+
|
|
318
|
+
**Q: 某个服务连接失败了怎么办?**
|
|
319
|
+
```bash
|
|
320
|
+
# 查看详细日志
|
|
321
|
+
mcps start --verbose
|
|
322
|
+
|
|
323
|
+
# 重启该服务
|
|
324
|
+
mcps restart my-server
|
|
325
|
+
```
|
|
326
|
+
|
|
327
|
+
**Q: 如何临时禁用某个服务?**
|
|
328
|
+
在配置文件中设置 `"disabled": true`,或使用 `mcps update` 修改配置。
|
|
329
|
+
|
|
330
|
+
**Q: 工具太多怎么快速找到?**
|
|
331
|
+
```bash
|
|
332
|
+
# 筛选工具名称
|
|
333
|
+
mcps tools my-server --tool keyword
|
|
334
|
+
|
|
335
|
+
# 只显示名称
|
|
336
|
+
mcps tools my-server --simple
|
|
337
|
+
```
|
|
133
338
|
|
|
134
339
|
## 许可证
|
|
135
340
|
|
package/dist/commands/tools.js
CHANGED
|
@@ -29,7 +29,9 @@ function printTools(serverName, tools) {
|
|
|
29
29
|
export const registerToolsCommand = (program) => {
|
|
30
30
|
program.command('tools <server>')
|
|
31
31
|
.description('List available tools on a server')
|
|
32
|
-
.
|
|
32
|
+
.option('-s, --simple', 'Show only tool names')
|
|
33
|
+
.option('-t, --tool <name...>', 'Filter tools by name(s)')
|
|
34
|
+
.action(async (serverName, options) => {
|
|
33
35
|
// Check if server exists in config first
|
|
34
36
|
const serverConfig = configManager.getServer(serverName);
|
|
35
37
|
if (!serverConfig) {
|
|
@@ -40,8 +42,25 @@ export const registerToolsCommand = (program) => {
|
|
|
40
42
|
// Auto-start daemon if needed
|
|
41
43
|
await DaemonClient.ensureDaemon();
|
|
42
44
|
// List via daemon
|
|
43
|
-
|
|
44
|
-
|
|
45
|
+
let tools = await DaemonClient.listTools(serverName);
|
|
46
|
+
// Filter by tool names if specified
|
|
47
|
+
if (options.tool && options.tool.length > 0) {
|
|
48
|
+
const filters = Array.isArray(options.tool) ? options.tool : [options.tool];
|
|
49
|
+
tools = tools.filter((tool) => filters.some((filter) => tool.name.toLowerCase().includes(filter.toLowerCase())));
|
|
50
|
+
}
|
|
51
|
+
if (!tools || tools.length === 0) {
|
|
52
|
+
console.log(chalk.yellow('No tools found.'));
|
|
53
|
+
return;
|
|
54
|
+
}
|
|
55
|
+
if (options.simple) {
|
|
56
|
+
// Simple mode: only show tool names
|
|
57
|
+
tools.forEach((tool) => console.log(tool.name));
|
|
58
|
+
console.log(chalk.gray(`\nTotal: ${tools.length} tool(s)`));
|
|
59
|
+
}
|
|
60
|
+
else {
|
|
61
|
+
// Detailed mode: show full tool information
|
|
62
|
+
printTools(serverName, tools);
|
|
63
|
+
}
|
|
45
64
|
}
|
|
46
65
|
catch (error) {
|
|
47
66
|
console.error(chalk.red(`Failed to list tools: ${error.message}`));
|
package/dist/core/client.js
CHANGED
package/dist/core/config.js
CHANGED
|
@@ -2,7 +2,7 @@ import fs from 'fs';
|
|
|
2
2
|
import path from 'path';
|
|
3
3
|
import os from 'os';
|
|
4
4
|
import { ServerConfigSchema } from '../types/config.js';
|
|
5
|
-
const CONFIG_DIR = process.env.
|
|
5
|
+
const CONFIG_DIR = process.env.MCPS_CONFIG_DIR || path.join(os.homedir(), '.mcps');
|
|
6
6
|
const CONFIG_FILE = path.join(CONFIG_DIR, 'mcp.json');
|
|
7
7
|
export class ConfigManager {
|
|
8
8
|
ensureConfigDir() {
|
|
@@ -61,7 +61,7 @@ export class DaemonClient {
|
|
|
61
61
|
throw new Error(err.error || 'Daemon error');
|
|
62
62
|
}
|
|
63
63
|
const data = await response.json();
|
|
64
|
-
// The daemon returns { tools:
|
|
65
|
-
return data.tools
|
|
64
|
+
// The daemon returns { tools: [...] }
|
|
65
|
+
return data.tools || [];
|
|
66
66
|
}
|
|
67
67
|
}
|
package/dist/core/pool.js
CHANGED
|
@@ -2,6 +2,7 @@ import { McpClientService } from './client.js';
|
|
|
2
2
|
import { configManager } from './config.js';
|
|
3
3
|
export class ConnectionPool {
|
|
4
4
|
clients = new Map();
|
|
5
|
+
toolsCache = new Map();
|
|
5
6
|
initializing = false;
|
|
6
7
|
initialized = false;
|
|
7
8
|
async getClient(serverName, options) {
|
|
@@ -24,6 +25,15 @@ export class ConnectionPool {
|
|
|
24
25
|
await connectPromise;
|
|
25
26
|
}
|
|
26
27
|
this.clients.set(serverName, client);
|
|
28
|
+
// Cache tools count after connection
|
|
29
|
+
try {
|
|
30
|
+
const result = await client.listTools();
|
|
31
|
+
this.toolsCache.set(serverName, result.tools.length);
|
|
32
|
+
}
|
|
33
|
+
catch (e) {
|
|
34
|
+
// Connection succeeded but listTools failed, cache as 0
|
|
35
|
+
this.toolsCache.set(serverName, 0);
|
|
36
|
+
}
|
|
27
37
|
return client;
|
|
28
38
|
}
|
|
29
39
|
async closeClient(serverName) {
|
|
@@ -36,6 +46,7 @@ export class ConnectionPool {
|
|
|
36
46
|
console.error(`[Daemon] Error closing ${serverName}:`, e);
|
|
37
47
|
}
|
|
38
48
|
this.clients.delete(serverName);
|
|
49
|
+
this.toolsCache.delete(serverName);
|
|
39
50
|
return true;
|
|
40
51
|
}
|
|
41
52
|
return false;
|
|
@@ -51,6 +62,7 @@ export class ConnectionPool {
|
|
|
51
62
|
}
|
|
52
63
|
}
|
|
53
64
|
this.clients.clear();
|
|
65
|
+
this.toolsCache.clear();
|
|
54
66
|
}
|
|
55
67
|
async initializeAll() {
|
|
56
68
|
const servers = configManager.listServers();
|
|
@@ -74,21 +86,29 @@ export class ConnectionPool {
|
|
|
74
86
|
console.log(`[Daemon] Connecting to ${enabledServers.length} server(s)...`);
|
|
75
87
|
const results = [];
|
|
76
88
|
for (const server of enabledServers) {
|
|
77
|
-
|
|
78
|
-
process.stdout.write(`[Daemon] - ${server.name}... `);
|
|
79
|
-
}
|
|
89
|
+
process.stdout.write(`[Daemon] - ${server.name}... `);
|
|
80
90
|
try {
|
|
81
91
|
await this.getClient(server.name, { timeoutMs: 8000 });
|
|
82
92
|
results.push({ name: server.name, success: true });
|
|
83
|
-
|
|
84
|
-
console.log('✓');
|
|
85
|
-
}
|
|
93
|
+
console.log('Connected ✓');
|
|
86
94
|
}
|
|
87
95
|
catch (error) {
|
|
88
|
-
|
|
96
|
+
// Extract clean error message
|
|
97
|
+
let errorMsg = 'Unknown error';
|
|
98
|
+
if (error?.message) {
|
|
99
|
+
// For spawn errors, the message usually contains the essential info
|
|
100
|
+
errorMsg = error.message;
|
|
101
|
+
}
|
|
102
|
+
else if (typeof error === 'string') {
|
|
103
|
+
errorMsg = error;
|
|
104
|
+
}
|
|
105
|
+
else if (error) {
|
|
106
|
+
errorMsg = String(error);
|
|
107
|
+
}
|
|
108
|
+
results.push({ name: server.name, success: false, error: errorMsg });
|
|
109
|
+
console.log('Failed ✗');
|
|
89
110
|
if (verbose) {
|
|
90
|
-
console.
|
|
91
|
-
console.error(`[Daemon] Error: ${error.message}`);
|
|
111
|
+
console.error(`[Daemon] Error: ${errorMsg}`);
|
|
92
112
|
}
|
|
93
113
|
}
|
|
94
114
|
}
|
|
@@ -96,9 +116,10 @@ export class ConnectionPool {
|
|
|
96
116
|
const successCount = results.filter(r => r.success).length;
|
|
97
117
|
const failed = results.filter(r => !r.success);
|
|
98
118
|
console.log(`[Daemon] Connected: ${successCount}/${enabledServers.length}`);
|
|
99
|
-
if (
|
|
119
|
+
if (failed.length > 0) {
|
|
120
|
+
console.log('[Daemon] Failed connections:');
|
|
100
121
|
failed.forEach(f => {
|
|
101
|
-
console.
|
|
122
|
+
console.log(` ✗ ${f.name}: ${f.error}`);
|
|
102
123
|
});
|
|
103
124
|
}
|
|
104
125
|
this.initializing = false;
|
|
@@ -113,12 +134,20 @@ export class ConnectionPool {
|
|
|
113
134
|
let toolsCount = null;
|
|
114
135
|
let status = 'connected';
|
|
115
136
|
if (includeTools) {
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
toolsCount =
|
|
137
|
+
// Use cached tools count instead of calling listTools again
|
|
138
|
+
if (this.toolsCache.has(name)) {
|
|
139
|
+
toolsCount = this.toolsCache.get(name);
|
|
119
140
|
}
|
|
120
|
-
|
|
121
|
-
|
|
141
|
+
else {
|
|
142
|
+
// Fallback: if not cached, fetch it now
|
|
143
|
+
try {
|
|
144
|
+
const result = await client.listTools();
|
|
145
|
+
toolsCount = result.tools.length;
|
|
146
|
+
this.toolsCache.set(name, toolsCount);
|
|
147
|
+
}
|
|
148
|
+
catch (e) {
|
|
149
|
+
status = 'error';
|
|
150
|
+
}
|
|
122
151
|
}
|
|
123
152
|
}
|
|
124
153
|
details.push({ name, toolsCount, status });
|