Skip to content

Commit c84aa4b

Browse files
fix: make mcp_config required for all server types in v0.4 schema
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 3635e20 commit c84aa4b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/schemas/0.4.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ export const McpbManifestMcpConfigSchema = McpServerConfigSchema.extend({
3737
export const McpbManifestServerSchema = z.strictObject({
3838
type: z.enum(["python", "node", "binary", "uv"]),
3939
entry_point: z.string(),
40-
// mcp_config is optional for UV type (UV handles execution)
41-
mcp_config: McpbManifestMcpConfigSchema.optional(),
40+
mcp_config: McpbManifestMcpConfigSchema,
4241
});
4342

4443
export const McpbManifestCompatibilitySchema = z.strictObject({

0 commit comments

Comments
 (0)