You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The scan command searches for MCP server configurations across multiple applications:
244
-
245
-
```bash
246
-
# Scan for all MCP servers in supported applications
247
-
mcp scan
248
-
249
-
# Display in JSON format grouped by application
250
-
mcp scan -f json
251
-
252
-
# Display in colorized format (default)
253
-
mcp scan -f table
254
-
```
255
-
256
-
The scan command looks for MCP server configurations in:
257
-
- Visual Studio Code
258
-
- Visual Studio Code Insiders
259
-
- Windsurf
260
-
- Cursor
261
-
- Claude Desktop
262
-
263
-
For each server, it displays:
264
-
- Server source (application)
265
-
- Server name
266
-
- Server type (stdio or sse)
267
-
- Command and arguments or URL
268
-
- Environment variables (for stdio servers)
269
-
- Headers (for sse servers)
270
-
271
-
Example output:
272
-
```
273
-
VS Code Insiders
274
-
GitHub (stdio):
275
-
docker run -i --rm -e GITHUB_PERSONAL_ACCESS_TOKEN ghcr.io/github/github-mcp-server
276
-
277
-
Claude Desktop
278
-
Proxy (stdio):
279
-
mcp proxy start
280
-
281
-
My Files (stdio):
282
-
npx -y @modelcontextprotocol/server-filesystem ~/
283
-
```
284
-
285
243
### Interactive Shell
286
244
287
245
The interactive shell mode allows you to run multiple MCP commands in a single session:
@@ -447,6 +405,27 @@ Configurations are managed through a central registry in `$HOME/.mcpt/configs.js
447
405
448
406
The system automatically displays server configurations in a colorized format grouped by source, showing command-line or URL information, headers, and environment variables.
449
407
408
+
`mcp configs scan` command looks for MCP server configurations in:
409
+
- Visual Studio Code
410
+
- Visual Studio Code Insiders
411
+
- Windsurf
412
+
- Cursor
413
+
- Claude Desktop
414
+
415
+
Example Output:
416
+
```
417
+
VS Code Insiders
418
+
GitHub (stdio):
419
+
docker run -i --rm -e GITHUB_PERSONAL_ACCESS_TOKEN ghcr.io/github/github-mcp-server
420
+
421
+
Claude Desktop
422
+
Proxy (stdio):
423
+
mcp proxy start
424
+
425
+
My Files (stdio):
426
+
npx -y @modelcontextprotocol/server-filesystem ~/
427
+
```
428
+
450
429
## Server Modes
451
430
452
431
MCP Tools can operate as both a client and a server, with two server modes available:
0 commit comments