From a5c71473a5132728430a33c6bb80f2819314aba6 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Mon, 5 Jan 2026 20:09:09 +0900 Subject: [PATCH] refactor(mcp): remove websearch_exa as built-in MCP server MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 GENERATED WITH ASSISTANCE OF [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode) --- src/mcp/index.ts | 2 -- src/mcp/types.ts | 2 +- src/mcp/websearch-exa.ts | 5 ----- 3 files changed, 1 insertion(+), 8 deletions(-) delete mode 100644 src/mcp/websearch-exa.ts diff --git a/src/mcp/index.ts b/src/mcp/index.ts index 7a38ca3..c0fefd6 100644 --- a/src/mcp/index.ts +++ b/src/mcp/index.ts @@ -1,4 +1,3 @@ -import { websearch_exa } from "./websearch-exa" import { context7 } from "./context7" import { grep_app } from "./grep-app" import type { McpName } from "./types" @@ -6,7 +5,6 @@ import type { McpName } from "./types" export { McpNameSchema, type McpName } from "./types" const allBuiltinMcps: Record = { - websearch_exa, context7, grep_app, } diff --git a/src/mcp/types.ts b/src/mcp/types.ts index 4139ab2..cbfc448 100644 --- a/src/mcp/types.ts +++ b/src/mcp/types.ts @@ -1,5 +1,5 @@ import { z } from "zod" -export const McpNameSchema = z.enum(["websearch_exa", "context7", "grep_app"]) +export const McpNameSchema = z.enum(["context7", "grep_app"]) export type McpName = z.infer diff --git a/src/mcp/websearch-exa.ts b/src/mcp/websearch-exa.ts deleted file mode 100644 index cd55265..0000000 --- a/src/mcp/websearch-exa.ts +++ /dev/null @@ -1,5 +0,0 @@ -export const websearch_exa = { - type: "remote" as const, - url: "https://mcp.exa.ai/mcp?tools=web_search_exa", - enabled: true, -}