Skip to content

Commit 04c265d

Browse files
chore: deprecate retired MCP packages
1 parent 2eed3da commit 04c265d

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Deprecate retired MCP packages
2+
3+
on:
4+
push:
5+
branches: [codex/deprecate-mcp-packages]
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
deprecate:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/setup-node@v6
15+
with:
16+
node-version: 24
17+
registry-url: https://registry.npmjs.org
18+
- name: Deprecate every published version
19+
env:
20+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
21+
MESSAGE: "Retired and unsupported. Do not use for new projects. Migrate to host-native tools: https://github.com/levnikolaevich/claude-code-skills#migration-from-v1"
22+
run: |
23+
npm deprecate '@levnikolaevich/hex-line-mcp@*' "$MESSAGE"
24+
npm deprecate '@levnikolaevich/hex-graph-mcp@*' "$MESSAGE"
25+
npm deprecate '@levnikolaevich/hex-research-mcp@*' "$MESSAGE"
26+
npm deprecate '@levnikolaevich/hex-ssh-mcp@*' "$MESSAGE"

0 commit comments

Comments
 (0)