-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathserver.js
More file actions
executable file
·499 lines (452 loc) · 11.6 KB
/
server.js
File metadata and controls
executable file
·499 lines (452 loc) · 11.6 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
#!/usr/bin/env node
import { createServer } from 'node:http';
import axios from 'axios';
// Default endpoint for MetaTrader 5 HTTP API
const MT5_API_ENDPOINT = process.env.MT5_API_ENDPOINT || 'http://localhost:5555';
const MT5_API_KEY = process.env.MT5_API_KEY || '';
// Create Axios client for MT5 API requests
const apiClient = axios.create({
baseURL: MT5_API_ENDPOINT,
headers: MT5_API_KEY ? { 'Authorization': `Bearer ${MT5_API_KEY}` } : {},
});
// Define MCP server capabilities
const serverInfo = {
name: 'metatrader5-mcp-server',
version: '1.0.0',
};
// Define available tools
const tools = [
{
name: 'get_account_info',
description: 'Get account information from MetaTrader 5',
inputSchema: {
type: 'object',
properties: {
account: {
type: 'number',
description: 'Account number (optional, uses default if not provided)',
},
},
required: [],
},
},
{
name: 'get_symbol_price',
description: 'Get current price for a symbol',
inputSchema: {
type: 'object',
properties: {
symbol: {
type: 'string',
description: 'Symbol name (e.g., "EURUSD", "BTCUSD")',
},
},
required: ['symbol'],
},
},
{
name: 'get_open_positions',
description: 'Get all open positions',
inputSchema: {
type: 'object',
properties: {},
required: [],
},
},
{
name: 'get_pending_orders',
description: 'Get all pending orders',
inputSchema: {
type: 'object',
properties: {},
required: [],
},
},
{
name: 'create_order',
description: 'Create a new trading order',
inputSchema: {
type: 'object',
properties: {
symbol: {
type: 'string',
description: 'Symbol name (e.g., "EURUSD")',
},
type: {
type: 'string',
description: 'Order type: "BUY", "SELL", "BUYLIMIT", "SELLLIMIT", "BUYSTOP", "SELLSTOP"',
},
volume: {
type: 'number',
description: 'Order volume in lots',
},
price: {
type: 'number',
description: 'Order price (required for limit and stop orders)',
},
sl: {
type: 'number',
description: 'Stop loss price (optional)',
},
tp: {
type: 'number',
description: 'Take profit price (optional)',
},
comment: {
type: 'string',
description: 'Order comment (optional)',
},
},
required: ['symbol', 'type', 'volume'],
},
},
{
name: 'modify_order',
description: 'Modify stop loss or take profit for an order or position',
inputSchema: {
type: 'object',
properties: {
ticket: {
type: 'number',
description: 'Order or position ticket number',
},
sl: {
type: 'number',
description: 'New stop loss price',
},
tp: {
type: 'number',
description: 'New take profit price',
},
},
required: ['ticket'],
},
},
{
name: 'close_position',
description: 'Close an open position',
inputSchema: {
type: 'object',
properties: {
ticket: {
type: 'number',
description: 'Position ticket number',
},
},
required: ['ticket'],
},
},
{
name: 'delete_order',
description: 'Delete a pending order',
inputSchema: {
type: 'object',
properties: {
ticket: {
type: 'number',
description: 'Order ticket number',
},
},
required: ['ticket'],
},
},
];
// Type validation functions
const isAccountInfoArg = (args) =>
typeof args === 'object' && args !== null &&
(args.account === undefined || typeof args.account === 'number');
const isSymbolPriceArg = (args) =>
typeof args === 'object' && args !== null &&
typeof args.symbol === 'string';
const isOrderArg = (args) =>
typeof args === 'object' && args !== null &&
typeof args.symbol === 'string' &&
typeof args.type === 'string' &&
typeof args.volume === 'number';
const isModifyOrderArg = (args) =>
typeof args === 'object' && args !== null &&
typeof args.ticket === 'number';
const isCloseOrderArg = (args) =>
typeof args === 'object' && args !== null &&
typeof args.ticket === 'number';
// Handle MCP requests
async function handleMcpRequest(request) {
switch (request.method) {
case 'list_tools':
return {
jsonrpc: '2.0',
id: request.id,
result: { tools },
};
case 'call_tool':
try {
let result;
switch (request.params.name) {
case 'get_account_info':
result = await handleGetAccountInfo(request.params.arguments);
break;
case 'get_symbol_price':
result = await handleGetSymbolPrice(request.params.arguments);
break;
case 'get_open_positions':
result = await handleGetOpenPositions();
break;
case 'get_pending_orders':
result = await handleGetPendingOrders();
break;
case 'create_order':
result = await handleCreateOrder(request.params.arguments);
break;
case 'modify_order':
result = await handleModifyOrder(request.params.arguments);
break;
case 'close_position':
result = await handleClosePosition(request.params.arguments);
break;
case 'delete_order':
result = await handleDeleteOrder(request.params.arguments);
break;
default:
return {
jsonrpc: '2.0',
id: request.id,
error: {
code: -32601,
message: `Unknown tool: ${request.params.name}`,
},
};
}
return {
jsonrpc: '2.0',
id: request.id,
result,
};
} catch (error) {
if (axios.isAxiosError(error)) {
const message = error.response?.data?.message || error.message;
return {
jsonrpc: '2.0',
id: request.id,
result: {
content: [
{
type: 'text',
text: `MetaTrader 5 API error: ${message}`,
},
],
isError: true,
},
};
}
return {
jsonrpc: '2.0',
id: request.id,
error: {
code: -32603,
message: `Unexpected error: ${error.message}`,
},
};
}
case 'initialize':
return {
jsonrpc: '2.0',
id: request.id,
result: {
success: true,
serverInfo,
capabilities: {
tools: {},
},
},
};
default:
return {
jsonrpc: '2.0',
id: request.id,
error: {
code: -32601,
message: `Method not found: ${request.method}`,
},
};
}
}
// Handler functions
async function handleGetAccountInfo(args) {
if (!isAccountInfoArg(args)) {
throw new Error('Invalid account info arguments');
}
try {
const endpoint = args.account ? `/account/${args.account}` : '/account';
const response = await apiClient.get(endpoint);
return {
content: [
{
type: 'text',
text: JSON.stringify(response.data, null, 2),
},
],
};
} catch (error) {
throw error;
}
}
async function handleGetSymbolPrice(args) {
if (!isSymbolPriceArg(args)) {
throw new Error('Invalid symbol price arguments');
}
try {
const response = await apiClient.get(`/symbol/${args.symbol}`);
return {
content: [
{
type: 'text',
text: JSON.stringify(response.data, null, 2),
},
],
};
} catch (error) {
throw error;
}
}
async function handleGetOpenPositions() {
try {
const response = await apiClient.get('/positions');
return {
content: [
{
type: 'text',
text: JSON.stringify(response.data, null, 2),
},
],
};
} catch (error) {
throw error;
}
}
async function handleGetPendingOrders() {
try {
const response = await apiClient.get('/orders');
return {
content: [
{
type: 'text',
text: JSON.stringify(response.data, null, 2),
},
],
};
} catch (error) {
throw error;
}
}
async function handleCreateOrder(args) {
if (!isOrderArg(args)) {
throw new Error('Invalid order arguments');
}
try {
const response = await apiClient.post('/order', args);
return {
content: [
{
type: 'text',
text: JSON.stringify(response.data, null, 2),
},
],
};
} catch (error) {
throw error;
}
}
async function handleModifyOrder(args) {
if (!isModifyOrderArg(args)) {
throw new Error('Invalid modify order arguments');
}
try {
const response = await apiClient.put(`/order/${args.ticket}`, {
sl: args.sl,
tp: args.tp,
});
return {
content: [
{
type: 'text',
text: JSON.stringify(response.data, null, 2),
},
],
};
} catch (error) {
throw error;
}
}
async function handleClosePosition(args) {
if (!isCloseOrderArg(args)) {
throw new Error('Invalid close position arguments');
}
try {
const response = await apiClient.delete(`/position/${args.ticket}`);
return {
content: [
{
type: 'text',
text: JSON.stringify(response.data, null, 2),
},
],
};
} catch (error) {
throw error;
}
}
async function handleDeleteOrder(args) {
if (!isCloseOrderArg(args)) {
throw new Error('Invalid delete order arguments');
}
try {
const response = await apiClient.delete(`/order/${args.ticket}`);
return {
content: [
{
type: 'text',
text: JSON.stringify(response.data, null, 2),
},
],
};
} catch (error) {
throw error;
}
}
// Read and process MCP messages from stdin
let buffer = '';
process.stdin.on('data', async (chunk) => {
buffer += chunk.toString();
// Process complete messages
while (true) {
const match = buffer.match(/Content-Length: (\d+)\r\n\r\n/);
if (!match) break;
const contentLength = parseInt(match[1], 10);
const headerEndIndex = match.index + match[0].length;
const contentEndIndex = headerEndIndex + contentLength;
if (buffer.length < contentEndIndex) break;
const content = buffer.substring(headerEndIndex, contentEndIndex);
buffer = buffer.substring(contentEndIndex);
try {
const request = JSON.parse(content);
const response = await handleMcpRequest(request);
const responseContent = JSON.stringify(response);
const header = `Content-Length: ${responseContent.length}\r\n\r\n`;
process.stdout.write(header + responseContent);
} catch (error) {
console.error('Error processing request:', error);
}
}
});
// Setup HTTP server for local debugging (not required for MCP)
const server = createServer((req, res) => {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('MetaTrader 5 MCP Server is running.\n');
});
// Signal handling for clean shutdown
process.on('SIGINT', () => {
console.error('Shutting down server...');
process.exit(0);
});
// Start the server
console.error('MetaTrader 5 MCP Server running on stdio');