Skip to content

Commit f3a6908

Browse files
committed
Update version, fix logging
1 parent 4a6d913 commit f3a6908

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

.github/workflows/check.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ on:
99
push:
1010
branches:
1111
- master
12-
- feat/**
1312
tags-ignore:
1413
- "**" # Ignore all tags to prevent duplicate builds when tags are pushed.
1514

.github/workflows/pre_release.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
push:
66
branches:
77
- master
8-
- feat/**
98
tags-ignore:
109
- "**" # Ignore all tags to prevent duplicate builds when tags are pushed.
1110

.github/workflows/release.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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": {

src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@
1515
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
1616
import minimist from 'minimist';
1717

18+
import { log } from './logger.js';
1819
import { ApifyMcpServer } from './server.js';
1920

21+
log.setLevel(log.LEVELS.ERROR);
22+
2023
const argv = minimist(process.argv.slice(2));
2124
const argActors = argv.actors?.split(',').map((actor: string) => actor.trim()) || [];
2225

0 commit comments

Comments
 (0)