Skip to content

Commit e2c628e

Browse files
committed
Fix mcpb release (tested only locally, not tested using github workflows)
2 parents c6970b0 + 137d771 commit e2c628e

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

.github/workflows/release.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,10 @@ jobs:
142142
cp manifest.json mcpb/manifest.json
143143
cp docs/apify-logo.png mcpb/icon.png
144144
- name: Create MCPB package
145-
run: npx -y @anthropic-ai/mcpb pack mcpb/ actors-mcp-server.dxt
145+
# fix version of anthropic-ai/mcpb to 1.1.1 so that we have a reproducible build
146+
run: npx -y @anthropic-ai/[email protected] pack mcpb/ apify-mcp-server.mcpb
146147
- name: Copy MCPB package
147-
run: cp actors-mcp-server.dxt apify-mcp-server.dxt
148+
run: cp apify-mcp-server.mcpb apify-mcp-server.mcpb
148149
- name: Create release
149150
uses: softprops/action-gh-release@v2
150151
with:
@@ -153,8 +154,8 @@ jobs:
153154
target_commitish: ${{ needs.update_changelog.outputs.changelog_commitish }}
154155
body: ${{ needs.release_metadata.outputs.release_notes }}
155156
files: |
156-
actors-mcp-server.dxt
157-
apify-mcp-server.dxt
157+
apify-mcp-server.mcpb
158+
actors-mcp-server.mcpb
158159
159160
publish_to_npm:
160161
name: Publish to NPM

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ All notable changes to this project will be documented in this file.
99
- Mcpb/dxt release cicd ([0553677](https://github.com/apify/apify-mcp-server/commit/055367712480292078c6b09cbf952fe63c08f33f))
1010

1111

12+
## [0.4.14](https://github.com/apify/apify-mcp-server/releases/tag/v0.4.14) (2025-09-24)
13+
14+
### 🐛 Bug Fixes
15+
16+
- Actorized MCP servers have 30 seconds timeout to connect ([#272](https://github.com/apify/apify-mcp-server/pull/272)) ([cdffc3e](https://github.com/apify/apify-mcp-server/commit/cdffc3e80bcd3cd1410e4d8d7edf3e58c4202a37)) by [@MichalKalita](https://github.com/MichalKalita), closes [#250](https://github.com/apify/apify-mcp-server/issues/250)
17+
- Actor card markdown ([#285](https://github.com/apify/apify-mcp-server/pull/285)) ([73e3115](https://github.com/apify/apify-mcp-server/commit/73e3115b86466e268048590102fecffeaf5f7d86)) by [@jirispilka](https://github.com/jirispilka), closes [#286](https://github.com/apify/apify-mcp-server/issues/286)
18+
19+
1220
## [0.4.14](https://github.com/apify/apify-mcp-server/releases/tag/v0.4.14) (2025-09-19)
1321

1422

@@ -569,4 +577,4 @@ All notable changes to this project will be documented in this file.
569577
### 🐛 Bug Fixes
570578

571579
- Update express routes to correctly handle GET and HEAD requests, fix CI ([#5](https://github.com/apify/actors-mcp-server/pull/5)) ([ec6e9b0](https://github.com/apify/actors-mcp-server/commit/ec6e9b0a4657f673b3650a5906fe00e66411d7f1)) by [@jirispilka](https://github.com/jirispilka)
572-
- Correct publishing of npm module ([#6](https://github.com/apify/actors-mcp-server/pull/6)) ([4c953e9](https://github.com/apify/actors-mcp-server/commit/4c953e9fe0c735f1690c8356884dd78d8608979f)) by [@jirispilka](https://github.com/jirispilka)
580+
- Correct publishing of npm module ([#6](https://github.com/apify/actors-mcp-server/pull/6)) ([4c953e9](https://github.com/apify/actors-mcp-server/commit/4c953e9fe0c735f1690c8356884dd78d8608979f)) by [@jirispilka](https://github.com/jirispilka)

manifest.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
2-
"dxt_version": "0.1",
3-
"name": "Apify",
2+
"manifest_version": "0.2",
3+
"name": "apify-mcp-server",
4+
"display_name": "Apify MCP server",
45
"version": "0.4.15",
56
"description": "Extract data from any website using thousands of tools from the Apify Store.",
67
"long_description": "Apify is the world's largest marketplace of tools for web scraping, data extraction, and web automation. You can extract structured data from social media, e-commerce, search engines, maps, travel sites, or any other website.",

0 commit comments

Comments
 (0)