@ai-sdk/mcp
Advanced tools
+8
-0
| # @ai-sdk/mcp | ||
| ## 2.0.15 | ||
| ### Patch Changes | ||
| - d84ea43: fix(mcp): accept OAuth metadata without code challenge methods | ||
| - Updated dependencies [cd06458] | ||
| - @ai-sdk/provider-utils@5.0.11 | ||
| ## 2.0.14 | ||
@@ -4,0 +12,0 @@ |
+2
-2
@@ -92,3 +92,3 @@ import { z } from 'zod/v4'; | ||
| grant_types_supported: z.ZodOptional<z.ZodArray<z.ZodString>>; | ||
| code_challenge_methods_supported: z.ZodArray<z.ZodString>; | ||
| code_challenge_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString>>; | ||
| token_endpoint_auth_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString>>; | ||
@@ -116,3 +116,3 @@ token_endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodArray<z.ZodString>>; | ||
| token_endpoint_auth_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString>>; | ||
| code_challenge_methods_supported: z.ZodArray<z.ZodString>; | ||
| code_challenge_methods_supported: z.ZodOptional<z.ZodArray<z.ZodString>>; | ||
| }, z.core.$loose>; | ||
@@ -119,0 +119,0 @@ declare const OAuthClientInformationSchema: z.ZodObject<{ |
+2
-2
| { | ||
| "name": "@ai-sdk/mcp", | ||
| "version": "2.0.14", | ||
| "version": "2.0.15", | ||
| "type": "module", | ||
@@ -36,3 +36,3 @@ "license": "Apache-2.0", | ||
| "@ai-sdk/provider": "4.0.3", | ||
| "@ai-sdk/provider-utils": "5.0.10" | ||
| "@ai-sdk/provider-utils": "5.0.11" | ||
| }, | ||
@@ -39,0 +39,0 @@ "devDependencies": { |
@@ -72,3 +72,3 @@ import { z } from 'zod/v4'; | ||
| grant_types_supported: z.array(z.string()).optional(), | ||
| code_challenge_methods_supported: z.array(z.string()), | ||
| code_challenge_methods_supported: z.array(z.string()).optional(), | ||
| token_endpoint_auth_methods_supported: z.array(z.string()).optional(), | ||
@@ -75,0 +75,0 @@ token_endpoint_auth_signing_alg_values_supported: z |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
AI-detected potential code anomaly
Supply chain riskAI has identified unusual behaviors that may pose a security risk.
AI-detected potential code anomaly
Supply chain riskAI has identified unusual behaviors that may pose a security risk.
561198
0.04%+ Added
- Removed