terminator-mcp-agent 0.5.7 → 0.5.11
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 +1 -1
- package/index.js +1 -3
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[<img alt="Install in VS Code" src="https://img.shields.io/badge/VS_Code-VS_Code?style=flat-square&label=Install%20Server&color=0098FF">](https://insiders.vscode.dev/redirect?url=vscode%3Amcp%2Finstall%3F%257B%2522terminator-mcp-agent%2522%253A%257B%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522-y%2522%252C%2522terminator-mcp-agent%2522%255D%257D%257D)
|
|
6
6
|
[<img alt="Install in VS Code Insiders" src="https://img.shields.io/badge/VS_Code_Insiders-VS_Code_Insiders?style=flat-square&label=Install%20Server&color=24bfa5">](https://insiders.vscode.dev/redirect?url=vscode-insiders%3Amcp%2Finstall%3F%257B%2522terminator-mcp-agent%2522%253A%257B%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522-y%2522%252C%2522terminator-mcp-agent%2522%255D%257D%257D)
|
|
7
|
-
[<img alt="Install in Cursor" src="https://img.shields.io/badge/Cursor-Cursor?style=flat-square&label=Install%20Server&color=22272e">](https://cursor.com/install-mcp?name=terminator-mcp-agent&config=
|
|
7
|
+
[<img alt="Install in Cursor" src="https://img.shields.io/badge/Cursor-Cursor?style=flat-square&label=Install%20Server&color=22272e">](https://cursor.com/install-mcp?name=terminator-mcp-agent&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsInRlcm1pbmF0b3ItbWNwLWFnZW50Il19)
|
|
8
8
|
|
|
9
9
|
<!-- BADGES:END -->
|
|
10
10
|
|
package/index.js
CHANGED
|
@@ -308,9 +308,7 @@ if (argv.length === 0 || argv.includes("--start")) {
|
|
|
308
308
|
} else {
|
|
309
309
|
// 2. Try installed npm package
|
|
310
310
|
try {
|
|
311
|
-
|
|
312
|
-
const binDir = path.dirname(pkgPath);
|
|
313
|
-
binary = path.join(binDir, bin);
|
|
311
|
+
binary = require.resolve(pkg);
|
|
314
312
|
} catch (e) {
|
|
315
313
|
console.error(`Failed to find platform binary: ${pkg}`);
|
|
316
314
|
process.exit(1);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"bin": {
|
|
3
|
-
"terminator-mcp
|
|
3
|
+
"terminator-mcp": "index.js"
|
|
4
4
|
},
|
|
5
5
|
"description": "Cross-platform Model Context Protocol (MCP) agent for Terminator",
|
|
6
6
|
"engines": {
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
],
|
|
12
12
|
"name": "terminator-mcp-agent",
|
|
13
13
|
"optionalDependencies": {
|
|
14
|
-
"terminator-mcp-darwin-arm64": "0.5.
|
|
15
|
-
"terminator-mcp-darwin-x64": "0.5.
|
|
16
|
-
"terminator-mcp-linux-x64-gnu": "0.5.
|
|
17
|
-
"terminator-mcp-win32-x64-msvc": "0.5.
|
|
14
|
+
"terminator-mcp-darwin-arm64": "0.5.11",
|
|
15
|
+
"terminator-mcp-darwin-x64": "0.5.11",
|
|
16
|
+
"terminator-mcp-linux-x64-gnu": "0.5.11",
|
|
17
|
+
"terminator-mcp-win32-x64-msvc": "0.5.11"
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"sync-version": "node ./utils/sync-version.js",
|
|
27
27
|
"update-badges": "node ./utils/update-badges.js"
|
|
28
28
|
},
|
|
29
|
-
"version": "0.5.
|
|
29
|
+
"version": "0.5.11"
|
|
30
30
|
}
|