@smithery/sdk 0.0.7 → 0.0.8

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.
@@ -63,7 +63,7 @@ export declare const RegistryServerSchema: z.ZodObject<{
63
63
  name: z.ZodString;
64
64
  verified: z.ZodOptional<z.ZodBoolean>;
65
65
  description: z.ZodOptional<z.ZodString>;
66
- vendor: z.ZodString;
66
+ vendor: z.ZodOptional<z.ZodString>;
67
67
  sourceUrl: z.ZodString;
68
68
  license: z.ZodOptional<z.ZodString>;
69
69
  homepage: z.ZodString;
@@ -109,7 +109,6 @@ export declare const RegistryServerSchema: z.ZodObject<{
109
109
  }, "strip", z.ZodTypeAny, {
110
110
  name: string;
111
111
  id: string;
112
- vendor: string;
113
112
  sourceUrl: string;
114
113
  homepage: string;
115
114
  connections: ({
@@ -125,11 +124,11 @@ export declare const RegistryServerSchema: z.ZodObject<{
125
124
  }))[];
126
125
  description?: string | undefined;
127
126
  verified?: boolean | undefined;
127
+ vendor?: string | undefined;
128
128
  license?: string | undefined;
129
129
  }, {
130
130
  name: string;
131
131
  id: string;
132
- vendor: string;
133
132
  sourceUrl: string;
134
133
  homepage: string;
135
134
  connections: ({
@@ -145,6 +144,7 @@ export declare const RegistryServerSchema: z.ZodObject<{
145
144
  }))[];
146
145
  description?: string | undefined;
147
146
  verified?: boolean | undefined;
147
+ vendor?: string | undefined;
148
148
  license?: string | undefined;
149
149
  }>;
150
150
  export type RegistryServer = z.infer<typeof RegistryServerSchema>;
@@ -49,7 +49,7 @@ export const RegistryServerSchema = z.object({
49
49
  .string()
50
50
  .optional()
51
51
  .describe("A concise description of the MCP server for end-users."),
52
- vendor: z.string().describe("The name of the author of the MCP."),
52
+ vendor: z.string().describe("The name of the author of the MCP.").optional(),
53
53
  sourceUrl: z
54
54
  .string()
55
55
  .describe("A URL to the official page of the MCP repository."),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithery/sdk",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "Connect language models to Model Context Protocols",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",