File tree Expand file tree Collapse file tree 6 files changed +10
-7
lines changed Expand file tree Collapse file tree 6 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 99 push :
1010 branches :
1111 - master
12- - feat/**
1312 tags-ignore :
1413 - " **" # Ignore all tags to prevent duplicate builds when tags are pushed.
1514
Original file line number Diff line number Diff line change 55 push :
66 branches :
77 - master
8- - feat/**
98 tags-ignore :
109 - " **" # Ignore all tags to prevent duplicate builds when tags are pushed.
1110
Original file line number Diff line number Diff line change @@ -122,6 +122,8 @@ jobs:
122122 echo "access=public" >> .npmrc
123123 echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> .npmrc
124124 npm install
125+ - name : Build module
126+ run : npm run build
125127 - name : Publish to NPM
126128 run : npm publish --tag latest
127129
Original file line number Diff line number Diff line change @@ -197,10 +197,10 @@ Configure Claude Desktop to recognize the MCP server.
197197
198198 ``` text
199199 "mcpServers": {
200- "apify ": {
200+ "actors-mcp-server ": {
201201 "command": "npx",
202202 "args": [
203- "/path/to/actor -mcp-server/dist/index.js "
203+ "@apify/actors -mcp-server"
204204 ]
205205 "env": {
206206 "APIFY_TOKEN": "your-apify-token"
@@ -211,10 +211,10 @@ Configure Claude Desktop to recognize the MCP server.
211211 Alternatively, you can use the following command to select one or more Apify Actors:
212212 ```text
213213 "mcpServers": {
214- "apify -mcp-server": {
214+ "actors -mcp-server": {
215215 "command": "npx",
216216 "args": [
217- "/path/to/actor -mcp-server/dist/index.js ",
217+ "@apify/actors -mcp-serve ",
218218 "--actors",
219219 "lukaskrivka/google-maps-with-contact-details,apify/instagram-scraper"
220220 ]
Original file line number Diff line number Diff line change 11{
22 "name" : " @apify/actors-mcp-server" ,
3- "version" : " 0.1.0 " ,
3+ "version" : " 0.1.1 " ,
44 "type" : " module" ,
55 "description" : " Model Context Protocol Server for Apify Actors" ,
66 "engines" : {
Original file line number Diff line number Diff line change 1515import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js' ;
1616import minimist from 'minimist' ;
1717
18+ import { log } from './logger.js' ;
1819import { ApifyMcpServer } from './server.js' ;
1920
21+ log . setLevel ( log . LEVELS . ERROR ) ;
22+
2023const argv = minimist ( process . argv . slice ( 2 ) ) ;
2124const argActors = argv . actors ?. split ( ',' ) . map ( ( actor : string ) => actor . trim ( ) ) || [ ] ;
2225
You can’t perform that action at this time.
0 commit comments