🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@ai-sdk/mcp

Package Overview
Dependencies
Maintainers
3
Versions
240
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ai-sdk/mcp - npm Package Compare versions

Comparing version
2.0.14
to
2.0.15
+8
-0
CHANGELOG.md
# @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<{

{
"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