feat: oauth2.1 mcp integration

This commit is contained in:
Timothy Jaeryang Baek
2025-09-25 01:49:16 -05:00
parent 972be4eda5
commit 77e971dd9f
10 changed files with 248 additions and 53 deletions

View File

@@ -1,5 +1,15 @@
<script lang="ts">
import { onMount } from 'svelte';
import { toast } from 'svelte-sonner';
import Chat from '$lib/components/chat/Chat.svelte';
import { page } from '$app/stores';
onMount(() => {
if ($page.url.searchParams.get('error')) {
toast.error($page.url.searchParams.get('error') || 'An unknown error occurred.');
}
});
</script>
<Chat />