hotfix: use McpName from config schema instead of duplicate type definition

This commit is contained in:
YeonGyu-Kim
2025-12-05 03:56:14 +09:00
parent a1a2d2fdb3
commit 0a82787614

View File

@@ -1,7 +1,8 @@
import type { McpName } from "../config"
import { websearch_exa } from "./websearch-exa"
import { context7 } from "./context7"
export type McpName = "websearch_exa" | "context7"
export type { McpName }
const allBuiltinMcps: Record<McpName, { type: "remote"; url: string; enabled: boolean }> = {
websearch_exa,