Skip to content

Conversation

@mgyarmathy
Copy link
Contributor

This PR adds the transitive @types/express-serve-static-core dependency as a direct devDependency to fix builds via strict package managers like pnpm. This is necessary because types from express-serve-static-core are currently referenced directly in https://github.com/modelcontextprotocol/typescript-sdk/blob/main/src/server/auth/middleware/bearerAuth.ts#L23-L30

Motivation and Context

Fixes #572

How Has This Been Tested?

  • pnpm install + pnpm build on a fresh clone of this branch now succeeds
  • rm -rf node_modules/ && pnpm i && pnpm build also succeeds
  • Testing for regressions -- rm -rf node_modules/ && npm i && npm run build also succeeds.

Breaking Changes

n/a

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)
  • Documentation update

Checklist

  • I have read the MCP Documentation
  • My code follows the repository's style guidelines
  • New and existing tests pass locally
  • I have added appropriate error handling
  • I have added or updated documentation as needed

Additional context

@mgyarmathy mgyarmathy requested a review from a team as a code owner November 3, 2025 22:59
@mgyarmathy mgyarmathy force-pushed the 752-pnpm-fails-to-build branch from d6140d7 to 133fceb Compare November 3, 2025 23:01
@mgyarmathy mgyarmathy changed the title Fix builds via pnpm fix: builds via pnpm Nov 3, 2025
@mgyarmathy mgyarmathy force-pushed the 752-pnpm-fails-to-build branch from 133fceb to c00f0b9 Compare November 12, 2025 17:47
@pkg-pr-new
Copy link

pkg-pr-new bot commented Nov 12, 2025

Open in StackBlitz

npm i https://pkg.pr.new/modelcontextprotocol/typescript-sdk/@modelcontextprotocol/sdk@1078

commit: 83cfb46

@KKonstantinov
Copy link
Contributor

Hello,

Could you please provide the error that you have from pnpm, as well as your pnpm config?

Going forward, if @types/express-serve-static-core is added as a devDependency, should its types not be removed from https://github.com/modelcontextprotocol/typescript-sdk/blob/main/src/server/auth/middleware/bearerAuth.ts#L23-L30 ?

@mgyarmathy mgyarmathy force-pushed the 752-pnpm-fails-to-build branch from c00f0b9 to fa497aa Compare November 17, 2025 15:01
@mgyarmathy
Copy link
Contributor Author

mgyarmathy commented Nov 17, 2025

Hello,

Could you please provide the error that you have from pnpm, as well as your pnpm config?

Going forward, if @types/express-serve-static-core is added as a devDependency, should its types not be removed from https://github.com/modelcontextprotocol/typescript-sdk/blob/main/src/server/auth/middleware/bearerAuth.ts#L23-L30 ?

Hey @KKonstantinov -- here's the current build error when running pnpm install && pnpm build (pnpm default config) on this project with the latest commit on main:

$ pnpm build

> @modelcontextprotocol/[email protected] build /Users/mgyarmathy/Code/mgyarmathy/modelcontextprotocol--typescript-sdk
> npm run build:esm && npm run build:cjs


> @modelcontextprotocol/[email protected] build:esm
> mkdir -p dist/esm && echo '{"type": "module"}' > dist/esm/package.json && tsc -p tsconfig.prod.json

src/examples/server/simpleStreamableHttp.ts:539:25 - error TS2339: Property 'auth' does not exist on type 'Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>'.

539     if (useOAuth && req.auth) {
                            ~~~~

src/examples/server/simpleStreamableHttp.ts:540:48 - error TS2339: Property 'auth' does not exist on type 'Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>'.

540         console.log('Authenticated user:', req.auth);
                                                   ~~~~

src/examples/server/simpleStreamableHttp.ts:623:25 - error TS2339: Property 'auth' does not exist on type 'Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>'.

623     if (useOAuth && req.auth) {
                            ~~~~

src/examples/server/simpleStreamableHttp.ts:624:68 - error TS2339: Property 'auth' does not exist on type 'Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>'.

624         console.log('Authenticated SSE connection from user:', req.auth);
                                                                       ~~~~

src/server/auth/handlers/revoke.ts:59:32 - error TS2339: Property 'client' does not exist on type 'Request<{}, any, any, ParsedQs, Record<string, any>>'.

59             const client = req.client;
                                  ~~~~~~

src/server/auth/handlers/token.ts:82:32 - error TS2339: Property 'client' does not exist on type 'Request<{}, any, any, ParsedQs, Record<string, any>>'.

82             const client = req.client;
                                  ~~~~~~

src/server/auth/middleware/bearerAuth.ts:23:16 - error TS2664: Invalid module name in augmentation, module 'express-serve-static-core' cannot be found.

23 declare module 'express-serve-static-core' {
                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~

src/server/auth/middleware/bearerAuth.ts:71:17 - error TS2339: Property 'auth' does not exist on type 'Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>'.

71             req.auth = authInfo;
                   ~~~~

src/server/auth/middleware/clientAuth.ts:19:16 - error TS2664: Invalid module name in augmentation, module 'express-serve-static-core' cannot be found.

19 declare module 'express-serve-static-core' {
                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~

src/server/auth/middleware/clientAuth.ts:60:17 - error TS2339: Property 'client' does not exist on type 'Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>'.

60             req.client = client;
                   ~~~~~~


Found 10 errors in 5 files.

Errors  Files
     4  src/examples/server/simpleStreamableHttp.ts:539
     1  src/server/auth/handlers/revoke.ts:59
     1  src/server/auth/handlers/token.ts:82
     2  src/server/auth/middleware/bearerAuth.ts:23
     2  src/server/auth/middleware/clientAuth.ts:19
 ELIFECYCLE  Command failed with exit code 2.

tl;dr; here is that pnpm and other strict package managers don't allow imports to transitive dependencies, so we solve that here by adding hoisting the @types/express-serve-static-core module that's referenced in bearerAuth.ts into the package.json.

@mgyarmathy mgyarmathy force-pushed the 752-pnpm-fails-to-build branch from fa497aa to 1207d30 Compare November 17, 2025 19:15
@mgyarmathy mgyarmathy force-pushed the 752-pnpm-fails-to-build branch from 1207d30 to 83cfb46 Compare November 21, 2025 19:27
@mattzcarey
Copy link
Contributor

mattzcarey commented Nov 28, 2025

I'm not sure we should be adding additional dependencies to satisfy a package manager we dont use in this repo. We should do this only if there is a strict mode with npm we can enable which requires this.

@mgyarmathy
Copy link
Contributor Author

I'm not sure we should be adding additional dependencies to satisfy a package manager we dont use in this repo. We should do this only if there is a strict mode with npm we can enable which requires this.

@mattzcarey Fair point about pnpm not being used in the repo. I agree with you.

Counterpoint is that we do have a true dependency on @types/express-serve-static-core in bearerAuth.ts#L23-L30 -- it just so happens that it's pulled in as a transitive dependency today through @types/express, which is referenced as a devDependency. npm allows it, but strict package managers like pnpm will flag you for it.

I'd love to help close out some open issues in this repo. I picked up #572 because @felixweinberger marked as PR Welcome.

We can either a) merge this PR to resolve the issue, or b) respond to the original issue to let the author know we're not going to address it.

@mattzcarey mattzcarey changed the title fix: builds via pnpm adds the transitive @types/express-serve-static-core dependency as a direct devDependency Dec 1, 2025
Copy link
Contributor

@mattzcarey mattzcarey left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for this!

@mattzcarey mattzcarey enabled auto-merge (squash) December 1, 2025 11:46
@mattzcarey mattzcarey merged commit ae0eaf4 into modelcontextprotocol:main Dec 1, 2025
5 checks passed
@mgyarmathy mgyarmathy deleted the 752-pnpm-fails-to-build branch December 1, 2025 16:47
MightyPrytanis added a commit to MightyPrytanis/codebase that referenced this pull request Jan 3, 2026
![snyk-top-banner](https://res.cloudinary.com/snyk/image/upload/r-d/scm-platform/snyk-pull-requests/pr-banner-default.svg)


<h3>Snyk has created this PR to upgrade @modelcontextprotocol/sdk from
1.24.0 to 1.24.3.</h3>

:information_source: Keep your dependencies up-to-date. This makes it
easier to fix existing vulnerabilities and to more quickly identify and
fix newly disclosed vulnerabilities when they affect your project.

<hr/>


- The recommended version is **3 versions** ahead of your current
version.

- The recommended version was released **a month ago**.



<details>
<summary><b>Release notes</b></summary>
<br/>
  <details>
    <summary>Package name: <b>@modelcontextprotocol/sdk</b></summary>
    <ul>
      <li>
<b>1.24.3</b> - <a
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/releases/tag/1.24.3">2025-12-04</a></br><h2>What's
Changed</h2>
<ul>
<li>chore: fix dev dependency security vulnerabilities by <a
class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/felixweinberger/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/felixweinberger">@ felixweinberger</a>
in <a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="3691198208" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1227"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1227/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1227">#1227</a></li>
<li>chore(deps): bump express from 5.0.1 to 5.2.1 in the npm_and_yarn
group across 1 directory by <a class="user-mention notranslate"
data-hovercard-type="organization"
data-hovercard-url="/orgs/dependabot/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/dependabot">@ dependabot</a>[bot] in
<a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="3691221872" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1228"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1228/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1228">#1228</a></li>
<li>fix: release HTTP connections after POST responses by <a
class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/mattzcarey/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/mattzcarey">@ mattzcarey</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3685626979" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1214"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1214/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1214">#1214</a></li>
<li>fix: skip priming events and closeSSEStream for old protocol
versions by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/felixweinberger/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/felixweinberger">@ felixweinberger</a>
in <a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="3694335007" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1233"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1233/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1233">#1233</a></li>
<li>chore: bump version for patch release by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/felixweinberger/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/felixweinberger">@ felixweinberger</a>
in <a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="3694887719" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1235"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1235/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1235">#1235</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a class="commit-link"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/compare/1.24.2...1.24.3"><tt>1.24.2...1.24.3</tt></a></p>
      </li>
      <li>
<b>1.24.2</b> - <a
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/releases/tag/1.24.2">2025-12-03</a></br><h2>What's
Changed</h2>
<ul>
<li>feat: add optional resource annotations by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/vhorvath2010/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/vhorvath2010">@ vhorvath2010</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3436712736" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#954"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/954/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/954">#954</a></li>
<li>chore: refresh CLAUDE.md by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/LucaButBoring/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/LucaButBoring">@ LucaButBoring</a> in
<a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="3686867636" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1217"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1217/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1217">#1217</a></li>
<li>refactor: make Server class framework-agnostic by moving express to
separate module by <a class="user-mention notranslate"
data-hovercard-type="user" data-hovercard-url="/users/cytle/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/cytle">@ cytle</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3689485567" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1223"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1223/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1223">#1223</a></li>
<li>chore: bump version to 1.24.2 by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/pcarleton/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/pcarleton">@ pcarleton</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3689937597" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1224"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1224/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1224">#1224</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/vhorvath2010/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/vhorvath2010">@ vhorvath2010</a> made
their first contribution in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="3436712736"
data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#954"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/954/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/954">#954</a></li>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/cytle/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/cytle">@ cytle</a> made their first
contribution in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="3689485567"
data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1223"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1223/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1223">#1223</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a class="commit-link"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/compare/1.24.1...1.24.2"><tt>1.24.1...1.24.2</tt></a></p>
      </li>
      <li>
<b>1.24.1</b> - <a
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/releases/tag/1.24.1">2025-12-02</a></br><h2>What's
Changed</h2>
<ul>
<li>fix(streamableHttp): fix infinite retries when maxRetries is set to
0 by <a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/mrorigo/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/mrorigo">@ mrorigo</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3686035318" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1216"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1216/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1216">#1216</a></li>
<li>chore: update protocol version to 2025-11-25 by <a
class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/dsp-ant/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/dsp-ant">@ dsp-ant</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3687018759" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1218"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1218/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1218">#1218</a></li>
<li>chore: bump version for release by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/felixweinberger/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/felixweinberger">@ felixweinberger</a>
in <a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="3687067916" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1219"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1219/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1219">#1219</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/mrorigo/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/mrorigo">@ mrorigo</a> made their
first contribution in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="3686035318"
data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1216"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1216/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1216">#1216</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a class="commit-link"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/compare/1.24.0...1.24.1"><tt>1.24.0...1.24.1</tt></a></p>
      </li>
      <li>
<b>1.24.0</b> - <a
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/releases/tag/1.24.0">2025-12-02</a></br><h2>Summary</h2>
<p>This release brings us up to speed with the latest MCP spec
<code>2025-11-25</code>. Take a look at the <a
href="https://modelcontextprotocol.io/specification/2025-11-25"
rel="nofollow">latest spec</a> as well as the release <a
href="https://blog.modelcontextprotocol.io/posts/2025-11-25-first-mcp-anniversary/"
rel="nofollow">blog post.</a></p>
<h2>What's Changed</h2>
<ul>
<li>fix: update spec links from latest to draft by <a
class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/domdomegg/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/domdomegg">@ domdomegg</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3664829218" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1171"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1171/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1171">#1171</a></li>
<li>Make sure to consume HTTP error response bodies by <a
class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/GreenStage/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/GreenStage">@ GreenStage</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3666874622" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1173"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1173/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1173">#1173</a></li>
<li>docs: add GET request handling for streamableHttp stateless mode by
<a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/saharis9988/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/saharis9988">@ saharis9988</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3660259155" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1161"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1161/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1161">#1161</a></li>
<li>SEP-1686: Tasks by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/LucaButBoring/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/LucaButBoring">@ LucaButBoring</a> in
<a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="3546900542" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1041"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1041/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1041">#1041</a></li>
<li>Fix JSON parse error on SSE events with empty data by <a
class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/felixweinberger/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/felixweinberger">@ felixweinberger</a>
in <a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="3672860656" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1184"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1184/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1184">#1184</a></li>
<li>Fix StreamableHTTPClientTransport instantiation by <a
class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/yuwzho/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/yuwzho">@ yuwzho</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3420595607" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#944"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/944/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/944">#944</a></li>
<li>feat: eslint rule to prefer node protocols by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/mattzcarey/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/mattzcarey">@ mattzcarey</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3674518488" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1187"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1187/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1187">#1187</a></li>
<li>fix: call tasks/result to deliver side-channel messages by <a
class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/felixweinberger/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/felixweinberger">@ felixweinberger</a>
in <a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="3672896336" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1185"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1185/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1185">#1185</a></li>
<li>Add invalid_target oauth error (rfc 8707) by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/GreenStage/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/GreenStage">@ GreenStage</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3672704149" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1183"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1183/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1183">#1183</a></li>
<li>fix(client): use StreamableHTTPError instead of plain Error in
send() by <a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/yamadashy/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/yamadashy">@ yamadashy</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3669612690" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1178"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1178/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1178">#1178</a></li>
<li>coerce 'expires_in' to be a number by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/adam-kuhn/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/adam-kuhn">@ adam-kuhn</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3624481815" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1111"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1111/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1111">#1111</a></li>
<li>Allow HTTP issuer URLs when MCP_DEV_MODE is enabled by <a
class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/jerome3o-anthropic/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/jerome3o-anthropic">@
jerome3o-anthropic</a> in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="3675262314"
data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1189"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1189/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1189">#1189</a></li>
<li>fix: update registerTool signature for proper typed ToolCallback by
<a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/mattzcarey/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/mattzcarey">@ mattzcarey</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3674832778" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1188"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1188/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1188">#1188</a></li>
<li>SEP-1046: Client credentials flow for M2M without user interaction
by <a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/KKonstantinov/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/KKonstantinov">@ KKonstantinov</a> in
<a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="3655110317" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1157"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1157/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1157">#1157</a></li>
<li>adds the transitive @ types/express-serve-static-core dependency as
a direct devDependency by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/mgyarmathy/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/mgyarmathy">@ mgyarmathy</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3584050696" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1078"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1078/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1078">#1078</a></li>
<li>Fix optional argument handling in prompts for Zod V4 by <a
class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/filip-bartuska-ipf/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/filip-bartuska-ipf">@
filip-bartuska-ipf</a> in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="3680574535"
data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1199"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1199/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1199">#1199</a></li>
<li>fix hanging stdio servers by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/mattzcarey/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/mattzcarey">@ mattzcarey</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3680985762" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1200"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1200/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1200">#1200</a></li>
<li>README refactor by <a class="user-mention notranslate"
data-hovercard-type="user"
data-hovercard-url="/users/KKonstantinov/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/KKonstantinov">@ KKonstantinov</a> in
<a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="3679336733" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1197"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1197/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1197">#1197</a></li>
<li>[Docs] Fix typo by <a class="user-mention notranslate"
data-hovercard-type="user" data-hovercard-url="/users/koic/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/koic">@ koic</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3576912671" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1067"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1067/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1067">#1067</a></li>
<li>feat: add closeSSEStream callback to RequestHandlerExtra by <a
class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/felixweinberger/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/felixweinberger">@ felixweinberger</a>
in <a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="3663783141" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1166"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1166/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1166">#1166</a></li>
<li>fix: improve SSE reconnection behavior by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/felixweinberger/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/felixweinberger">@ felixweinberger</a>
in <a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="3675644114" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1191"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1191/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1191">#1191</a></li>
<li>fix: normalize headers in sse transport by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/marcrasi/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/marcrasi">@ marcrasi</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3301818827" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#856"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/856/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/856">#856</a></li>
<li>feat: add closeStandaloneSSEStream for GET stream polling by <a
class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/felixweinberger/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/felixweinberger">@ felixweinberger</a>
in <a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="3681592788" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1203"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1203/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1203">#1203</a></li>
<li>fix: normalize null to undefined in ElicitResultSchema content field
by <a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/mattzcarey/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/mattzcarey">@ mattzcarey</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3681871133" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1204"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1204/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1204">#1204</a></li>
<li>Modify Origin header validation in validateRequestHeaders
(streamableHttp.ts and sse.ts) to allow requests without an Origin, as
they are not relevant to server DNS rebinding protection. by <a
class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/jacopoc/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/jacopoc">@ jacopoc</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3682254908" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1205"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1205/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1205">#1205</a></li>
<li>fix: allow zod 4 transformations by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/mattzcarey/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/mattzcarey">@ mattzcarey</a> in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3685521543" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1213"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1213/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1213">#1213</a></li>
<li>feat: backwards-compatible createMessage overloads for SEP-1577 by
<a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/felixweinberger/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/felixweinberger">@ felixweinberger</a>
in <a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="3685389937" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1212"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1212/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1212">#1212</a></li>
<li>chore: bump version for release by <a class="user-mention
notranslate" data-hovercard-type="user"
data-hovercard-url="/users/felixweinberger/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/felixweinberger">@ felixweinberger</a>
in <a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="3685838812" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1215"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1215/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1215">#1215</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/GreenStage/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/GreenStage">@ GreenStage</a> made
their first contribution in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="3666874622"
data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1173"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1173/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1173">#1173</a></li>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/saharis9988/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/saharis9988">@ saharis9988</a> made
their first contribution in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="3660259155"
data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1161"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1161/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1161">#1161</a></li>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/yuwzho/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/yuwzho">@ yuwzho</a> made their first
contribution in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="3420595607"
data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#944"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/944/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/944">#944</a></li>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/yamadashy/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/yamadashy">@ yamadashy</a> made their
first contribution in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="3669612690"
data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1178"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1178/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1178">#1178</a></li>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/adam-kuhn/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/adam-kuhn">@ adam-kuhn</a> made their
first contribution in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="3624481815"
data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1111"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1111/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1111">#1111</a></li>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/mgyarmathy/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/mgyarmathy">@ mgyarmathy</a> made
their first contribution in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="3584050696"
data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1078"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1078/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1078">#1078</a></li>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/filip-bartuska-ipf/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/filip-bartuska-ipf">@
filip-bartuska-ipf</a> made their first contribution in <a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="3680574535" data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1199"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1199/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1199">#1199</a></li>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/koic/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/koic">@ koic</a> made their first
contribution in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="3576912671"
data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1067"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1067/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1067">#1067</a></li>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/marcrasi/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/marcrasi">@ marcrasi</a> made their
first contribution in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="3301818827"
data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#856"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/856/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/856">#856</a></li>
<li><a class="user-mention notranslate" data-hovercard-type="user"
data-hovercard-url="/users/jacopoc/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://redirect.github.com/jacopoc">@ jacopoc</a> made their
first contribution in <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="3682254908"
data-permission-text="Title is private"
data-url="modelcontextprotocol/typescript-sdk#1205"
data-hovercard-type="pull_request"
data-hovercard-url="/modelcontextprotocol/typescript-sdk/pull/1205/hovercard"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/pull/1205">#1205</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a class="commit-link"
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/compare/1.23.0...1.24.0"><tt>1.23.0...1.24.0</tt></a></p>
      </li>
    </ul>
from <a
href="https://redirect.github.com/modelcontextprotocol/typescript-sdk/releases">@modelcontextprotocol/sdk
GitHub release notes</a>
  </details>
</details>

---

> [!IMPORTANT]
>
> - Check the changes in this PR to ensure they won't cause issues with
your project.
> - This PR was automatically created by Snyk using the credentials of a
real user.

---

**Note:** _You are seeing this because you or someone else with access
to this repository has authorized Snyk to open upgrade PRs._

**For more information:** <img
src="https://api.segment.io/v1/pixel/track?data=eyJ3cml0ZUtleSI6InJyWmxZcEdHY2RyTHZsb0lYd0dUcVg4WkFRTnNCOUEwIiwiYW5vbnltb3VzSWQiOiJhMDljYzIxZS1mZjNiLTQzOTEtOGZlZi04NmE4ODU2MDA2YTgiLCJldmVudCI6IlBSIHZpZXdlZCIsInByb3BlcnRpZXMiOnsicHJJZCI6ImEwOWNjMjFlLWZmM2ItNDM5MS04ZmVmLTg2YTg4NTYwMDZhOCJ9fQ=="
width="0" height="0"/>

> - 🧐 [View latest project
report](https://app.snyk.io/org/mightyprytanis/project/eba72b74-6882-414c-8d80-bbb34df62e40?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)
> - 📜 [Customise PR
templates](https://docs.snyk.io/scan-using-snyk/pull-requests/snyk-fix-pull-or-merge-requests/customize-pr-templates?utm_source=&utm_content=fix-pr-template)
> - 🛠 [Adjust upgrade PR
settings](https://app.snyk.io/org/mightyprytanis/project/eba72b74-6882-414c-8d80-bbb34df62e40/settings/integration?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)
> - 🔕 [Ignore this dependency or unsubscribe from future upgrade
PRs](https://app.snyk.io/org/mightyprytanis/project/eba72b74-6882-414c-8d80-bbb34df62e40/settings/integration?pkg&#x3D;@modelcontextprotocol/sdk&amp;utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr#auto-dep-upgrades)

[//]: #
'snyk:metadata:{"breakingChangeRiskLevel":null,"FF_showPullRequestBreakingChanges":false,"FF_showPullRequestBreakingChangesWebSearch":false,"customTemplate":{"variablesUsed":[],"fieldsUsed":[]},"dependencies":[{"name":"@modelcontextprotocol/sdk","from":"1.24.0","to":"1.24.3"}],"env":"prod","hasFixes":false,"isBreakingChange":false,"isMajorUpgrade":false,"issuesToFix":[],"prId":"a09cc21e-ff3b-4391-8fef-86a8856006a8","prPublicId":"a09cc21e-ff3b-4391-8fef-86a8856006a8","packageManager":"npm","priorityScoreList":[],"projectPublicId":"eba72b74-6882-414c-8d80-bbb34df62e40","projectUrl":"https://app.snyk.io/org/mightyprytanis/project/eba72b74-6882-414c-8d80-bbb34df62e40?utm_source=github&utm_medium=referral&page=upgrade-pr","prType":"upgrade","templateFieldSources":{"branchName":"default","commitMessage":"default","description":"default","title":"default"},"templateVariants":[],"type":"auto","upgrade":[],"upgradeInfo":{"versionsDiff":3,"publishedDate":"2025-12-04T14:35:52.609Z"},"vulns":[]}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

pnpm fails to build

3 participants