mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-06-06 19:35:44 +02:00
8 lines
No EOL
162 B
TypeScript
8 lines
No EOL
162 B
TypeScript
import z from "zod";
|
|
|
|
export const McpServerConfig = z.object({
|
|
mcpServers: z.array(z.object({
|
|
name: z.string(),
|
|
url: z.string(),
|
|
})),
|
|
}); |