vscode-terminal-mcp 0.1.0 → 0.1.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/mcp-entry.js +1 -0
- package/package.json +4 -1
- package/server.json +16 -6
package/dist/mcp-entry.js
CHANGED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "vscode-terminal-mcp",
|
|
3
3
|
"displayName": "Terminal MCP Server",
|
|
4
4
|
"description": "MCP server that provides visible terminal sessions in VSCode for Claude Code and subagents",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.2",
|
|
6
6
|
"publisher": "sirlordt",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"author": "sirlordt",
|
|
@@ -35,6 +35,9 @@
|
|
|
35
35
|
"onStartupFinished"
|
|
36
36
|
],
|
|
37
37
|
"main": "./dist/extension.js",
|
|
38
|
+
"bin": {
|
|
39
|
+
"vscode-terminal-mcp": "./dist/mcp-entry.js"
|
|
40
|
+
},
|
|
38
41
|
"contributes": {
|
|
39
42
|
"mcpServers": {
|
|
40
43
|
"vscode-terminal-mcp": {
|
package/server.json
CHANGED
|
@@ -1,13 +1,23 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
3
|
"name": "io.github.sirlordt/vscode-terminal-mcp",
|
|
4
|
-
"
|
|
5
|
-
"description": "
|
|
6
|
-
"
|
|
4
|
+
"version": "0.1.1",
|
|
5
|
+
"description": "Execute commands in visible VSCode terminal tabs with output capture and session reuse.",
|
|
6
|
+
"author": "sirlordt",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"homepage": "https://github.com/sirlordt/vscode-terminal-mcp",
|
|
9
|
+
"repository": {
|
|
10
|
+
"source": "github",
|
|
11
|
+
"url": "https://github.com/sirlordt/vscode-terminal-mcp"
|
|
12
|
+
},
|
|
7
13
|
"packages": [
|
|
8
14
|
{
|
|
9
|
-
"
|
|
10
|
-
"
|
|
15
|
+
"registryType": "npm",
|
|
16
|
+
"identifier": "vscode-terminal-mcp",
|
|
17
|
+
"version": "0.1.1",
|
|
18
|
+
"transport": {
|
|
19
|
+
"type": "stdio"
|
|
20
|
+
}
|
|
11
21
|
}
|
|
12
22
|
]
|
|
13
23
|
}
|