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 CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  "use strict";
2
3
  var __create = Object.create;
3
4
  var __defProp = Object.defineProperty;
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.0",
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-07-09/server.schema.json",
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
3
  "name": "io.github.sirlordt/vscode-terminal-mcp",
4
- "title": "Terminal MCP Server",
5
- "description": "MCP server that executes commands in visible VSCode terminal tabs with full output capture, session reuse, long-running process support, and subagent isolation.",
6
- "version": "0.1.0",
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
- "registry": "npm",
10
- "name": "vscode-terminal-mcp"
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
  }