-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmcp-server.js
More file actions
2109 lines (1976 loc) · 59 KB
/
mcp-server.js
File metadata and controls
2109 lines (1976 loc) · 59 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
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env node
import readline from "readline";
import path from "path";
import { fileURLToPath } from "url";
import dotenv from "dotenv";
import { startMemoryServer } from "./startMemoryServer.js";
import { GLOBAL_AGENT_INSTRUCTION } from "./agent-instruction.js";
import { resolveProjectIdentity } from "./utils/projectIdentity.js";
import * as browserTools from "./tools/browserTools.js";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
dotenv.config({
path: path.join(__dirname, ".env"),
quiet: true
});
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
terminal: false
});
const { projectRoot, derivedProject } = resolveProjectIdentity(
process.cwd(),
process.env
);
if (!process.env.MCP_PROJECT_ROOT) {
process.env.MCP_PROJECT_ROOT = projectRoot;
}
const CONFIG = {
agent: process.env.MCP_AGENT || "unknown",
project: process.env.MCP_PROJECT || derivedProject || "default-project",
scope: process.env.MCP_SCOPE || "project",
projectRoot,
serverUrl:
process.env.MCP_SERVER_URL ||
`http://localhost:${process.env.PORT || 4000}`
};
const memoryServerReady = startMemoryServer();
async function logMCPError(error, context = {}) {
try {
await fetch(`${CONFIG.serverUrl}/log`, {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
type: "error",
message: error.message,
stack: error.stack,
context: {
...context,
agent: CONFIG.agent,
project: CONFIG.project
}
})
});
} catch {}
}
async function parseResponse(response) {
const contentType = response.headers.get("content-type") || "";
if (contentType.includes("application/json")) {
return response.json();
}
return response.text();
}
async function waitForServer(url, retries = 10) {
for (let i = 0; i < retries; i++) {
try {
await fetch(url);
return;
} catch {
await new Promise(r => setTimeout(r, 300));
}
}
throw new Error("Memory server not reachable");
}
async function callMemoryApi(endpoint, options = {}) {
await memoryServerReady;
await waitForServer(CONFIG.serverUrl);
const response = await fetch(`${CONFIG.serverUrl}${endpoint}`, options);
const payload = await parseResponse(response);
if (!response.ok) {
const message =
typeof payload === "string"
? payload
: payload?.error || `Request failed with status ${response.status}`;
throw new Error(message);
}
return payload;
}
function buildEndpoint(pathname, params = {}) {
const searchParams = new URLSearchParams();
for (const [key, value] of Object.entries(params)) {
if (value === undefined || value === null || value === "") {
continue;
}
searchParams.set(key, String(value));
}
const query = searchParams.toString();
return query ? `${pathname}?${query}` : pathname;
}
function respond(id, result) {
process.stdout.write(
JSON.stringify({
jsonrpc: "2.0",
id,
result
}) + "\n"
);
}
function respondError(id, code, message) {
process.stdout.write(
JSON.stringify({
jsonrpc: "2.0",
id,
error: {
code,
message
}
}) + "\n"
);
}
function unwrapBrowserToolData(result) {
if (!result || typeof result !== "object") {
throw new Error("Browser tool returned an invalid response");
}
if (!result.success) {
throw new Error(result.error || "Browser tool failed");
}
return result.data || {};
}
const BROWSER_TOOL_NAMES = new Set([
"open_browser",
"close_browser",
"navigate_to_url",
"get_page_content",
"click_element",
"fill_input",
"get_element_text",
"evaluate_javascript",
"take_screenshot",
"wait_for_selector",
"get_page_title",
"get_current_url",
"reload_page",
"go_back",
"go_forward",
"get_elements",
"set_viewport",
"clear_cookies",
"get_cookies",
"set_cookies"
]);
const browserRequestQueues = new Map();
function getRequestQueueKey(request) {
if (request?.method !== "tools/call") {
return null;
}
const { name, arguments: args = {} } = request.params || {};
if (!BROWSER_TOOL_NAMES.has(name)) {
return null;
}
if (name === "close_browser" && !args.sessionId) {
return "__browser_global__";
}
return args.sessionId ? `browser:${args.sessionId}` : "__browser_global__";
}
function enqueueBrowserRequest(queueKey, task) {
const previous = browserRequestQueues.get(queueKey) || Promise.resolve();
const next = previous.catch(() => {}).then(task);
browserRequestQueues.set(queueKey, next);
return next.finally(() => {
if (browserRequestQueues.get(queueKey) === next) {
browserRequestQueues.delete(queueKey);
}
});
}
function getTools() {
return [
{
name: "store_context",
description: "Store persistent memory such as architecture decisions, rules, or notes.",
inputSchema: {
type: "object",
properties: {
content: {
type: "string",
description: "The memory content to store"
},
type: {
type: "string",
description: "Optional memory type such as general, project, note, or architecture"
},
summary: {
type: "string",
description: "Optional short summary for search and conflict detection"
},
importance: {
type: "number",
description: "Optional importance score from 1-5"
},
tags: {
type: "array",
items: { type: "string" }
},
metadata: {
type: "object",
description: "Optional structured metadata"
},
relatedContexts: {
type: "array",
items: { type: "string" }
},
relatedTasks: {
type: "array",
items: { type: "string" }
},
relatedIssues: {
type: "array",
items: { type: "string" }
}
},
required: ["content"]
}
},
{
name: "search_context",
description: "Search stored memory using a query string.",
inputSchema: {
type: "object",
properties: {
query: {
type: "string",
description: "Search query to find relevant memory"
},
limit: {
type: "number",
description: "Maximum number of entries to return"
},
lifecycle: {
type: "string",
description: "Optional lifecycle filter such as active or archived"
}
},
required: ["query"]
}
},
{
name: "log_action",
description: "Log an action such as a code change or fix for traceability.",
inputSchema: {
type: "object",
properties: {
actionType: {
type: "string",
description: "Type of action (e.g., create, update, fix)"
},
target: {
type: "string",
description: "Target of the action (file, API, component)"
},
summary: {
type: "string",
description: "Short summary of what changed"
},
contextRefs: {
type: "array",
items: { type: "string" },
description: "Related context IDs"
}
},
required: ["actionType", "target", "summary"]
}
},
{
name: "get_full_context",
description: "Retrieve a context along with all related actions.",
inputSchema: {
type: "object",
properties: {
id: {
type: "string",
description: "Context ID"
}
},
required: ["id"]
}
},
{
name: "start_session",
description: "Start a new working session for tracking agent activity.",
inputSchema: {
type: "object",
properties: {
status: {
type: "string",
description: "Session status (active, paused, completed)"
}
},
required: ["status"]
}
},
{
name: "get_agent_instructions",
description: "Retrieve the global system instruction for agent behavior.",
inputSchema: {
type: "object",
properties: {}
}
},
{
name: "get_logs",
description: "Retrieve system logs (errors, info, debug)",
inputSchema: {
type: "object",
properties: {
type: {
type: "string",
description: "Filter by log type (error, info)"
},
limit: {
type: "number",
description: "Number of logs to return"
}
}
}
},
{
name: "list_agents",
description: "List all registered agents",
inputSchema: { type: "object", properties: {} }
},
{
name: "create_task",
description: "Create a task in the current project so agents can coordinate ownership and progress.",
inputSchema: {
type: "object",
properties: {
title: { type: "string" },
description: { type: "string" },
assigned_to: {
type: "string",
description: "Optional agent ID to assign immediately"
},
priority: {
type: "number",
description: "Task priority from 1-5"
},
dependencies: {
type: "array",
items: { type: "string" },
description: "Task IDs that must be completed first"
},
status: {
type: "string",
description: "Initial task status"
},
required_capabilities: {
type: "array",
items: { type: "string" },
description: "Capabilities required for auto-assignment"
},
relatedContexts: {
type: "array",
items: { type: "string" }
},
relatedIssues: {
type: "array",
items: { type: "string" }
},
expectedUpdatedAt: {
type: "string",
description: "Optional optimistic-concurrency timestamp"
},
expectedVersion: {
type: "number",
description: "Optional optimistic-concurrency version"
}
},
required: ["title"]
}
},
{
name: "assign_task",
description: "Assign or claim a task so agents do not compete for the same work.",
inputSchema: {
type: "object",
properties: {
task_id: {
type: "string",
description: "Task ID to claim or assign"
},
agent_id: {
type: "string",
description: "Optional target agent ID. Defaults to the current agent."
}
},
required: ["task_id"]
}
},
{
name: "update_task",
description: "Update task status, ownership, blockers, or completion details.",
inputSchema: {
type: "object",
properties: {
task_id: {
type: "string",
description: "Task ID to update"
},
title: { type: "string" },
description: { type: "string" },
assigned_to: { type: "string" },
status: {
type: "string",
description: "pending, in_progress, blocked, or completed"
},
priority: { type: "number" },
dependencies: {
type: "array",
items: { type: "string" }
},
required_capabilities: {
type: "array",
items: { type: "string" }
},
relatedContexts: {
type: "array",
items: { type: "string" }
},
relatedIssues: {
type: "array",
items: { type: "string" }
},
expectedUpdatedAt: {
type: "string",
description: "Optional optimistic-concurrency timestamp"
},
expectedVersion: {
type: "number",
description: "Optional optimistic-concurrency version"
},
result: {
type: "string",
description: "Completion summary or handoff result"
},
blocker: {
type: "string",
description: "Reason the task is blocked"
}
},
required: ["task_id"]
}
},
{
name: "send_message",
description: "Send message between agents",
inputSchema: {
type: "object",
properties: {
to_agent: { type: "string" },
content: { type: "string" },
type: {
type: "string",
description: "info, warning, handoff, or status"
},
related_task: {
type: "string",
description: "Optional related task ID"
}
},
required: ["content"]
}
},
{
name: "register_agent",
description: "Register a new agent in the system",
inputSchema: {
type: "object",
properties: {
name: { type: "string" },
role: { type: "string" },
capabilities: {
type: "array",
items: { type: "string" }
},
agent_id: {
type: "string",
description: "Optional stable identifier for the agent"
}
},
required: ["name"]
}
},
{
name: "fetch_tasks",
description: "Fetch project-scoped tasks with optional filters for ownership and status.",
inputSchema: {
type: "object",
properties: {
assigned_only: {
type: "boolean",
description: "If true, fetch only tasks assigned to current agent"
},
assigned_to: {
type: "string",
description: "Fetch tasks assigned to a specific agent"
},
created_by: {
type: "string",
description: "Fetch tasks created by a specific agent"
},
status: {
type: "string",
description: "Filter by task status"
},
include_completed: {
type: "boolean",
description: "Include completed tasks. Defaults to true."
},
limit: {
type: "number",
description: "Maximum number of tasks to return"
}
}
}
},
{
name: "request_messages",
description: "Fetch messages for the current agent",
inputSchema: {
type: "object",
properties: {
limit: {
type: "number",
description: "Maximum number of messages to return"
}
}
}
},
{
name: "create_project_map",
description: "Store a structured project-map entry so agents can reuse codebase understanding.",
inputSchema: {
type: "object",
properties: {
file_path: {
type: "string",
description: "Relative file or module path. Use . for project-root summaries."
},
type: {
type: "string",
description: "Entry type such as file, folder, module, service, or project"
},
summary: {
type: "string",
description: "Short explanation of what this path or module is responsible for"
},
dependencies: {
type: "array",
items: { type: "string" }
},
exports: {
type: "array",
items: { type: "string" }
},
key_details: {
type: "array",
items: { type: "string" },
description: "Important architectural details, constraints, or conventions"
},
related_tasks: {
type: "array",
items: { type: "string" },
description: "Task IDs related to this map entry"
},
relationships: {
type: "object",
properties: {
parent: { type: "string" },
children: {
type: "array",
items: { type: "string" }
}
}
},
tags: {
type: "array",
items: { type: "string" }
},
metadata: {
type: "object",
description: "Extra structured details to preserve with the entry"
},
expectedUpdatedAt: {
type: "string",
description: "Optional optimistic-concurrency timestamp"
},
expectedVersion: {
type: "number",
description: "Optional optimistic-concurrency version"
}
},
required: ["file_path", "type", "summary"]
}
},
{
name: "fetch_project_map",
description: "Fetch structured project-map entries for the current project.",
inputSchema: {
type: "object",
properties: {
file_path: {
type: "string",
description: "Fetch a specific file or module path"
},
type: {
type: "string",
description: "Filter by project-map entry type"
},
query: {
type: "string",
description: "Text search across summary and structural details"
},
limit: {
type: "number",
description: "Maximum number of entries to return"
}
}
}
},
{
name: "record_activity",
description: "Append a live activity entry for the current project.",
inputSchema: {
type: "object",
properties: {
type: { type: "string" },
message: { type: "string" },
related_task: { type: "string" },
resource: { type: "string" },
metadata: { type: "object" }
},
required: ["message"]
}
},
{
name: "fetch_activity",
description: "Fetch the live project activity stream.",
inputSchema: {
type: "object",
properties: {
agent: { type: "string" },
type: { type: "string" },
related_task: { type: "string" },
limit: { type: "number" }
}
}
},
{
name: "acquire_resource_lock",
description: "Acquire a soft lock for a file, module, task, or other shared resource.",
inputSchema: {
type: "object",
properties: {
resource: { type: "string" },
expiresInMs: { type: "number" },
metadata: { type: "object" }
},
required: ["resource"]
}
},
{
name: "release_resource_lock",
description: "Release a soft lock previously acquired by the current agent.",
inputSchema: {
type: "object",
properties: {
resource: { type: "string" }
},
required: ["resource"]
}
},
{
name: "fetch_resource_locks",
description: "Fetch active soft locks for the current project.",
inputSchema: {
type: "object",
properties: {
resource: { type: "string" }
}
}
},
{
name: "set_project_descriptor",
description: "Store or update the current project's structured descriptor.",
inputSchema: {
type: "object",
properties: {
name: { type: "string" },
category: { type: "string" },
description: { type: "string" },
tech_stack: {
type: "array",
items: { type: "string" }
},
goals: {
type: "array",
items: { type: "string" }
},
constraints: {
type: "array",
items: { type: "string" }
},
rules: {
type: "array",
items: { type: "string" }
},
tags: {
type: "array",
items: { type: "string" }
}
},
required: ["name", "category", "description"]
}
},
{
name: "get_project_descriptor",
description: "Fetch the current project's descriptor.",
inputSchema: {
type: "object",
properties: {}
}
},
{
name: "update_context",
description: "Update a memory entry with version tracking and lifecycle support.",
inputSchema: {
type: "object",
properties: {
context_id: { type: "string" },
reason: { type: "string" },
expectedUpdatedAt: {
type: "string",
description: "Optional optimistic-concurrency timestamp"
},
expectedVersion: {
type: "number",
description: "Optional optimistic-concurrency version"
},
updates: {
type: "object",
description: "Fields to update on the stored context"
}
},
required: ["context_id", "updates"]
}
},
{
name: "get_connected_context",
description: "Retrieve a context together with related memory, tasks, issues, actions, and versions.",
inputSchema: {
type: "object",
properties: {
id: { type: "string" }
},
required: ["id"]
}
},
{
name: "optimize_memory",
description: "Run the memory optimization engine for the current project.",
inputSchema: {
type: "object",
properties: {
limit: { type: "number" }
}
}
},
{
name: "create_issue",
description: "Create a project issue or note linked to memory and tasks.",
inputSchema: {
type: "object",
properties: {
title: { type: "string" },
description: { type: "string" },
type: { type: "string" },
relatedContexts: {
type: "array",
items: { type: "string" }
},
relatedTasks: {
type: "array",
items: { type: "string" }
},
relatedIssues: {
type: "array",
items: { type: "string" }
}
},
required: ["title", "type"]
}
},
{
name: "resolve_issue",
description: "Resolve an existing issue entry.",
inputSchema: {
type: "object",
properties: {
issue_id: { type: "string" },
resolution: { type: "string" },
expectedUpdatedAt: {
type: "string",
description: "Optional optimistic-concurrency timestamp"
},
expectedVersion: {
type: "number",
description: "Optional optimistic-concurrency version"
}
},
required: ["issue_id"]
}
},
{
name: "fetch_issues",
description: "Fetch issues for the current project.",
inputSchema: {
type: "object",
properties: {
status: { type: "string" },
type: { type: "string" },
related_task: { type: "string" },
related_context: { type: "string" },
limit: { type: "number" }
}
}
},
{
name: "heartbeat_agent",
description: "Send an agent heartbeat so registry status stays fresh.",
inputSchema: {
type: "object",
properties: {
current_task: { type: "string" },
status: { type: "string" }
}
}
},
{
name: "fetch_metrics",
description: "Fetch recorded task and memory metrics for the current project.",
inputSchema: {
type: "object",
properties: {
metric_type: { type: "string" },
name: { type: "string" },
limit: { type: "number" }
}
}
},
{
name: "open_browser",
description: "Initialize and open the browser for automation.",
inputSchema: { type: "object", properties: {} }
},
{
name: "close_browser",
description: "Close the browser and clean up resources.",
inputSchema: { type: "object", properties: {} }
},
{
name: "navigate_to_url",
description: "Navigate to a specific URL.",
inputSchema: {
type: "object",
properties: {
sessionId: { type: "string", description: "Session ID from open_browser" },
url: { type: "string", description: "The URL to navigate to" },
waitUntil: { type: "string", description: "When to consider navigation complete (load, domcontentloaded, networkidle)" }
},
required: ["sessionId", "url"]
}
},
{
name: "get_page_content",
description: "Get the current page content as text or HTML.",
inputSchema: {
type: "object",
properties: {
sessionId: { type: "string", description: "Session ID from open_browser" },
format: { type: "string", enum: ["text", "html"], description: "Output format" }
},
required: ["sessionId"]
}
},
{
name: "click_element",
description: "Click an element on the page by CSS selector.",
inputSchema: {
type: "object",
properties: {
sessionId: { type: "string", description: "Session ID from open_browser" },
selector: { type: "string", description: "CSS selector for the element" },
timeout: { type: "number", description: "Timeout in milliseconds" }
},
required: ["sessionId", "selector"]
}
},
{
name: "fill_input",
description: "Fill an input field with a value.",
inputSchema: {
type: "object",
properties: {
sessionId: { type: "string", description: "Session ID from open_browser" },
selector: { type: "string", description: "CSS selector for the input" },
value: { type: "string", description: "Value to fill" },
clear: { type: "boolean", description: "Clear before filling" }
},
required: ["sessionId", "selector", "value"]
}
},
{
name: "get_element_text",
description: "Get text content of an element.",
inputSchema: {
type: "object",
properties: {
sessionId: { type: "string", description: "Session ID from open_browser" },
selector: { type: "string", description: "CSS selector" }
},
required: ["sessionId", "selector"]
}
},
{
name: "evaluate_javascript",
description: "Execute JavaScript in the browser context.",
inputSchema: {
type: "object",
properties: {
sessionId: { type: "string", description: "Session ID from open_browser" },
script: { type: "string", description: "JavaScript code to execute" }
},
required: ["sessionId", "script"]
}
},
{
name: "take_screenshot",
description: "Take a screenshot of the current page.",
inputSchema: {
type: "object",
properties: {
sessionId: { type: "string", description: "Session ID from open_browser" },
path: { type: "string", description: "Optional file path to save screenshot" },
fullPage: { type: "boolean", description: "Capture full page" }
},
required: ["sessionId"]
}
},
{
name: "wait_for_selector",
description: "Wait for an element to appear or disappear.",
inputSchema: {
type: "object",