Skip to content

Commit b27a607

Browse files
committed
fix: merge master
2 parents 28d5621 + 78ea177 commit b27a607

File tree

11 files changed

+412
-154
lines changed

11 files changed

+412
-154
lines changed

.actor/ACTOR.md

Lines changed: 183 additions & 66 deletions
Large diffs are not rendered by default.

.actor/actor.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@
66
"version": "0.1",
77
"input": "./input_schema.json",
88
"readme": "./ACTOR.md",
9-
"dockerfile": "./Dockerfile"
9+
"dockerfile": "./Dockerfile",
10+
"webServerMcpPath": "/sse"
1011
}

.actor/input_schema.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,14 @@
1515
]
1616
},
1717
"enableActorAutoLoading": {
18-
"title": "Enable automatic loading of Actors based on context and use-case (experimental, check if it supported by your client)",
18+
"title": "Enable automatic loading of Actors based on context and use-case (experimental, check if it supported by your client) (deprecated, use enableAddingActors instead)",
19+
"type": "boolean",
20+
"description": "When enabled, the server can dynamically add Actors as tools based on user requests and context. \n\nNote: MCP client must support notification on tool updates. To try it, you can use the [Tester MCP Client](https://apify.com/jiri.spilka/tester-mcp-client). This is an experimental feature and may require client-specific support.",
21+
"default": false,
22+
"editor": "hidden"
23+
},
24+
"enableAddingActors": {
25+
"title": "Enable adding Actors based on context and use-case (experimental, check if it supported by your client)",
1926
"type": "boolean",
2027
"description": "When enabled, the server can dynamically add Actors as tools based on user requests and context. \n\nNote: MCP client must support notification on tool updates. To try it, you can use the [Tester MCP Client](https://apify.com/jiri.spilka/tester-mcp-client). This is an experimental feature and may require client-specific support.",
2128
"default": false

CHANGELOG.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,22 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
<!-- git-cliff-unreleased-start -->
6-
## 0.1.22 - **not yet released**
5+
## [0.1.23](https://github.com/apify/actors-mcp-server/releases/tag/v0.1.23) (2025-04-16)
6+
7+
### 🐛 Bug Fixes
8+
9+
- Add default Actors in standby mode ([#77](https://github.com/apify/actors-mcp-server/pull/77)) ([4b44e78](https://github.com/apify/actors-mcp-server/commit/4b44e7869549697ff2256a7794e61e3cfec3dd4e)) by [@jirispilka](https://github.com/jirispilka)
710

8-
### 🚀 Features
911

10-
- Local apify api base url (#71) ([581f096](https://github.com/apify/actors-mcp-server/commit/581f096030018aa9f1052151c5b628d9b186193b))
11-
- Add new specification regarding json response streamable http (#72) ([e918d26](https://github.com/apify/actors-mcp-server/commit/e918d26f224466cca58fa5ed35063c13054f9480))
12+
## [0.1.22](https://github.com/apify/actors-mcp-server/releases/tag/v0.1.22) (2025-04-16)
1213

1314
### 🐛 Bug Fixes
1415

15-
- Clearly separate Actor related code and rest of the codebase. Only export ApifyMcpServer from the package ([ce711e9](https://github.com/apify/actors-mcp-server/commit/ce711e9096ce2f51f6c3f78c0966a27ef73ad945))
16-
- Update packages, add TODOs ([b78fb6b](https://github.com/apify/actors-mcp-server/commit/b78fb6b1caadb2ec886eb0b11702bda10b151fdb))
17-
- Lint issue ([8735e8f](https://github.com/apify/actors-mcp-server/commit/8735e8f99ba2d71db732978a1a5ffaae5dc3f898))
18-
- Rename server to ActorsMcpServer ([6879923](https://github.com/apify/actors-mcp-server/commit/6879923a946536b8ea422e2bed943f1ed021a458))
19-
- Deploy to npm ([90b87f8](https://github.com/apify/actors-mcp-server/commit/90b87f8edc59a4d3c375ba6344073bafe49a9454))
16+
- Deprecate enableActorAutoLoading in favor of enable-adding-actors, and load tools only if not provided in query parameter ([#63](https://github.com/apify/actors-mcp-server/pull/63)) ([8add54c](https://github.com/apify/actors-mcp-server/commit/8add54ce94952bc23653b1f5c6c568e51589ffa5)) by [@jirispilka](https://github.com/jirispilka), closes [#54](https://github.com/apify/actors-mcp-server/issues/54)
17+
- CI ([#75](https://github.com/apify/actors-mcp-server/pull/75)) ([3433a39](https://github.com/apify/actors-mcp-server/commit/3433a39305f59c7964401a3d68db06cb47bb243a)) by [@jirispilka](https://github.com/jirispilka)
18+
- Add tools with query parameter ([#76](https://github.com/apify/actors-mcp-server/pull/76)) ([dc9a07a](https://github.com/apify/actors-mcp-server/commit/dc9a07a37db076eb9fe064e726cae6e7bdb2bf0f)) by [@jirispilka](https://github.com/jirispilka)
2019

2120

22-
<!-- git-cliff-unreleased-end -->
2321
## [0.1.21](https://github.com/apify/actors-mcp-server/releases/tag/v0.1.21) (2025-03-27)
2422

2523
### 🐛 Bug Fixes
@@ -181,4 +179,4 @@ All notable changes to this project will be documented in this file.
181179
### 🐛 Bug Fixes
182180

183181
- Update express routes to correctly handle GET and HEAD requests, fix CI ([#5](https://github.com/apify/actors-mcp-server/pull/5)) ([ec6e9b0](https://github.com/apify/actors-mcp-server/commit/ec6e9b0a4657f673b3650a5906fe00e66411d7f1)) by [@jirispilka](https://github.com/jirispilka)
184-
- Correct publishing of npm module ([#6](https://github.com/apify/actors-mcp-server/pull/6)) ([4c953e9](https://github.com/apify/actors-mcp-server/commit/4c953e9fe0c735f1690c8356884dd78d8608979f)) by [@jirispilka](https://github.com/jirispilka)
182+
- Correct publishing of npm module ([#6](https://github.com/apify/actors-mcp-server/pull/6)) ([4c953e9](https://github.com/apify/actors-mcp-server/commit/4c953e9fe0c735f1690c8356884dd78d8608979f)) by [@jirispilka](https://github.com/jirispilka)

0 commit comments

Comments
 (0)