codexmate 0.0.21 → 0.0.23

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.
Files changed (115) hide show
  1. package/README.md +390 -284
  2. package/README.zh.md +322 -0
  3. package/cli/agents-files.js +224 -162
  4. package/cli/archive-helpers.js +446 -446
  5. package/cli/auth-profiles.js +359 -359
  6. package/cli/builtin-proxy.js +1044 -580
  7. package/cli/claude-proxy.js +998 -998
  8. package/cli/config-bootstrap.js +384 -384
  9. package/cli/config-health.js +338 -338
  10. package/cli/openai-bridge.js +950 -0
  11. package/cli/openclaw-config.js +629 -629
  12. package/cli/session-usage.concurrent.js +28 -0
  13. package/cli/session-usage.js +112 -0
  14. package/cli/session-usage.models.js +176 -0
  15. package/cli/skills.js +1141 -1141
  16. package/cli/zip-commands.js +510 -510
  17. package/cli.js +13214 -13129
  18. package/lib/cli-file-utils.js +151 -151
  19. package/lib/cli-models-utils.js +419 -419
  20. package/lib/cli-network-utils.js +164 -164
  21. package/lib/cli-path-utils.js +69 -69
  22. package/lib/cli-session-utils.js +121 -121
  23. package/lib/cli-sessions.js +386 -386
  24. package/lib/cli-utils.js +155 -155
  25. package/lib/download-artifacts.js +77 -77
  26. package/lib/mcp-stdio.js +440 -440
  27. package/lib/task-orchestrator.js +869 -869
  28. package/lib/text-diff.js +303 -303
  29. package/lib/workflow-engine.js +340 -340
  30. package/package.json +74 -74
  31. package/res/json5.min.js +1 -1
  32. package/res/logo.png +0 -0
  33. package/res/vue.global.prod.js +13 -13
  34. package/web-ui/app.js +626 -530
  35. package/web-ui/index.html +34 -33
  36. package/web-ui/logic.agents-diff.mjs +386 -386
  37. package/web-ui/logic.claude.mjs +168 -168
  38. package/web-ui/logic.mjs +5 -5
  39. package/web-ui/logic.runtime.mjs +128 -124
  40. package/web-ui/logic.sessions.mjs +614 -581
  41. package/web-ui/modules/api.mjs +90 -90
  42. package/web-ui/modules/app.computed.dashboard.mjs +126 -113
  43. package/web-ui/modules/app.computed.index.mjs +17 -15
  44. package/web-ui/modules/app.computed.main-tabs.mjs +202 -195
  45. package/web-ui/modules/app.computed.session.mjs +653 -507
  46. package/web-ui/modules/app.constants.mjs +15 -15
  47. package/web-ui/modules/app.methods.agents.mjs +544 -493
  48. package/web-ui/modules/app.methods.claude-config.mjs +174 -174
  49. package/web-ui/modules/app.methods.codex-config.mjs +795 -640
  50. package/web-ui/modules/app.methods.index.mjs +92 -88
  51. package/web-ui/modules/app.methods.install.mjs +177 -149
  52. package/web-ui/modules/app.methods.navigation.mjs +662 -619
  53. package/web-ui/modules/app.methods.openclaw-core.mjs +814 -814
  54. package/web-ui/modules/app.methods.openclaw-editing.mjs +372 -372
  55. package/web-ui/modules/app.methods.openclaw-persist.mjs +369 -369
  56. package/web-ui/modules/app.methods.providers.mjs +404 -363
  57. package/web-ui/modules/app.methods.runtime.mjs +323 -323
  58. package/web-ui/modules/app.methods.session-actions.mjs +537 -520
  59. package/web-ui/modules/app.methods.session-browser.mjs +691 -626
  60. package/web-ui/modules/app.methods.session-timeline.mjs +448 -448
  61. package/web-ui/modules/app.methods.session-trash.mjs +422 -422
  62. package/web-ui/modules/app.methods.startup-claude.mjs +417 -412
  63. package/web-ui/modules/app.methods.task-orchestration.mjs +556 -471
  64. package/web-ui/modules/config-mode.computed.mjs +126 -126
  65. package/web-ui/modules/config-template-confirm-pref.mjs +33 -0
  66. package/web-ui/modules/i18n.mjs +1823 -0
  67. package/web-ui/modules/plugins.computed.mjs +3 -0
  68. package/web-ui/modules/plugins.methods.mjs +3 -0
  69. package/web-ui/modules/plugins.storage.mjs +11 -0
  70. package/web-ui/modules/sessions-filters-url.mjs +85 -0
  71. package/web-ui/modules/skills.computed.mjs +107 -107
  72. package/web-ui/modules/skills.methods.mjs +481 -481
  73. package/web-ui/partials/index/layout-footer.html +13 -13
  74. package/web-ui/partials/index/layout-header.html +461 -402
  75. package/web-ui/partials/index/modal-config-template-agents.html +175 -125
  76. package/web-ui/partials/index/modal-confirm-toast.html +32 -32
  77. package/web-ui/partials/index/modal-health-check.html +72 -72
  78. package/web-ui/partials/index/modal-openclaw-config.html +280 -280
  79. package/web-ui/partials/index/modal-skills.html +200 -184
  80. package/web-ui/partials/index/modals-basic.html +165 -156
  81. package/web-ui/partials/index/panel-config-claude.html +159 -126
  82. package/web-ui/partials/index/panel-config-codex.html +255 -237
  83. package/web-ui/partials/index/panel-config-openclaw.html +78 -78
  84. package/web-ui/partials/index/panel-docs.html +147 -130
  85. package/web-ui/partials/index/panel-market.html +174 -174
  86. package/web-ui/partials/index/panel-orchestration.html +388 -397
  87. package/web-ui/partials/index/panel-plugins.html +273 -0
  88. package/web-ui/partials/index/panel-sessions.html +298 -292
  89. package/web-ui/partials/index/panel-settings.html +258 -190
  90. package/web-ui/partials/index/panel-usage.html +353 -213
  91. package/web-ui/session-helpers.mjs +573 -559
  92. package/web-ui/source-bundle.cjs +233 -233
  93. package/web-ui/styles/base-theme.css +264 -271
  94. package/web-ui/styles/controls-forms.css +369 -360
  95. package/web-ui/styles/docs-panel.css +247 -182
  96. package/web-ui/styles/feedback.css +108 -108
  97. package/web-ui/styles/health-check-dialog.css +144 -144
  98. package/web-ui/styles/layout-shell.css +602 -376
  99. package/web-ui/styles/modals-core.css +464 -464
  100. package/web-ui/styles/navigation-panels.css +390 -348
  101. package/web-ui/styles/openclaw-structured.css +266 -266
  102. package/web-ui/styles/plugins-panel.css +523 -0
  103. package/web-ui/styles/responsive.css +456 -450
  104. package/web-ui/styles/sessions-list.css +400 -400
  105. package/web-ui/styles/sessions-preview.css +411 -411
  106. package/web-ui/styles/sessions-toolbar-trash.css +268 -243
  107. package/web-ui/styles/sessions-usage.css +879 -628
  108. package/web-ui/styles/settings-panel.css +166 -0
  109. package/web-ui/styles/skills-list.css +303 -296
  110. package/web-ui/styles/skills-market.css +406 -335
  111. package/web-ui/styles/task-orchestration.css +822 -776
  112. package/web-ui/styles/titles-cards.css +408 -408
  113. package/web-ui/styles.css +20 -18
  114. package/web-ui.html +17 -17
  115. package/README.en.md +0 -349
package/lib/mcp-stdio.js CHANGED
@@ -1,440 +1,440 @@
1
- const DEFAULT_PROTOCOL_VERSION = '2025-11-25';
2
-
3
- function jsonRpcError(code, message, data) {
4
- const error = {
5
- code,
6
- message: String(message || 'Unknown error')
7
- };
8
- if (data !== undefined) {
9
- error.data = data;
10
- }
11
- return error;
12
- }
13
-
14
- function createToolMap(tools = []) {
15
- const map = new Map();
16
- for (const tool of Array.isArray(tools) ? tools : []) {
17
- if (!tool || typeof tool !== 'object') continue;
18
- const name = typeof tool.name === 'string' ? tool.name.trim() : '';
19
- if (!name) continue;
20
- map.set(name, {
21
- name,
22
- description: typeof tool.description === 'string' ? tool.description : '',
23
- inputSchema: tool.inputSchema && typeof tool.inputSchema === 'object'
24
- ? tool.inputSchema
25
- : { type: 'object', properties: {}, additionalProperties: false },
26
- annotations: tool.annotations && typeof tool.annotations === 'object' ? tool.annotations : undefined,
27
- handler: typeof tool.handler === 'function' ? tool.handler : async () => ({})
28
- });
29
- }
30
- return map;
31
- }
32
-
33
- function createResourceMap(resources = []) {
34
- const map = new Map();
35
- for (const resource of Array.isArray(resources) ? resources : []) {
36
- if (!resource || typeof resource !== 'object') continue;
37
- const uri = typeof resource.uri === 'string' ? resource.uri.trim() : '';
38
- if (!uri) continue;
39
- map.set(uri, {
40
- uri,
41
- name: typeof resource.name === 'string' ? resource.name : uri,
42
- description: typeof resource.description === 'string' ? resource.description : '',
43
- mimeType: typeof resource.mimeType === 'string' ? resource.mimeType : 'application/json',
44
- read: typeof resource.read === 'function'
45
- ? resource.read
46
- : async () => ({ contents: [] })
47
- });
48
- }
49
- return map;
50
- }
51
-
52
- function createPromptMap(prompts = []) {
53
- const map = new Map();
54
- for (const prompt of Array.isArray(prompts) ? prompts : []) {
55
- if (!prompt || typeof prompt !== 'object') continue;
56
- const name = typeof prompt.name === 'string' ? prompt.name.trim() : '';
57
- if (!name) continue;
58
- map.set(name, {
59
- name,
60
- description: typeof prompt.description === 'string' ? prompt.description : '',
61
- arguments: Array.isArray(prompt.arguments) ? prompt.arguments : [],
62
- get: typeof prompt.get === 'function'
63
- ? prompt.get
64
- : async () => ({ messages: [] })
65
- });
66
- }
67
- return map;
68
- }
69
-
70
- function createMcpRequestRouter(options = {}) {
71
- const protocolVersion = typeof options.protocolVersion === 'string' && options.protocolVersion.trim()
72
- ? options.protocolVersion.trim()
73
- : DEFAULT_PROTOCOL_VERSION;
74
- const serverInfo = options.serverInfo && typeof options.serverInfo === 'object'
75
- ? options.serverInfo
76
- : { name: 'mcp-server', version: '0.0.0' };
77
- const logger = typeof options.logger === 'function' ? options.logger : () => {};
78
-
79
- const tools = createToolMap(options.tools);
80
- const resources = createResourceMap(options.resources);
81
- const prompts = createPromptMap(options.prompts);
82
-
83
- const listTools = () => Array.from(tools.values()).map((tool) => ({
84
- name: tool.name,
85
- description: tool.description,
86
- inputSchema: tool.inputSchema,
87
- ...(tool.annotations ? { annotations: tool.annotations } : {})
88
- }));
89
-
90
- const listResources = () => Array.from(resources.values()).map((resource) => ({
91
- uri: resource.uri,
92
- name: resource.name,
93
- description: resource.description,
94
- mimeType: resource.mimeType
95
- }));
96
-
97
- const listPrompts = () => Array.from(prompts.values()).map((prompt) => ({
98
- name: prompt.name,
99
- description: prompt.description,
100
- arguments: prompt.arguments
101
- }));
102
-
103
- const capabilities = {};
104
- if (tools.size > 0) {
105
- capabilities.tools = { listChanged: false };
106
- }
107
- if (resources.size > 0) {
108
- capabilities.resources = { listChanged: false, subscribe: false };
109
- }
110
- if (prompts.size > 0) {
111
- capabilities.prompts = { listChanged: false };
112
- }
113
-
114
- const withToolError = (error) => ({
115
- content: [{ type: 'text', text: `Error: ${error.message || error}` }],
116
- isError: true
117
- });
118
-
119
- const normalizeResourceResult = (uri, resource, result) => {
120
- if (result && Array.isArray(result.contents)) {
121
- return { contents: result.contents };
122
- }
123
- if (result && typeof result === 'object' && typeof result.text === 'string') {
124
- return {
125
- contents: [{
126
- uri,
127
- mimeType: result.mimeType || resource.mimeType,
128
- text: result.text
129
- }]
130
- };
131
- }
132
- const text = typeof result === 'string'
133
- ? result
134
- : JSON.stringify(result === undefined ? {} : result, null, 2);
135
- return {
136
- contents: [{
137
- uri,
138
- mimeType: resource.mimeType,
139
- text
140
- }]
141
- };
142
- };
143
-
144
- const resolveResourceByUri = (uri) => {
145
- const exact = resources.get(uri);
146
- if (exact) {
147
- return exact;
148
- }
149
- try {
150
- const parsed = new URL(uri);
151
- parsed.search = '';
152
- parsed.hash = '';
153
- const baseUri = parsed.toString();
154
- if (baseUri && resources.has(baseUri)) {
155
- return resources.get(baseUri);
156
- }
157
- } catch (_) {}
158
- return null;
159
- };
160
-
161
- const handleRequest = async (request) => {
162
- if (!request || typeof request !== 'object') {
163
- throw jsonRpcError(-32600, 'Invalid Request');
164
- }
165
- const method = typeof request.method === 'string' ? request.method : '';
166
- const params = request.params && typeof request.params === 'object' ? request.params : {};
167
-
168
- if (method === 'initialize') {
169
- return {
170
- protocolVersion,
171
- capabilities,
172
- serverInfo: {
173
- name: serverInfo.name || 'codexmate-mcp',
174
- version: serverInfo.version || '0.0.0'
175
- }
176
- };
177
- }
178
-
179
- if (method === 'ping') {
180
- return {};
181
- }
182
-
183
- if (method === 'tools/list') {
184
- return { tools: listTools() };
185
- }
186
-
187
- if (method === 'tools/call') {
188
- const name = typeof params.name === 'string' ? params.name.trim() : '';
189
- if (!name) {
190
- throw jsonRpcError(-32602, 'Missing tool name');
191
- }
192
- const tool = tools.get(name);
193
- if (!tool) {
194
- throw jsonRpcError(-32602, `Unknown tool: ${name}`);
195
- }
196
- try {
197
- const args = params.arguments && typeof params.arguments === 'object'
198
- ? params.arguments
199
- : {};
200
- const result = await tool.handler(args, request);
201
- if (result && Array.isArray(result.content)) {
202
- return result;
203
- }
204
- return {
205
- content: [{
206
- type: 'text',
207
- text: JSON.stringify(result === undefined ? {} : result, null, 2)
208
- }],
209
- structuredContent: result === undefined ? {} : result
210
- };
211
- } catch (error) {
212
- logger('error', `tools/call failed (${name}): ${error && error.message ? error.message : error}`);
213
- return withToolError(error || new Error('Tool execution failed'));
214
- }
215
- }
216
-
217
- if (method === 'resources/list') {
218
- return { resources: listResources() };
219
- }
220
-
221
- if (method === 'resources/read') {
222
- const uri = typeof params.uri === 'string' ? params.uri.trim() : '';
223
- if (!uri) {
224
- throw jsonRpcError(-32602, 'Missing resource uri');
225
- }
226
- const resource = resolveResourceByUri(uri);
227
- if (!resource) {
228
- throw jsonRpcError(-32602, `Unknown resource: ${uri}`);
229
- }
230
- try {
231
- const result = await resource.read(params, request);
232
- return normalizeResourceResult(uri, resource, result);
233
- } catch (error) {
234
- throw jsonRpcError(-32000, `Resource read failed: ${error && error.message ? error.message : error}`);
235
- }
236
- }
237
-
238
- if (method === 'prompts/list') {
239
- return { prompts: listPrompts() };
240
- }
241
-
242
- if (method === 'prompts/get') {
243
- const name = typeof params.name === 'string' ? params.name.trim() : '';
244
- if (!name) {
245
- throw jsonRpcError(-32602, 'Missing prompt name');
246
- }
247
- const prompt = prompts.get(name);
248
- if (!prompt) {
249
- throw jsonRpcError(-32602, `Unknown prompt: ${name}`);
250
- }
251
- try {
252
- const args = params.arguments && typeof params.arguments === 'object'
253
- ? params.arguments
254
- : {};
255
- const result = await prompt.get(args, request);
256
- return {
257
- description: prompt.description,
258
- messages: Array.isArray(result && result.messages) ? result.messages : []
259
- };
260
- } catch (error) {
261
- throw jsonRpcError(-32000, `Prompt get failed: ${error && error.message ? error.message : error}`);
262
- }
263
- }
264
-
265
- if (method === 'notifications/initialized') {
266
- return null;
267
- }
268
-
269
- throw jsonRpcError(-32601, `Method not found: ${method}`);
270
- };
271
-
272
- return {
273
- handleRequest
274
- };
275
- }
276
-
277
- function createMcpStdioServer(options = {}) {
278
- const logger = typeof options.logger === 'function' ? options.logger : () => {};
279
- const stdin = options.stdin || process.stdin;
280
- const stdout = options.stdout || process.stdout;
281
- const router = createMcpRequestRouter(options);
282
- const jsonRpcVersion = '2.0';
283
-
284
- let buffer = Buffer.alloc(0);
285
- let started = false;
286
- let stopped = false;
287
-
288
- const writeMessage = (payload) => {
289
- const text = JSON.stringify(payload);
290
- const body = Buffer.from(text, 'utf-8');
291
- const header = Buffer.from(`Content-Length: ${body.length}\r\nContent-Type: application/json\r\n\r\n`, 'utf-8');
292
- stdout.write(Buffer.concat([header, body]));
293
- };
294
-
295
- const writeResponse = (id, result) => {
296
- writeMessage({
297
- jsonrpc: jsonRpcVersion,
298
- id,
299
- result
300
- });
301
- };
302
-
303
- const writeError = (id, error) => {
304
- const normalized = error && typeof error === 'object' && Number.isFinite(error.code)
305
- ? error
306
- : jsonRpcError(-32000, error && error.message ? error.message : String(error || 'Unknown error'));
307
- writeMessage({
308
- jsonrpc: jsonRpcVersion,
309
- id,
310
- error: normalized
311
- });
312
- };
313
-
314
- const processMessage = async (rawText) => {
315
- let message = null;
316
- try {
317
- message = JSON.parse(rawText);
318
- } catch (error) {
319
- writeError(null, jsonRpcError(-32700, 'Parse error'));
320
- return;
321
- }
322
-
323
- if (!message || typeof message !== 'object') {
324
- writeError(null, jsonRpcError(-32600, 'Invalid Request'));
325
- return;
326
- }
327
-
328
- if (Array.isArray(message)) {
329
- writeError(null, jsonRpcError(-32600, 'Batch request is not supported'));
330
- return;
331
- }
332
-
333
- const hasMethod = typeof message.method === 'string' && message.method.trim().length > 0;
334
- const hasId = Object.prototype.hasOwnProperty.call(message, 'id');
335
-
336
- if (!hasMethod) {
337
- if (hasId) {
338
- writeError(message.id, jsonRpcError(-32600, 'Invalid Request'));
339
- } else {
340
- writeError(null, jsonRpcError(-32600, 'Invalid Request'));
341
- }
342
- return;
343
- }
344
-
345
- try {
346
- const result = await router.handleRequest(message);
347
- if (hasId) {
348
- writeResponse(message.id, result === null ? {} : result);
349
- }
350
- } catch (error) {
351
- if (hasId) {
352
- writeError(message.id, error);
353
- } else {
354
- logger('error', `MCP notification handling failed: ${error && error.message ? error.message : error}`);
355
- }
356
- }
357
- };
358
-
359
- const parseBuffer = async () => {
360
- while (buffer.length > 0) {
361
- const headerEnd = buffer.indexOf('\r\n\r\n');
362
- if (headerEnd < 0) {
363
- return;
364
- }
365
-
366
- const headerText = buffer.slice(0, headerEnd).toString('utf-8');
367
- const headers = {};
368
- for (const line of headerText.split('\r\n')) {
369
- const idx = line.indexOf(':');
370
- if (idx <= 0) continue;
371
- const key = line.slice(0, idx).trim().toLowerCase();
372
- const value = line.slice(idx + 1).trim();
373
- headers[key] = value;
374
- }
375
-
376
- const length = Number.parseInt(headers['content-length'] || '', 10);
377
- if (!Number.isFinite(length) || length < 0) {
378
- buffer = Buffer.alloc(0);
379
- writeError(null, jsonRpcError(-32600, 'Invalid Content-Length header'));
380
- return;
381
- }
382
-
383
- const bodyOffset = headerEnd + 4;
384
- const frameLength = bodyOffset + length;
385
- if (buffer.length < frameLength) {
386
- return;
387
- }
388
-
389
- const body = buffer.slice(bodyOffset, frameLength);
390
- buffer = buffer.slice(frameLength);
391
- await processMessage(body.toString('utf-8'));
392
- }
393
- };
394
-
395
- const onData = async (chunk) => {
396
- if (stopped) return;
397
- buffer = buffer.length === 0 ? chunk : Buffer.concat([buffer, chunk]);
398
- try {
399
- await parseBuffer();
400
- } catch (error) {
401
- logger('error', `MCP stdio parse failed: ${error && error.message ? error.message : error}`);
402
- writeError(null, jsonRpcError(-32000, 'Internal parse failure'));
403
- }
404
- };
405
-
406
- const onError = (error) => {
407
- logger('error', `MCP stdio stream error: ${error && error.message ? error.message : error}`);
408
- };
409
-
410
- const start = () => {
411
- if (started || stopped) return;
412
- started = true;
413
- stdin.on('data', onData);
414
- stdin.on('error', onError);
415
- stdout.on('error', onError);
416
- if (stdin.isTTY) {
417
- stdin.resume();
418
- }
419
- };
420
-
421
- const stop = () => {
422
- if (stopped) return;
423
- stopped = true;
424
- stdin.removeListener('data', onData);
425
- stdin.removeListener('error', onError);
426
- stdout.removeListener('error', onError);
427
- };
428
-
429
- return {
430
- start,
431
- stop
432
- };
433
- }
434
-
435
- module.exports = {
436
- DEFAULT_PROTOCOL_VERSION,
437
- jsonRpcError,
438
- createMcpRequestRouter,
439
- createMcpStdioServer
440
- };
1
+ const DEFAULT_PROTOCOL_VERSION = '2025-11-25';
2
+
3
+ function jsonRpcError(code, message, data) {
4
+ const error = {
5
+ code,
6
+ message: String(message || 'Unknown error')
7
+ };
8
+ if (data !== undefined) {
9
+ error.data = data;
10
+ }
11
+ return error;
12
+ }
13
+
14
+ function createToolMap(tools = []) {
15
+ const map = new Map();
16
+ for (const tool of Array.isArray(tools) ? tools : []) {
17
+ if (!tool || typeof tool !== 'object') continue;
18
+ const name = typeof tool.name === 'string' ? tool.name.trim() : '';
19
+ if (!name) continue;
20
+ map.set(name, {
21
+ name,
22
+ description: typeof tool.description === 'string' ? tool.description : '',
23
+ inputSchema: tool.inputSchema && typeof tool.inputSchema === 'object'
24
+ ? tool.inputSchema
25
+ : { type: 'object', properties: {}, additionalProperties: false },
26
+ annotations: tool.annotations && typeof tool.annotations === 'object' ? tool.annotations : undefined,
27
+ handler: typeof tool.handler === 'function' ? tool.handler : async () => ({})
28
+ });
29
+ }
30
+ return map;
31
+ }
32
+
33
+ function createResourceMap(resources = []) {
34
+ const map = new Map();
35
+ for (const resource of Array.isArray(resources) ? resources : []) {
36
+ if (!resource || typeof resource !== 'object') continue;
37
+ const uri = typeof resource.uri === 'string' ? resource.uri.trim() : '';
38
+ if (!uri) continue;
39
+ map.set(uri, {
40
+ uri,
41
+ name: typeof resource.name === 'string' ? resource.name : uri,
42
+ description: typeof resource.description === 'string' ? resource.description : '',
43
+ mimeType: typeof resource.mimeType === 'string' ? resource.mimeType : 'application/json',
44
+ read: typeof resource.read === 'function'
45
+ ? resource.read
46
+ : async () => ({ contents: [] })
47
+ });
48
+ }
49
+ return map;
50
+ }
51
+
52
+ function createPromptMap(prompts = []) {
53
+ const map = new Map();
54
+ for (const prompt of Array.isArray(prompts) ? prompts : []) {
55
+ if (!prompt || typeof prompt !== 'object') continue;
56
+ const name = typeof prompt.name === 'string' ? prompt.name.trim() : '';
57
+ if (!name) continue;
58
+ map.set(name, {
59
+ name,
60
+ description: typeof prompt.description === 'string' ? prompt.description : '',
61
+ arguments: Array.isArray(prompt.arguments) ? prompt.arguments : [],
62
+ get: typeof prompt.get === 'function'
63
+ ? prompt.get
64
+ : async () => ({ messages: [] })
65
+ });
66
+ }
67
+ return map;
68
+ }
69
+
70
+ function createMcpRequestRouter(options = {}) {
71
+ const protocolVersion = typeof options.protocolVersion === 'string' && options.protocolVersion.trim()
72
+ ? options.protocolVersion.trim()
73
+ : DEFAULT_PROTOCOL_VERSION;
74
+ const serverInfo = options.serverInfo && typeof options.serverInfo === 'object'
75
+ ? options.serverInfo
76
+ : { name: 'mcp-server', version: '0.0.0' };
77
+ const logger = typeof options.logger === 'function' ? options.logger : () => {};
78
+
79
+ const tools = createToolMap(options.tools);
80
+ const resources = createResourceMap(options.resources);
81
+ const prompts = createPromptMap(options.prompts);
82
+
83
+ const listTools = () => Array.from(tools.values()).map((tool) => ({
84
+ name: tool.name,
85
+ description: tool.description,
86
+ inputSchema: tool.inputSchema,
87
+ ...(tool.annotations ? { annotations: tool.annotations } : {})
88
+ }));
89
+
90
+ const listResources = () => Array.from(resources.values()).map((resource) => ({
91
+ uri: resource.uri,
92
+ name: resource.name,
93
+ description: resource.description,
94
+ mimeType: resource.mimeType
95
+ }));
96
+
97
+ const listPrompts = () => Array.from(prompts.values()).map((prompt) => ({
98
+ name: prompt.name,
99
+ description: prompt.description,
100
+ arguments: prompt.arguments
101
+ }));
102
+
103
+ const capabilities = {};
104
+ if (tools.size > 0) {
105
+ capabilities.tools = { listChanged: false };
106
+ }
107
+ if (resources.size > 0) {
108
+ capabilities.resources = { listChanged: false, subscribe: false };
109
+ }
110
+ if (prompts.size > 0) {
111
+ capabilities.prompts = { listChanged: false };
112
+ }
113
+
114
+ const withToolError = (error) => ({
115
+ content: [{ type: 'text', text: `Error: ${error.message || error}` }],
116
+ isError: true
117
+ });
118
+
119
+ const normalizeResourceResult = (uri, resource, result) => {
120
+ if (result && Array.isArray(result.contents)) {
121
+ return { contents: result.contents };
122
+ }
123
+ if (result && typeof result === 'object' && typeof result.text === 'string') {
124
+ return {
125
+ contents: [{
126
+ uri,
127
+ mimeType: result.mimeType || resource.mimeType,
128
+ text: result.text
129
+ }]
130
+ };
131
+ }
132
+ const text = typeof result === 'string'
133
+ ? result
134
+ : JSON.stringify(result === undefined ? {} : result, null, 2);
135
+ return {
136
+ contents: [{
137
+ uri,
138
+ mimeType: resource.mimeType,
139
+ text
140
+ }]
141
+ };
142
+ };
143
+
144
+ const resolveResourceByUri = (uri) => {
145
+ const exact = resources.get(uri);
146
+ if (exact) {
147
+ return exact;
148
+ }
149
+ try {
150
+ const parsed = new URL(uri);
151
+ parsed.search = '';
152
+ parsed.hash = '';
153
+ const baseUri = parsed.toString();
154
+ if (baseUri && resources.has(baseUri)) {
155
+ return resources.get(baseUri);
156
+ }
157
+ } catch (_) {}
158
+ return null;
159
+ };
160
+
161
+ const handleRequest = async (request) => {
162
+ if (!request || typeof request !== 'object') {
163
+ throw jsonRpcError(-32600, 'Invalid Request');
164
+ }
165
+ const method = typeof request.method === 'string' ? request.method : '';
166
+ const params = request.params && typeof request.params === 'object' ? request.params : {};
167
+
168
+ if (method === 'initialize') {
169
+ return {
170
+ protocolVersion,
171
+ capabilities,
172
+ serverInfo: {
173
+ name: serverInfo.name || 'codexmate-mcp',
174
+ version: serverInfo.version || '0.0.0'
175
+ }
176
+ };
177
+ }
178
+
179
+ if (method === 'ping') {
180
+ return {};
181
+ }
182
+
183
+ if (method === 'tools/list') {
184
+ return { tools: listTools() };
185
+ }
186
+
187
+ if (method === 'tools/call') {
188
+ const name = typeof params.name === 'string' ? params.name.trim() : '';
189
+ if (!name) {
190
+ throw jsonRpcError(-32602, 'Missing tool name');
191
+ }
192
+ const tool = tools.get(name);
193
+ if (!tool) {
194
+ throw jsonRpcError(-32602, `Unknown tool: ${name}`);
195
+ }
196
+ try {
197
+ const args = params.arguments && typeof params.arguments === 'object'
198
+ ? params.arguments
199
+ : {};
200
+ const result = await tool.handler(args, request);
201
+ if (result && Array.isArray(result.content)) {
202
+ return result;
203
+ }
204
+ return {
205
+ content: [{
206
+ type: 'text',
207
+ text: JSON.stringify(result === undefined ? {} : result, null, 2)
208
+ }],
209
+ structuredContent: result === undefined ? {} : result
210
+ };
211
+ } catch (error) {
212
+ logger('error', `tools/call failed (${name}): ${error && error.message ? error.message : error}`);
213
+ return withToolError(error || new Error('Tool execution failed'));
214
+ }
215
+ }
216
+
217
+ if (method === 'resources/list') {
218
+ return { resources: listResources() };
219
+ }
220
+
221
+ if (method === 'resources/read') {
222
+ const uri = typeof params.uri === 'string' ? params.uri.trim() : '';
223
+ if (!uri) {
224
+ throw jsonRpcError(-32602, 'Missing resource uri');
225
+ }
226
+ const resource = resolveResourceByUri(uri);
227
+ if (!resource) {
228
+ throw jsonRpcError(-32602, `Unknown resource: ${uri}`);
229
+ }
230
+ try {
231
+ const result = await resource.read(params, request);
232
+ return normalizeResourceResult(uri, resource, result);
233
+ } catch (error) {
234
+ throw jsonRpcError(-32000, `Resource read failed: ${error && error.message ? error.message : error}`);
235
+ }
236
+ }
237
+
238
+ if (method === 'prompts/list') {
239
+ return { prompts: listPrompts() };
240
+ }
241
+
242
+ if (method === 'prompts/get') {
243
+ const name = typeof params.name === 'string' ? params.name.trim() : '';
244
+ if (!name) {
245
+ throw jsonRpcError(-32602, 'Missing prompt name');
246
+ }
247
+ const prompt = prompts.get(name);
248
+ if (!prompt) {
249
+ throw jsonRpcError(-32602, `Unknown prompt: ${name}`);
250
+ }
251
+ try {
252
+ const args = params.arguments && typeof params.arguments === 'object'
253
+ ? params.arguments
254
+ : {};
255
+ const result = await prompt.get(args, request);
256
+ return {
257
+ description: prompt.description,
258
+ messages: Array.isArray(result && result.messages) ? result.messages : []
259
+ };
260
+ } catch (error) {
261
+ throw jsonRpcError(-32000, `Prompt get failed: ${error && error.message ? error.message : error}`);
262
+ }
263
+ }
264
+
265
+ if (method === 'notifications/initialized') {
266
+ return null;
267
+ }
268
+
269
+ throw jsonRpcError(-32601, `Method not found: ${method}`);
270
+ };
271
+
272
+ return {
273
+ handleRequest
274
+ };
275
+ }
276
+
277
+ function createMcpStdioServer(options = {}) {
278
+ const logger = typeof options.logger === 'function' ? options.logger : () => {};
279
+ const stdin = options.stdin || process.stdin;
280
+ const stdout = options.stdout || process.stdout;
281
+ const router = createMcpRequestRouter(options);
282
+ const jsonRpcVersion = '2.0';
283
+
284
+ let buffer = Buffer.alloc(0);
285
+ let started = false;
286
+ let stopped = false;
287
+
288
+ const writeMessage = (payload) => {
289
+ const text = JSON.stringify(payload);
290
+ const body = Buffer.from(text, 'utf-8');
291
+ const header = Buffer.from(`Content-Length: ${body.length}\r\nContent-Type: application/json\r\n\r\n`, 'utf-8');
292
+ stdout.write(Buffer.concat([header, body]));
293
+ };
294
+
295
+ const writeResponse = (id, result) => {
296
+ writeMessage({
297
+ jsonrpc: jsonRpcVersion,
298
+ id,
299
+ result
300
+ });
301
+ };
302
+
303
+ const writeError = (id, error) => {
304
+ const normalized = error && typeof error === 'object' && Number.isFinite(error.code)
305
+ ? error
306
+ : jsonRpcError(-32000, error && error.message ? error.message : String(error || 'Unknown error'));
307
+ writeMessage({
308
+ jsonrpc: jsonRpcVersion,
309
+ id,
310
+ error: normalized
311
+ });
312
+ };
313
+
314
+ const processMessage = async (rawText) => {
315
+ let message = null;
316
+ try {
317
+ message = JSON.parse(rawText);
318
+ } catch (error) {
319
+ writeError(null, jsonRpcError(-32700, 'Parse error'));
320
+ return;
321
+ }
322
+
323
+ if (!message || typeof message !== 'object') {
324
+ writeError(null, jsonRpcError(-32600, 'Invalid Request'));
325
+ return;
326
+ }
327
+
328
+ if (Array.isArray(message)) {
329
+ writeError(null, jsonRpcError(-32600, 'Batch request is not supported'));
330
+ return;
331
+ }
332
+
333
+ const hasMethod = typeof message.method === 'string' && message.method.trim().length > 0;
334
+ const hasId = Object.prototype.hasOwnProperty.call(message, 'id');
335
+
336
+ if (!hasMethod) {
337
+ if (hasId) {
338
+ writeError(message.id, jsonRpcError(-32600, 'Invalid Request'));
339
+ } else {
340
+ writeError(null, jsonRpcError(-32600, 'Invalid Request'));
341
+ }
342
+ return;
343
+ }
344
+
345
+ try {
346
+ const result = await router.handleRequest(message);
347
+ if (hasId) {
348
+ writeResponse(message.id, result === null ? {} : result);
349
+ }
350
+ } catch (error) {
351
+ if (hasId) {
352
+ writeError(message.id, error);
353
+ } else {
354
+ logger('error', `MCP notification handling failed: ${error && error.message ? error.message : error}`);
355
+ }
356
+ }
357
+ };
358
+
359
+ const parseBuffer = async () => {
360
+ while (buffer.length > 0) {
361
+ const headerEnd = buffer.indexOf('\r\n\r\n');
362
+ if (headerEnd < 0) {
363
+ return;
364
+ }
365
+
366
+ const headerText = buffer.slice(0, headerEnd).toString('utf-8');
367
+ const headers = {};
368
+ for (const line of headerText.split('\r\n')) {
369
+ const idx = line.indexOf(':');
370
+ if (idx <= 0) continue;
371
+ const key = line.slice(0, idx).trim().toLowerCase();
372
+ const value = line.slice(idx + 1).trim();
373
+ headers[key] = value;
374
+ }
375
+
376
+ const length = Number.parseInt(headers['content-length'] || '', 10);
377
+ if (!Number.isFinite(length) || length < 0) {
378
+ buffer = Buffer.alloc(0);
379
+ writeError(null, jsonRpcError(-32600, 'Invalid Content-Length header'));
380
+ return;
381
+ }
382
+
383
+ const bodyOffset = headerEnd + 4;
384
+ const frameLength = bodyOffset + length;
385
+ if (buffer.length < frameLength) {
386
+ return;
387
+ }
388
+
389
+ const body = buffer.slice(bodyOffset, frameLength);
390
+ buffer = buffer.slice(frameLength);
391
+ await processMessage(body.toString('utf-8'));
392
+ }
393
+ };
394
+
395
+ const onData = async (chunk) => {
396
+ if (stopped) return;
397
+ buffer = buffer.length === 0 ? chunk : Buffer.concat([buffer, chunk]);
398
+ try {
399
+ await parseBuffer();
400
+ } catch (error) {
401
+ logger('error', `MCP stdio parse failed: ${error && error.message ? error.message : error}`);
402
+ writeError(null, jsonRpcError(-32000, 'Internal parse failure'));
403
+ }
404
+ };
405
+
406
+ const onError = (error) => {
407
+ logger('error', `MCP stdio stream error: ${error && error.message ? error.message : error}`);
408
+ };
409
+
410
+ const start = () => {
411
+ if (started || stopped) return;
412
+ started = true;
413
+ stdin.on('data', onData);
414
+ stdin.on('error', onError);
415
+ stdout.on('error', onError);
416
+ if (stdin.isTTY) {
417
+ stdin.resume();
418
+ }
419
+ };
420
+
421
+ const stop = () => {
422
+ if (stopped) return;
423
+ stopped = true;
424
+ stdin.removeListener('data', onData);
425
+ stdin.removeListener('error', onError);
426
+ stdout.removeListener('error', onError);
427
+ };
428
+
429
+ return {
430
+ start,
431
+ stop
432
+ };
433
+ }
434
+
435
+ module.exports = {
436
+ DEFAULT_PROTOCOL_VERSION,
437
+ jsonRpcError,
438
+ createMcpRequestRouter,
439
+ createMcpStdioServer
440
+ };