integrate MCP UI (#2948)

Co-authored-by: Michael Neale <michael.neale@gmail.com>
This commit is contained in:
Andrew Harvard
2025-08-01 08:09:06 -04:00
committed by GitHub
parent b4ab774329
commit 900698777b
9 changed files with 256 additions and 62 deletions
+5 -5
View File
@@ -1,12 +1,12 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline'; img-src 'self' data: https:; connect-src 'self' http://127.0.0.1:* https:; object-src 'none'; frame-src 'none'; font-src 'self' data: https:; media-src 'self' mediastream:; form-action 'none'; base-uri 'self'; manifest-src 'self'; worker-src 'self';" />
<meta charset="UTF-8"/>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline'; img-src 'self' data: https:; connect-src 'self' http://127.0.0.1:* https:; object-src 'none'; font-src 'self' data: https:; media-src 'self' mediastream:; form-action 'none'; base-uri 'self'; manifest-src 'self'; worker-src 'self'; frame-src 'self' https: http:;"/>
<title>Goose</title>
<script>
// Initialize theme before any content loads
(function() {
(function () {
function initializeTheme() {
try {
if (window.localStorage) {
@@ -46,10 +46,10 @@
}
})();
</script>
<link href="./src/styles/main.css" rel="stylesheet" />
<link href="./src/styles/main.css" rel="stylesheet"/>
</head>
<body>
<div id="root"></div>
<script type="module" src="./src/renderer.tsx"></script>
</body>
</html>
</html>