-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtest-server.js
More file actions
executable file
·128 lines (102 loc) · 2.84 KB
/
test-server.js
File metadata and controls
executable file
·128 lines (102 loc) · 2.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#!/usr/bin/env node
/**
* Test script for Mac Commander MCP Server
* This demonstrates how to test the server locally
*/
import { spawn } from 'child_process';
import readline from 'readline';
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
console.log('Starting Mac Commander MCP Server test...\n');
// Start the server
const server = spawn('node', ['build/index.js'], {
stdio: ['pipe', 'pipe', 'inherit']
});
let requestId = 1;
// Helper to send JSON-RPC request
function sendRequest(method, params = {}) {
const request = {
jsonrpc: '2.0',
id: requestId++,
method,
params
};
server.stdin.write(JSON.stringify(request) + '\n');
}
// Handle server responses
server.stdout.on('data', (data) => {
const lines = data.toString().split('\n').filter(line => line.trim());
for (const line of lines) {
try {
const response = JSON.parse(line);
console.log('Response:', JSON.stringify(response, null, 2));
} catch (e) {
// Not JSON, might be a log message
if (line.trim()) {
console.log('Server:', line);
}
}
}
});
// Test sequence
async function runTests() {
console.log('\n1. Initializing connection...');
sendRequest('initialize', {
protocolVersion: '2024-11-01',
capabilities: {}
});
await new Promise(resolve => setTimeout(resolve, 1000));
console.log('\n2. Listing available tools...');
sendRequest('tools/list', {});
await new Promise(resolve => setTimeout(resolve, 1000));
console.log('\n3. Getting screen info...');
sendRequest('tools/call', {
name: 'get_screen_info',
arguments: {}
});
await new Promise(resolve => setTimeout(resolve, 1000));
console.log('\n4. Taking a screenshot...');
sendRequest('tools/call', {
name: 'screenshot',
arguments: {
outputPath: './test-screenshot.png'
}
});
await new Promise(resolve => setTimeout(resolve, 2000));
console.log('\n5. Listing windows...');
sendRequest('tools/call', {
name: 'list_windows',
arguments: {}
});
await new Promise(resolve => setTimeout(resolve, 2000));
console.log('\n6. Checking for errors on screen...');
sendRequest('tools/call', {
name: 'check_for_errors',
arguments: {}
});
await new Promise(resolve => setTimeout(resolve, 2000));
console.log('\n7. Extracting text from screen...');
sendRequest('tools/call', {
name: 'extract_text',
arguments: {
region: {
x: 100,
y: 100,
width: 500,
height: 300
}
}
});
await new Promise(resolve => setTimeout(resolve, 3000));
console.log('\nTest complete! Press Ctrl+C to exit.');
}
// Run tests after server starts
setTimeout(runTests, 1000);
// Handle cleanup
process.on('SIGINT', () => {
console.log('\nShutting down...');
server.kill();
process.exit(0);
});