feat(mcp): register lsp tier-1 stdio MCP server

This commit is contained in:
YeonGyu-Kim
2026-05-18 12:11:21 +09:00
parent d95a45c872
commit c2c078fec3
5 changed files with 71 additions and 8 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
import { z } from "zod"
export const McpNameSchema = z.enum(["websearch", "context7", "grep_app"])
export const McpNameSchema = z.enum(["websearch", "context7", "grep_app", "lsp"])
export type McpName = z.infer<typeof McpNameSchema>