Skip to content

Commit a09354b

Browse files
Fix compatibility with @modelcontextprotocol/sdk 1.23+ (#84)
* Fix compatibility with @modelcontextprotocol/sdk 1.23+ Implement required abstract methods `assertTaskCapability` and `assertTaskHandlerCapability` in App and AppBridge classes. These were added to the Protocol base class in SDK 1.23+. Also regenerates package-lock.json with valid npm registry versions (previously had non-existent [email protected]). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]> * Add pkg-pr-new workflow for PR/commit publishing Enables automatic publishing of any commit or PR to pkg.pr.new, allowing consumers to install directly from git commits: npm install https://pkg.pr.new/modelcontextprotocol/ext-apps/@modelcontextprotocol/ext-apps@<commit-or-pr> 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]> --------- Co-authored-by: Claude <[email protected]>
1 parent 47d1b37 commit a09354b

File tree

4 files changed

+1709
-619
lines changed

4 files changed

+1709
-619
lines changed

.github/workflows/publish.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Publish Any Commit
2+
permissions:
3+
contents: read
4+
on:
5+
pull_request:
6+
push:
7+
branches:
8+
- "**"
9+
tags:
10+
- "!**"
11+
12+
jobs:
13+
pkg-publish:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-node@v4
18+
with:
19+
node-version: 22
20+
cache: npm
21+
- run: npm ci
22+
- run: npm run build
23+
- run: npx pkg-pr-new publish

0 commit comments

Comments
 (0)