Skip to content

Commit 2859f3c

Browse files
chore(mcp): rename dxt to mcpb
1 parent ce5e62e commit 2859f3c

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.github/workflows/publish-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ jobs:
4545
- name: Upload MCP Server DXT GitHub release asset
4646
run: |
4747
gh release upload ${{ github.event.release.tag_name }} \
48-
packages/mcp-server/isaacus_api.dxt
48+
packages/mcp-server/isaacus_api.mcpb
4949
env:
5050
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

packages/mcp-server/build

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ chmod +x dist/index.js
3232
DIST_PATH=./dist PKG_IMPORT_PATH=isaacus-mcp/ node ../../scripts/utils/postprocess-files.cjs
3333

3434
# mcp bundle
35-
rm -rf dist-bundle isaacus_api.dxt; mkdir dist-bundle
35+
rm -rf dist-bundle isaacus_api.mcpb; mkdir dist-bundle
3636

3737
# copy package.json
3838
PKG_JSON_PATH=../../packages/mcp-server/package.json node ../../scripts/utils/make-dist-package-json.cjs > dist-bundle/package.json
@@ -48,9 +48,9 @@ cd ..
4848
# pack bundle
4949
cp manifest.json dist-bundle
5050

51-
npx dxt pack dist-bundle isaacus_api.dxt
51+
npx mcpb pack dist-bundle isaacus_api.mcpb
5252

53-
npx dxt sign isaacus_api.dxt --self-signed
53+
npx mcpb sign isaacus_api.mcpb --self-signed
5454

5555
# clean up
5656
rm -rf dist-bundle

packages/mcp-server/manifest.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"dxt_version": "0.1",
2+
"dxt_version": "0.2",
33
"name": "isaacus-mcp",
44
"version": "0.11.0",
55
"description": "The official MCP Server for the Isaacus API",
@@ -15,7 +15,7 @@
1515
"documentation": "https://docs.isaacus.com",
1616
"server": {
1717
"type": "node",
18-
"entry_point": "${__dirname}/index.js",
18+
"entry_point": "index.js",
1919
"mcp_config": {
2020
"command": "node",
2121
"args": ["${__dirname}/index.js"],
@@ -32,6 +32,7 @@
3232
"type": "string"
3333
}
3434
},
35+
"tools": [],
3536
"tools_generated": true,
3637
"compatibility": {
3738
"runtimes": {

packages/mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"mcp-server": "dist/index.js"
4848
},
4949
"devDependencies": {
50-
"@anthropic-ai/dxt": "^0.2.6",
50+
"@anthropic-ai/mcpb": "^1.1.0",
5151
"@types/cors": "^2.8.19",
5252
"@types/express": "^5.0.3",
5353
"@types/jest": "^29.4.0",

0 commit comments

Comments
 (0)