feat(mcp): register ast-grep as built-in MCP

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-05-18 21:19:24 +09:00
parent 499aff011a
commit ef09880e26
9 changed files with 273 additions and 22 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
import { z } from "zod"
export const McpNameSchema = z.enum(["websearch", "context7", "grep_app", "lsp"])
export const McpNameSchema = z.enum(["websearch", "context7", "grep_app", "lsp", "ast_grep"])
export type McpName = z.infer<typeof McpNameSchema>