fa-mcp-sdk 0.2.27 → 0.2.29
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.
- package/dist/core/web/about-page/css.d.ts.map +1 -1
- package/dist/core/web/about-page/css.js +139 -47
- package/dist/core/web/about-page/css.js.map +1 -1
- package/dist/core/web/about-page/render.d.ts.map +1 -1
- package/dist/core/web/about-page/render.js +70 -0
- package/dist/core/web/about-page/render.js.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"css.d.ts","sourceRoot":"","sources":["../../../../src/core/web/about-page/css.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM,GAAI,cAAc,MAAM,
|
|
1
|
+
{"version":3,"file":"css.d.ts","sourceRoot":"","sources":["../../../../src/core/web/about-page/css.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM,GAAI,cAAc,MAAM,WAonB1C,CAAC"}
|
|
@@ -316,54 +316,7 @@ body {
|
|
|
316
316
|
100% { transform: rotate(360deg); }
|
|
317
317
|
}
|
|
318
318
|
|
|
319
|
-
/* JSON content styles */
|
|
320
|
-
.json-content {
|
|
321
|
-
font-family: var(--font-family-mono);
|
|
322
|
-
font-size: var(--font-size-050);
|
|
323
|
-
line-height: 1.4;
|
|
324
|
-
color: var(--color-neutral-1000);
|
|
325
|
-
white-space: pre-wrap;
|
|
326
|
-
overflow-x: auto;
|
|
327
|
-
max-height: 300px;
|
|
328
|
-
overflow-y: auto;
|
|
329
|
-
margin: 0;
|
|
330
|
-
background: var(--color-neutral-90);
|
|
331
|
-
padding: 16px;
|
|
332
|
-
border-radius: var(--border-radius-100);
|
|
333
|
-
border: 1px solid var(--color-neutral-200);
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
/* Prompt content styles */
|
|
337
|
-
.prompt-content {
|
|
338
|
-
font-family: var(--font-family-mono);
|
|
339
|
-
font-size: var(--font-size-075);
|
|
340
|
-
line-height: 1.5;
|
|
341
|
-
color: var(--color-neutral-1000);
|
|
342
|
-
max-height: 400px;
|
|
343
|
-
overflow-y: auto;
|
|
344
|
-
}
|
|
345
319
|
|
|
346
|
-
.prompt-content pre {
|
|
347
|
-
margin: 0;
|
|
348
|
-
white-space: pre-wrap;
|
|
349
|
-
word-wrap: break-word;
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
/* Resource content styles */
|
|
353
|
-
.resource-content {
|
|
354
|
-
font-family: var(--font-family-mono);
|
|
355
|
-
font-size: var(--font-size-075);
|
|
356
|
-
line-height: 1.5;
|
|
357
|
-
color: var(--color-neutral-1000);
|
|
358
|
-
max-height: 400px;
|
|
359
|
-
overflow-y: auto;
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
.resource-content pre {
|
|
363
|
-
margin: 0;
|
|
364
|
-
white-space: pre-wrap;
|
|
365
|
-
word-wrap: break-word;
|
|
366
|
-
}
|
|
367
320
|
|
|
368
321
|
/* Error message styles */
|
|
369
322
|
.error-message {
|
|
@@ -481,6 +434,128 @@ body {
|
|
|
481
434
|
color: #dddddd;
|
|
482
435
|
}
|
|
483
436
|
|
|
437
|
+
/* Copy Button Styles */
|
|
438
|
+
.copy-button {
|
|
439
|
+
position: absolute;
|
|
440
|
+
top: 8px;
|
|
441
|
+
right: 8px;
|
|
442
|
+
background: var(--color-neutral-90);
|
|
443
|
+
border: 1px solid var(--color-neutral-200);
|
|
444
|
+
border-radius: var(--border-radius-100);
|
|
445
|
+
width: 28px;
|
|
446
|
+
height: 28px;
|
|
447
|
+
display: flex;
|
|
448
|
+
align-items: center;
|
|
449
|
+
justify-content: center;
|
|
450
|
+
cursor: pointer;
|
|
451
|
+
transition: all 0.2s ease;
|
|
452
|
+
color: var(--color-neutral-600);
|
|
453
|
+
font-size: 14px;
|
|
454
|
+
padding: 0;
|
|
455
|
+
z-index: 10;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
.copy-button:hover {
|
|
459
|
+
background: var(--color-neutral-100);
|
|
460
|
+
border-color: var(--color-primary-300);
|
|
461
|
+
color: var(--color-primary-600);
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.copy-button:active {
|
|
465
|
+
transform: scale(0.95);
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
/* Copy Notification */
|
|
469
|
+
.copy-notification {
|
|
470
|
+
position: absolute;
|
|
471
|
+
top: 8px;
|
|
472
|
+
right: 40px;
|
|
473
|
+
background: var(--color-neutral-200);
|
|
474
|
+
color: white;
|
|
475
|
+
padding: 4px 8px;
|
|
476
|
+
border-radius: var(--border-radius-100);
|
|
477
|
+
font-size: 12px;
|
|
478
|
+
font-weight: 500;
|
|
479
|
+
white-space: nowrap;
|
|
480
|
+
opacity: 0;
|
|
481
|
+
transform: translateY(-4px);
|
|
482
|
+
transition: all 0.3s ease;
|
|
483
|
+
z-index: 11;
|
|
484
|
+
pointer-events: none;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
.copy-notification.show {
|
|
488
|
+
opacity: 1;
|
|
489
|
+
transform: translateY(0);
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
/* Content containers with relative positioning for copy button */
|
|
493
|
+
.detail-content {
|
|
494
|
+
position: relative;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.json-content {
|
|
498
|
+
font-family: var(--font-family-mono);
|
|
499
|
+
font-size: var(--font-size-050);
|
|
500
|
+
line-height: 1.4;
|
|
501
|
+
color: var(--color-neutral-1000);
|
|
502
|
+
white-space: pre-wrap;
|
|
503
|
+
overflow-x: auto;
|
|
504
|
+
max-height: 300px;
|
|
505
|
+
overflow-y: auto;
|
|
506
|
+
margin: 0;
|
|
507
|
+
background: var(--color-neutral-90);
|
|
508
|
+
padding: 16px;
|
|
509
|
+
padding-right: 48px; /* Extra space for copy button */
|
|
510
|
+
border-radius: var(--border-radius-100);
|
|
511
|
+
border: 1px solid var(--color-neutral-200);
|
|
512
|
+
position: relative;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
.prompt-content {
|
|
516
|
+
font-family: var(--font-family-mono);
|
|
517
|
+
font-size: var(--font-size-075);
|
|
518
|
+
line-height: 1.5;
|
|
519
|
+
color: var(--color-neutral-1000);
|
|
520
|
+
max-height: 400px;
|
|
521
|
+
overflow-y: auto;
|
|
522
|
+
position: relative;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.prompt-content pre {
|
|
526
|
+
margin: 0;
|
|
527
|
+
white-space: pre-wrap;
|
|
528
|
+
word-wrap: break-word;
|
|
529
|
+
padding: 16px;
|
|
530
|
+
padding-right: 48px; /* Extra space for copy button */
|
|
531
|
+
background: var(--color-neutral-90);
|
|
532
|
+
border-radius: var(--border-radius-100);
|
|
533
|
+
border: 1px solid var(--color-neutral-200);
|
|
534
|
+
position: relative;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.resource-content {
|
|
538
|
+
font-family: var(--font-family-mono);
|
|
539
|
+
font-size: var(--font-size-075);
|
|
540
|
+
line-height: 1.5;
|
|
541
|
+
color: var(--color-neutral-1000);
|
|
542
|
+
max-height: 400px;
|
|
543
|
+
overflow-y: auto;
|
|
544
|
+
position: relative;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.resource-content pre {
|
|
548
|
+
margin: 0;
|
|
549
|
+
white-space: pre-wrap;
|
|
550
|
+
word-wrap: break-word;
|
|
551
|
+
padding: 16px;
|
|
552
|
+
padding-right: 48px; /* Extra space for copy button */
|
|
553
|
+
background: var(--color-neutral-90);
|
|
554
|
+
border-radius: var(--border-radius-100);
|
|
555
|
+
border: 1px solid var(--color-neutral-200);
|
|
556
|
+
position: relative;
|
|
557
|
+
}
|
|
558
|
+
|
|
484
559
|
/* Responsive Design */
|
|
485
560
|
@media (max-width: 640px) {
|
|
486
561
|
body {
|
|
@@ -533,6 +608,23 @@ body {
|
|
|
533
608
|
.value {
|
|
534
609
|
text-align: left;
|
|
535
610
|
}
|
|
611
|
+
|
|
612
|
+
.copy-button {
|
|
613
|
+
width: 24px;
|
|
614
|
+
height: 24px;
|
|
615
|
+
font-size: 12px;
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
.copy-notification {
|
|
619
|
+
font-size: 11px;
|
|
620
|
+
right: 32px;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
.json-content,
|
|
624
|
+
.prompt-content pre,
|
|
625
|
+
.resource-content pre {
|
|
626
|
+
padding-right: 40px;
|
|
627
|
+
}
|
|
536
628
|
}`;
|
|
537
629
|
};
|
|
538
630
|
//# sourceMappingURL=css.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"css.js","sourceRoot":"","sources":["../../../../src/core/web/about-page/css.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC,YAAoB,EAAE,EAAE;IAC7C,OAAO;;;yBAGgB,YAAY,IAAI,SAAS
|
|
1
|
+
{"version":3,"file":"css.js","sourceRoot":"","sources":["../../../../src/core/web/about-page/css.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC,YAAoB,EAAE,EAAE;IAC7C,OAAO;;;yBAGgB,YAAY,IAAI,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+mBhD,CAAC;AACH,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"render.d.ts","sourceRoot":"","sources":["../../../../src/core/web/about-page/render.ts"],"names":[],"mappings":"AAgCA,eAAO,MAAM,eAAe,QAAa,OAAO,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"render.d.ts","sourceRoot":"","sources":["../../../../src/core/web/about-page/render.ts"],"names":[],"mappings":"AAgCA,eAAO,MAAM,eAAe,QAAa,OAAO,CAAC,MAAM,CA6sBtD,CAAC"}
|
|
@@ -452,6 +452,7 @@ export const renderAboutPage = async () => {
|
|
|
452
452
|
loadingSpinner.style.display = 'none';
|
|
453
453
|
jsonContent.style.display = 'block';
|
|
454
454
|
jsonContent.textContent = textContent;
|
|
455
|
+
addCopyButton(jsonContent);
|
|
455
456
|
}, 500);
|
|
456
457
|
} else {
|
|
457
458
|
// Hide the detail row
|
|
@@ -490,6 +491,7 @@ export const renderAboutPage = async () => {
|
|
|
490
491
|
loadingSpinner.style.display = 'none';
|
|
491
492
|
jsonContent.style.display = 'block';
|
|
492
493
|
jsonContent.textContent = textContent;
|
|
494
|
+
addCopyButton(jsonContent);
|
|
493
495
|
}, 300);
|
|
494
496
|
} else {
|
|
495
497
|
// Fetch and show prompt content
|
|
@@ -529,6 +531,7 @@ export const renderAboutPage = async () => {
|
|
|
529
531
|
loadingSpinner.style.display = 'none';
|
|
530
532
|
promptContent.style.display = 'block';
|
|
531
533
|
promptContent.innerHTML = '<pre class="json-content">' + promptText + '</pre>';
|
|
534
|
+
addCopyButton(promptContent.querySelector('.json-content'));
|
|
532
535
|
} catch (error) {
|
|
533
536
|
loadingSpinner.style.display = 'none';
|
|
534
537
|
promptContent.style.display = 'block';
|
|
@@ -573,6 +576,7 @@ export const renderAboutPage = async () => {
|
|
|
573
576
|
loadingSpinner.style.display = 'none';
|
|
574
577
|
jsonContent.style.display = 'block';
|
|
575
578
|
jsonContent.textContent = textContent;
|
|
579
|
+
addCopyButton(jsonContent);
|
|
576
580
|
}, 300);
|
|
577
581
|
} else {
|
|
578
582
|
// Fetch and show resource content
|
|
@@ -613,6 +617,7 @@ export const renderAboutPage = async () => {
|
|
|
613
617
|
loadingSpinner.style.display = 'none';
|
|
614
618
|
resourceContent.style.display = 'block';
|
|
615
619
|
resourceContent.innerHTML = '<pre class="json-content">' + resourceText + '</pre>';
|
|
620
|
+
addCopyButton(resourceContent.querySelector('.json-content'));
|
|
616
621
|
} catch (error) {
|
|
617
622
|
loadingSpinner.style.display = 'none';
|
|
618
623
|
resourceContent.style.display = 'block';
|
|
@@ -653,6 +658,7 @@ export const renderAboutPage = async () => {
|
|
|
653
658
|
loading.style.display = 'none';
|
|
654
659
|
result.style.display = 'block';
|
|
655
660
|
result.textContent = JSON.stringify(data, null, 2);
|
|
661
|
+
addCopyButton(result);
|
|
656
662
|
} catch (err) {
|
|
657
663
|
// Hide loading and show error
|
|
658
664
|
loading.style.display = 'none';
|
|
@@ -661,6 +667,70 @@ export const renderAboutPage = async () => {
|
|
|
661
667
|
}
|
|
662
668
|
}
|
|
663
669
|
|
|
670
|
+
// Copy to clipboard functionality
|
|
671
|
+
function addCopyButton(contentElement) {
|
|
672
|
+
if (!contentElement || contentElement.hasAttribute('data-copy-added')) {
|
|
673
|
+
return;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
contentElement.setAttribute('data-copy-added', 'true');
|
|
677
|
+
|
|
678
|
+
const copyButton = document.createElement('button');
|
|
679
|
+
copyButton.className = 'copy-button';
|
|
680
|
+
copyButton.innerHTML = '📋';
|
|
681
|
+
copyButton.title = 'Copy to clipboard';
|
|
682
|
+
copyButton.setAttribute('aria-label', 'Copy to clipboard');
|
|
683
|
+
|
|
684
|
+
const notification = document.createElement('div');
|
|
685
|
+
notification.className = 'copy-notification';
|
|
686
|
+
notification.textContent = 'Copied';
|
|
687
|
+
|
|
688
|
+
contentElement.appendChild(copyButton);
|
|
689
|
+
contentElement.appendChild(notification);
|
|
690
|
+
|
|
691
|
+
copyButton.addEventListener('click', async function() {
|
|
692
|
+
let textToCopy = contentElement.textContent || contentElement.innerText;
|
|
693
|
+
textToCopy = textToCopy.replace(/📋Copied/, '')
|
|
694
|
+
try {
|
|
695
|
+
await navigator.clipboard.writeText(textToCopy);
|
|
696
|
+
|
|
697
|
+
// Show notification
|
|
698
|
+
notification.classList.add('show');
|
|
699
|
+
|
|
700
|
+
// Hide notification after 1 second
|
|
701
|
+
setTimeout(() => {
|
|
702
|
+
notification.classList.remove('show');
|
|
703
|
+
}, 1000);
|
|
704
|
+
|
|
705
|
+
} catch (err) {
|
|
706
|
+
// Fallback for browsers that don't support clipboard API
|
|
707
|
+
const textArea = document.createElement('textarea');
|
|
708
|
+
textArea.value = textToCopy;
|
|
709
|
+
textArea.style.position = 'fixed';
|
|
710
|
+
textArea.style.opacity = '0';
|
|
711
|
+
document.body.appendChild(textArea);
|
|
712
|
+
textArea.focus();
|
|
713
|
+
textArea.select();
|
|
714
|
+
|
|
715
|
+
try {
|
|
716
|
+
document.execCommand('copy');
|
|
717
|
+
|
|
718
|
+
// Show notification
|
|
719
|
+
notification.classList.add('show');
|
|
720
|
+
|
|
721
|
+
// Hide notification after 1 second
|
|
722
|
+
setTimeout(() => {
|
|
723
|
+
notification.classList.remove('show');
|
|
724
|
+
}, 1000);
|
|
725
|
+
} catch (fallbackErr) {
|
|
726
|
+
console.error('Failed to copy text:', fallbackErr);
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
document.body.removeChild(textArea);
|
|
730
|
+
}
|
|
731
|
+
});
|
|
732
|
+
}
|
|
733
|
+
|
|
664
734
|
// Close modal when clicking outside
|
|
665
735
|
document.addEventListener('click', function(event) {
|
|
666
736
|
if (event.target.classList.contains('modal-overlay')) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"render.js","sourceRoot":"","sources":["../../../../src/core/web/about-page/render.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"render.js","sourceRoot":"","sources":["../../../../src/core/web/about-page/render.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fa-mcp-sdk",
|
|
3
3
|
"productName": "FA MCP SDK",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.29",
|
|
5
5
|
"description": "Core infrastructure and templates for building Model Context Protocol (MCP) servers with TypeScript",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/core/index.js",
|