diff --git a/.github/workflows/pre_release.yaml b/.github/workflows/pre_release.yaml index 2df49f4..88a886f 100644 --- a/.github/workflows/pre_release.yaml +++ b/.github/workflows/pre_release.yaml @@ -5,6 +5,7 @@ on: push: branches: - master + - feat/** tags-ignore: - "**" # Ignore all tags to prevent duplicate builds when tags are pushed. diff --git a/README.md b/README.md index f1f0053..8e43200 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ You can find a list of all available Actors in the [Apify Store](https://apify.c Once the server is running, you can interact with Server-Sent Events (SSE) to send messages to the server and receive responses. You can use MCP clients such as [Superinference.ai](https://superinterface.ai/) or [LibreChat](https://www.librechat.ai/). -([Claude Desktop](https://claude.ai/download) does not support SSE transport yet) +([Claude Desktop](https://claude.ai/download) does not support SSE transport yet, see [Claude Desktop Configuration](#claude-desktop) section for more details). In the client settings you need to provide server configuration: ```json diff --git a/package-lock.json b/package-lock.json index 6500680..0ddb418 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { - "name": "@apify/mcp-server", - "version": "0.1.0", + "name": "@apify/actors-mcp-server", + "version": "0.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "@apify/mcp-server", - "version": "0.1.0", + "name": "@apify/actors-mcp-server", + "version": "0.1.1", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.1.1", @@ -17,7 +17,7 @@ "minimist": "^1.2.8" }, "bin": { - "apify-mcp-server": "dist/index.js" + "actors-mcp-server": "dist/index.js" }, "devDependencies": { "@anthropic-ai/sdk": "^0.33.1", diff --git a/package.json b/package.json index 1823cff..49c59ed 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@apify/actors-mcp-server", - "version": "0.1.0", + "version": "0.1.1", "type": "module", "description": "Model Context Protocol Server for Apify Actors", "engines": { @@ -10,6 +10,9 @@ "bin": { "actors-mcp-server": "dist/index.js" }, + "files": [ + "dist" + ], "repository": { "type": "git", "url": "https://github.com/apify/actors-mcp-server.git" @@ -55,7 +58,8 @@ "lint:fix": "eslint . --fix", "build": "tsc", "test": "echo \"Error: oops, the actor has no tests yet, sad!\" && exit 1", - "watch": "tsc --watch" + "watch": "tsc --watch", + "inspector": "npx @modelcontextprotocol/inspector dist/index.js" }, "author": "Apify", "license": "MIT"