Skip to content

Commit dd9502e

Browse files
Merge pull request #151 from anthropics/fix/backport-privacy-policices-0_1
fix: remove _meta from 0.1
2 parents dc7e151 + 349b0ce commit dd9502e

File tree

4 files changed

+1
-10
lines changed

4 files changed

+1
-10
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@anthropic-ai/mcpb",
33
"description": "Tools for building MCP Bundles",
4-
"version": "2.0.1",
4+
"version": "2.0.2",
55
"type": "module",
66
"main": "dist/index.js",
77
"module": "dist/index.js",

schemas/mcpb-manifest-v0.1.schema.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -306,13 +306,6 @@
306306
],
307307
"additionalProperties": false
308308
}
309-
},
310-
"_meta": {
311-
"type": "object",
312-
"additionalProperties": {
313-
"type": "object",
314-
"additionalProperties": {}
315-
}
316309
}
317310
},
318311
"required": [

src/schemas/0.1.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ export const McpbManifestSchema = z
102102
user_config: z
103103
.record(z.string(), McpbUserConfigurationOptionSchema)
104104
.optional(),
105-
_meta: z.record(z.string(), z.record(z.string(), z.any())).optional(),
106105
})
107106
.refine((data) => !!(data.dxt_version || data.manifest_version), {
108107
message:

src/schemas_loose/0.1.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ export const McpbManifestSchema = z
104104
user_config: z
105105
.record(z.string(), McpbUserConfigurationOptionSchema)
106106
.optional(),
107-
_meta: z.record(z.string(), z.record(z.string(), z.any())).optional(),
108107
})
109108
.refine((data) => !!(data.dxt_version || data.manifest_version), {
110109
message:

0 commit comments

Comments
 (0)