agent-desk-mcp 0.1.0 → 0.1.4
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.
|
@@ -74,11 +74,10 @@ function main() {
|
|
|
74
74
|
const cliPath = path.join(sourceDir, 'src', 'cli.py');
|
|
75
75
|
const commandArgs = ['-m', 'src.cli', 'mcp', ...args];
|
|
76
76
|
|
|
77
|
-
console.
|
|
78
|
-
console.
|
|
79
|
-
console.
|
|
80
|
-
console.
|
|
81
|
-
console.log('');
|
|
77
|
+
console.error(`Agent Desk MCP Server`);
|
|
78
|
+
console.error(`Python: ${python}`);
|
|
79
|
+
console.error(`Source: ${sourceDir}`);
|
|
80
|
+
console.error(`Command: ${python} ${commandArgs.join(' ')}`);
|
|
82
81
|
|
|
83
82
|
// Spawn MCP server
|
|
84
83
|
const proc = spawn(python, commandArgs, {
|