@mgsoftwarebv/mg-dashboard-mcp 7.4.2 → 7.4.3

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/index.js CHANGED
@@ -14749,5 +14749,3 @@ main().catch((err) => {
14749
14749
  console.error("Fatal error:", err);
14750
14750
  process.exit(1);
14751
14751
  });
14752
- //# sourceMappingURL=index.js.map
14753
- //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mgsoftwarebv/mg-dashboard-mcp",
3
- "version": "7.4.2",
3
+ "version": "7.4.3",
4
4
  "description": "MCP Server for MG Dashboard - SSH, SFTP, Docker, domains, DNS, and environment config tools for Cursor",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -41,7 +41,7 @@
41
41
  "@types/node": "^20.0.0",
42
42
  "@types/ssh2": "^1.15.0",
43
43
  "tsup": "^8.0.0",
44
- "typescript": "^5.0.0"
44
+ "typescript": "^7.0.2"
45
45
  },
46
46
  "files": [
47
47
  "dist"
package/dist/index.d.ts DELETED
@@ -1,27 +0,0 @@
1
- #!/usr/bin/env node
2
- interface SshConnectionOptions {
3
- hostname: string;
4
- port: number;
5
- username: string;
6
- password?: string;
7
- privateKey?: string;
8
- passphrase?: string;
9
- timeout?: number;
10
- }
11
- type SftpWriteInput = {
12
- content: string;
13
- } | {
14
- sourcePath: string;
15
- };
16
- type CopyEndpoint = {
17
- kind: "ssh";
18
- opts: SshConnectionOptions;
19
- proxy?: SshConnectionOptions;
20
- path: string;
21
- } | {
22
- kind: "r2";
23
- bucket: string;
24
- key: string;
25
- };
26
-
27
- export type { CopyEndpoint, SftpWriteInput };