feat: allow disabled_mcps to accept any MCP name (#513)

This commit is contained in:
Sisyphus
2026-01-05 21:12:05 +09:00
committed by GitHub
parent 258463a146
commit 7a10b24bbd
6 changed files with 226 additions and 9 deletions
+4
View File
@@ -3,3 +3,7 @@ import { z } from "zod"
export const McpNameSchema = z.enum(["context7", "grep_app"])
export type McpName = z.infer<typeof McpNameSchema>
export const AnyMcpNameSchema = z.string().min(1)
export type AnyMcpName = z.infer<typeof AnyMcpNameSchema>