ef09880e26
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
10 lines
282 B
TypeScript
10 lines
282 B
TypeScript
import { z } from "zod"
|
|
|
|
export const McpNameSchema = z.enum(["websearch", "context7", "grep_app", "lsp", "ast_grep"])
|
|
|
|
export type McpName = z.infer<typeof McpNameSchema>
|
|
|
|
export const AnyMcpNameSchema = z.string().min(1)
|
|
|
|
export type AnyMcpName = z.infer<typeof AnyMcpNameSchema>
|