@vfarcic/dot-ai 0.3.1 → 0.3.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/mcp/server.js +16 -0
- package/package.json +3 -2
package/dist/mcp/server.js
CHANGED
|
@@ -40,6 +40,22 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
40
40
|
};
|
|
41
41
|
})();
|
|
42
42
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
43
|
+
// EMERGENCY DEBUG: Log immediately when script starts
|
|
44
|
+
process.stderr.write('=== MCP SERVER SCRIPT STARTED ===\n');
|
|
45
|
+
process.stderr.write(`Script path: ${__filename}\n`);
|
|
46
|
+
process.stderr.write(`Working directory: ${process.cwd()}\n`);
|
|
47
|
+
process.stderr.write(`Arguments: ${JSON.stringify(process.argv)}\n`);
|
|
48
|
+
// EMERGENCY DEBUG: Test import paths
|
|
49
|
+
process.stderr.write('=== TESTING IMPORT PATHS ===\n');
|
|
50
|
+
const path = require('path');
|
|
51
|
+
const fs = require('fs');
|
|
52
|
+
const mcpPath = path.join(__dirname, '../interfaces/mcp.js');
|
|
53
|
+
const dotaiPath = path.join(__dirname, '../core/index.js');
|
|
54
|
+
process.stderr.write(`MCP path: ${mcpPath}\n`);
|
|
55
|
+
process.stderr.write(`MCP exists: ${fs.existsSync(mcpPath)}\n`);
|
|
56
|
+
process.stderr.write(`DotAI path: ${dotaiPath}\n`);
|
|
57
|
+
process.stderr.write(`DotAI exists: ${fs.existsSync(dotaiPath)}\n`);
|
|
58
|
+
process.stderr.write('=== ATTEMPTING IMPORTS ===\n');
|
|
43
59
|
const mcp_js_1 = require("../interfaces/mcp.js");
|
|
44
60
|
const index_js_1 = require("../core/index.js");
|
|
45
61
|
async function main() {
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vfarcic/dot-ai",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Universal Kubernetes application deployment agent with CLI and MCP interfaces",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"bin": {
|
|
8
|
-
"dot-ai": "./dist/cli.js"
|
|
8
|
+
"dot-ai": "./dist/cli.js",
|
|
9
|
+
"dot-ai-mcp": "./dist/mcp/server.js"
|
|
9
10
|
},
|
|
10
11
|
"exports": {
|
|
11
12
|
".": "./dist/index.js",
|