@toolsdk.ai/registry 1.0.16 → 1.0.17
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/config/verified.mjs +1 -0
- package/package.json +1 -1
- package/types.ts +2 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default [];
|
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -22,6 +22,8 @@ export const MCPServerPackageConfigSchema = z.object({
|
|
|
22
22
|
url: z.string().optional(),
|
|
23
23
|
runtime: z.enum(['node', 'python', 'java']),
|
|
24
24
|
license: z.string().optional(),
|
|
25
|
+
logo: z.string().optional().describe('URL to custom logo image, if undefined and the URL is Github, then it will use the Github logo'),
|
|
26
|
+
author: z.string().optional(),
|
|
25
27
|
env: z
|
|
26
28
|
.record(
|
|
27
29
|
z.object({
|