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: 28 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,41 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
ref: ${{ needs.update_changelog.changelog_commitish }}
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: Install dependencies
run: |
echo "access=public" >> .npmrc
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> .npmrc
npm ci
- name: Build module
run: npm run build
- name: Prepare DXT 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: Create release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ needs.release_metadata.outputs.tag_name }}
name: ${{ needs.release_metadata.outputs.version_number }}
target_commitish: ${{ needs.update_changelog.outputs.changelog_commitish }}
body: ${{ needs.release_metadata.outputs.release_notes }}
files: |
actors-mcp-server.dxt

publish_to_npm:
name: Publish to NPM
Expand Down
Binary file added docs/apify-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
70 changes: 70 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
{
"dxt_version": "0.1",
"name": "apify-actors-mcp-server",
"version": "0.0.0",
"description": "The Apify Model Context Protocol (MCP) Server at mcp.apify.com instantly connects AI applications and agents to thousands of ready‑built tools. It allows your AI assistant to use any Apify Actor for web scraping, data extraction, and automation tasks in real time.",
"keywords": [
"apify",
"actors",
"dataset",
"mcp",
"automation",
"web",
"web scraping",
"web automation",
"web scraper",
"web crawler",
"scraping",
"data extraction",
"API"
],
"author": {
"name": "Apify Technologies s.r.o.",
"url": "https://apify.com"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/apify/actors-mcp-server"
},
"homepage": "https://mcp.apify.com",
"support": "https://github.com/apify/actors-mcp-server/issues",
"icon": "docs/apify-logo.png",
"screenshots": [
"docs/actors-mcp-server.png"
],
"server": {
"type": "node",
"entry_point": "dist/stdio.js",
"mcp_config": {
"command": "node",
"args": [
"${__dirname}/dist/stdio.js"
],
"env": {
"APIFY_TOKEN": "${user_config.apify_token}"
}
}
},
"tools_generated": true,
"user_config": {
"apify_token": {
"type": "string",
"title": "Apify token",
"description": "Your Apify API token for authentication",
"sensitive": true,
"required": true
}
},
"compatibility": {
"claude_desktop": ">=0.2.16",
"platforms": [
"darwin",
"win32",
"linux"
],
"runtimes": {
"node": ">=20.0.0"
}
}
}