Skip to content

Commit f7e9f16

Browse files
committed
fix: publish package
1 parent 4d0b290 commit f7e9f16

File tree

3 files changed

+10
-13
lines changed

3 files changed

+10
-13
lines changed

.github/workflows/pre_release.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,8 @@ jobs:
101101
# run: node ./.github/scripts/before-beta-release.cjs
102102
- name: Build module
103103
run: npm run build
104-
# - name: Publish to NPM
105-
# run: npm publish
106-
- name: Unpublish NPM package
107-
run: npm unpublish --force
104+
- name: Publish to NPM
105+
run: npm publish
108106

109107
env:
110108
NODE_AUTH_TOKEN: ${{ secrets.APIFY_SERVICE_ACCOUNT_NPM_TOKEN }}

README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,12 @@ The RAG Web Browser Actor allows an AI assistant to:
1919

2020
### Tools
2121

22-
- **search**: Query Google Search, scrape the top N URLs from the results, and returns their cleaned content as Markdown.
23-
- Arguments:
24-
- `query` (string, required): Search term or URL
25-
- `maxResults` (number, optional): Maximum number of search results to scrape (default: 1)
26-
- `scrapingTool` (string, optional): Select a scraping tool for extracting web pages. Options: 'browser-playwright' or 'raw-http' (default: 'raw-http')
27-
- `outputFormats` (array, optional): Select one or more formats for the output. Options: 'text', 'markdown', 'html' (default: ['markdown'])
28-
- `requestTimeoutSecs` (number, optional): Maximum time in seconds for the request (default: 40)
22+
- **search**: Query Google Search, scrape the top N URLs from the results, and returns their cleaned content as Markdown. Arguments:
23+
- `query` (string, required): Search term or URL
24+
- `maxResults` (number, optional): Maximum number of search results to scrape (default: 1)
25+
- `scrapingTool` (string, optional): Select a scraping tool for extracting web pages. Options: 'browser-playwright' or 'raw-http' (default: 'raw-http')
26+
- `outputFormats` (array, optional): Select one or more formats for the output. Options: 'text', 'markdown', 'html' (default: ['markdown'])
27+
- `requestTimeoutSecs` (number, optional): Maximum time in seconds for the request (default: 40)
2928

3029
## 🔄 What is the Model Context Protocol?
3130

@@ -160,4 +159,4 @@ export APIFY_TOKEN=your-apify-api-token
160159
npx @modelcontextprotocol/inspector node dist/index.js
161160
```
162161

163-
Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.
162+
Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "mcp-server-rag-web-browser",
2+
"name": "@apify/mcp-server-rag-web-browser",
33
"version": "0.1.0",
44
"type": "module",
55
"description": "An MCP Server for RAG Web Browser Actor",

0 commit comments

Comments
 (0)