Skip to content

Commit 337d2bc

Browse files
committed
Correct README.md, update version
1 parent 0a4afa5 commit 337d2bc

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

.github/workflows/pre_release.yaml

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ You can find a list of all available Actors in the [Apify Store](https://apify.c
9999

100100
Once the server is running, you can interact with Server-Sent Events (SSE) to send messages to the server and receive responses.
101101
You can use MCP clients such as [Superinference.ai](https://superinterface.ai/) or [LibreChat](https://www.librechat.ai/).
102-
([Claude Desktop](https://claude.ai/download) does not support SSE transport yet)
102+
([Claude Desktop](https://claude.ai/download) does not support SSE transport yet, see [Claude Desktop Configuration](#claude-desktop) section for more details).
103103

104104
In the client settings you need to provide server configuration:
105105
```json

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 2 deletions
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": {
@@ -10,6 +10,9 @@
1010
"bin": {
1111
"actors-mcp-server": "dist/index.js"
1212
},
13+
"files": [
14+
"dist"
15+
],
1316
"repository": {
1417
"type": "git",
1518
"url": "https://github.com/apify/actors-mcp-server.git"
@@ -55,7 +58,8 @@
5558
"lint:fix": "eslint . --fix",
5659
"build": "tsc",
5760
"test": "echo \"Error: oops, the actor has no tests yet, sad!\" && exit 1",
58-
"watch": "tsc --watch"
61+
"watch": "tsc --watch",
62+
"inspector": "npx @modelcontextprotocol/inspector dist/index.js"
5963
},
6064
"author": "Apify",
6165
"license": "MIT"

0 commit comments

Comments
 (0)