From 0a82787614f2136f6bb5d7a37ba034a4d1365d04 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Fri, 5 Dec 2025 03:56:14 +0900 Subject: [PATCH] hotfix: use McpName from config schema instead of duplicate type definition --- src/mcp/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mcp/index.ts b/src/mcp/index.ts index 951e6b9..49be11b 100644 --- a/src/mcp/index.ts +++ b/src/mcp/index.ts @@ -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 = { websearch_exa,