@toolsdk.ai/registry 1.0.56 → 1.0.57

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/schema.d.ts CHANGED
@@ -25,6 +25,7 @@ export declare const MCPServerPackageConfigSchema: z.ZodObject<{
25
25
  key: z.ZodOptional<z.ZodString>;
26
26
  name: z.ZodOptional<z.ZodString>;
27
27
  description: z.ZodOptional<z.ZodString>;
28
+ readme: z.ZodOptional<z.ZodString>;
28
29
  url: z.ZodOptional<z.ZodString>;
29
30
  license: z.ZodOptional<z.ZodString>;
30
31
  logo: z.ZodOptional<z.ZodString>;
@@ -49,6 +50,7 @@ export declare const MCPServerPackageConfigSchema: z.ZodObject<{
49
50
  packageVersion?: string | undefined;
50
51
  bin?: string | undefined;
51
52
  binArgs?: string[] | undefined;
53
+ readme?: string | undefined;
52
54
  url?: string | undefined;
53
55
  license?: string | undefined;
54
56
  logo?: string | undefined;
@@ -67,6 +69,7 @@ export declare const MCPServerPackageConfigSchema: z.ZodObject<{
67
69
  packageVersion?: string | undefined;
68
70
  bin?: string | undefined;
69
71
  binArgs?: string[] | undefined;
72
+ readme?: string | undefined;
70
73
  url?: string | undefined;
71
74
  license?: string | undefined;
72
75
  logo?: string | undefined;
@@ -86,6 +89,7 @@ export declare const PackageConfigSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
86
89
  key: z.ZodOptional<z.ZodString>;
87
90
  name: z.ZodOptional<z.ZodString>;
88
91
  description: z.ZodOptional<z.ZodString>;
92
+ readme: z.ZodOptional<z.ZodString>;
89
93
  url: z.ZodOptional<z.ZodString>;
90
94
  license: z.ZodOptional<z.ZodString>;
91
95
  logo: z.ZodOptional<z.ZodString>;
@@ -110,6 +114,7 @@ export declare const PackageConfigSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
110
114
  packageVersion?: string | undefined;
111
115
  bin?: string | undefined;
112
116
  binArgs?: string[] | undefined;
117
+ readme?: string | undefined;
113
118
  url?: string | undefined;
114
119
  license?: string | undefined;
115
120
  logo?: string | undefined;
@@ -128,6 +133,7 @@ export declare const PackageConfigSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
128
133
  packageVersion?: string | undefined;
129
134
  bin?: string | undefined;
130
135
  binArgs?: string[] | undefined;
136
+ readme?: string | undefined;
131
137
  url?: string | undefined;
132
138
  license?: string | undefined;
133
139
  logo?: string | undefined;
package/dist/schema.js CHANGED
@@ -21,6 +21,7 @@ exports.MCPServerPackageConfigSchema = zod_1.z.object({
21
21
  key: zod_1.z.string().optional().describe('Unique key for url and slug'),
22
22
  name: zod_1.z.string().optional().describe('Custom name for display, if empty then it will use the package name'),
23
23
  description: zod_1.z.string().optional(),
24
+ readme: zod_1.z.string().optional().describe('URL to the README file, if not provided then it will use the package URL'),
24
25
  url: zod_1.z.string().optional(),
25
26
  license: zod_1.z.string().optional().describe('Open source license lie MIT, AGPL, GPL, etc'),
26
27
  logo: zod_1.z.string().optional().describe('URL to custom logo image, if undefined and the URL is Github, then it will use the Github logo'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toolsdk.ai/registry",
3
- "version": "1.0.56",
3
+ "version": "1.0.57",
4
4
  "description": "An Open, Structured, and Standard Registry for MCP Servers and Packages.",
5
5
  "exports": {
6
6
  "./config/*": "./config/*",