Skip to content

Commit

Permalink
Correct README.md, update version
Browse files Browse the repository at this point in the history
  • Loading branch information
jirispilka committed Jan 17, 2025
1 parent 0a4afa5 commit 337d2bc
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/workflows/pre_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
push:
branches:
- master
- feat/**
tags-ignore:
- "**" # Ignore all tags to prevent duplicate builds when tags are pushed.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -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"
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 337d2bc

Please sign in to comment.