Skip to content

fix MCP transport handshake compatibility #5

fix MCP transport handshake compatibility

fix MCP transport handshake compatibility #5

Workflow file for this run

name: Publish MCP Package
on:
push:
tags:
- "mcp-v*"
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
registry-url: "https://registry.npmjs.org"
- name: Validate package syntax
run: npm run check
working-directory: mcp-server
- name: Publish npm package
run: npm publish --access public
working-directory: mcp-server
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}