-
Notifications
You must be signed in to change notification settings - Fork 441
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adopting Standard Schema #164
Comments
Really want to see this. |
I'd like to go through this codebase and do a few things:
This will enable developers to use their runtime type libraries of choice / help with consistency in projects that do not use zod. If there's sufficient interest in this solution, let me know and I'll submit a PR :) @jspahrsummers would this be acceptable? |
I'd love to see this implemented; adopting standard-schema designed by the creators of Zod, Valibot, and ArkType will enable this sdk to interoperate with any codebase. I understand that there is another important issue ejecting from zod that is There is no good solution right now from standard-schema to support Edit: just realized you authored standard-json-schema ^_^. Looks promising with the peer-dependency approach i would install sdk(including std schema and your lib)+valibot@peer + @valibot/to-json-schema@peer |
Sure, this seems useful. Happy to review a PR here. |
Awesome! Just opened a draft PR. Still some quirks to iron out. Looking forward to hearing your thoughts. |
Not sure if this is the right place. I'm new to the MCP and started to work with the TS sdk. And like OP I was kinda irked by the tightly coupling of Zod. Would the solution being advertise allow me to use AJV? We have so many projects with this library and code gen tools utilizing JSON Schemas. |
Is your feature request related to a problem? Please describe.
This SDK seems quite coupled to zod. The creator of zod as well as the creators of other popular virtual TS type libs partnered to define the Standard Schema Spec. Given that a lot of these virtual type libs enable JSON schema generation, I see no reason for this SDK to be coupled to zod directly.
Describe the solution you'd like
Let's consider the
tool
method signature:This could instead be declared as the following:
^ This isn't exactly what it would need to be, as different virtual type libraries are converted to JSON in different ways... but it's the gist. The real implementation would likely involve a wrapper function and type, similar to Hono's standard validator. Ie. users would wrap their virtual type with an adapter that simply calls whatever JSON-producing method of the virtual type (in this case, an arktype.
Describe alternatives you've considered
Virtual type libraries are a critical utility for ensuring a single source of truth. But Zod is not necessarily the best choice depending on use case / preferences. I personally prefer arktype, which is more versatile for modeling nested types, custom scopes and type-safe cycles.
Additional context
^ All of these implement standard schema and can have their static types extracted via
T["~standard"]
, whereT
is any virtual type.The text was updated successfully, but these errors were encountered: