Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 15 additions & 13 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -132,18 +132,20 @@ jobs:
npm ci
- name: Build module
run: npm run build
- name: Prepare DXT package
- name: Prepare MCPB package
run: |
mkdir dxt
cp -r node_modules dxt/node_modules
cp -r dist dxt/dist
cp -r docs dxt/docs
cp package.json dxt/package.json
cp manifest.json dxt/manifest.json
- name: Create DXT package
run: npx -y @anthropic-ai/dxt pack dxt/ actors-mcp-server.dxt
- name: Copy DXT package
run: cp actors-mcp-server.dxt apify-mcp-server.dxt
mkdir mcpb
cp -r node_modules mcpb/node_modules
cp -r dist mcpb/dist
cp -r docs mcpb/docs
cp package.json mcpb/package.json
cp manifest.json mcpb/manifest.json
cp docs/apify-logo.png mcpb/icon.png
- name: Create MCPB package
# fix version of anthropic-ai/mcpb to 1.1.1 so that we have a reproducible build
run: npx -y @anthropic-ai/[email protected] pack mcpb/ apify-mcp-server.mcpb
- name: Copy MCPB package
run: cp apify-mcp-server.mcpb apify-mcp-server.mcpb
- name: Create release
uses: softprops/action-gh-release@v2
with:
Expand All @@ -152,8 +154,8 @@ jobs:
target_commitish: ${{ needs.update_changelog.outputs.changelog_commitish }}
body: ${{ needs.release_metadata.outputs.release_notes }}
files: |
actors-mcp-server.dxt
apify-mcp-server.dxt
apify-mcp-server.mcpb
actors-mcp-server.mcpb

publish_to_npm:
name: Publish to NPM
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [0.4.15](https://github.com/apify/apify-mcp-server/releases/tag/v0.4.15) (2025-09-19)

### 🐛 Bug Fixes

- Mcpb/dxt release cicd ([0553677](https://github.com/apify/apify-mcp-server/commit/055367712480292078c6b09cbf952fe63c08f33f))


## [0.4.14](https://github.com/apify/apify-mcp-server/releases/tag/v0.4.14) (2025-09-24)

### 🐛 Bug Fixes
Expand Down Expand Up @@ -570,4 +577,4 @@ All notable changes to this project will be documented in this file.
### 🐛 Bug Fixes

- 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)
- 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)
- 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)
7 changes: 4 additions & 3 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"dxt_version": "0.1",
"name": "Apify",
"version": "0.4.14",
"manifest_version": "0.2",
"name": "apify-mcp-server",
"display_name": "Apify MCP server",
"version": "0.4.15",
"description": "Extract data from any website using thousands of tools from the Apify Store.",
"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.",
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apify/actors-mcp-server",
"version": "0.4.14",
"version": "0.4.15",
"type": "module",
"description": "Apify MCP Server",
"engines": {
Expand Down