Skip to content
Merged
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
bb1c10b
wip snapshot, decouple logic, split stdio cli, http server and prepare
MQ37 Apr 1, 2025
03d772c
lint
MQ37 Apr 2, 2025
0ccc995
improve
MQ37 Apr 2, 2025
4c1e3df
expose lib
MQ37 Apr 2, 2025
255b91d
split tools, add call for internal tools, prepare toolkits
MQ37 Apr 2, 2025
ffc05ce
Move tool exports to toolkit modules
MQ37 Apr 3, 2025
9241f03
Refactor tool exports and update library entry points
MQ37 Apr 3, 2025
59a9e0a
remove toolkits (move to tools index), pass apify token as arg, clean…
MQ37 Apr 7, 2025
99bee44
fix stdio.js path, get Apify token from env var for stdio and standby…
MQ37 Apr 7, 2025
e0af0b1
export helper functions, fix typos and minor issues
MQ37 Apr 7, 2025
0697fc2
tsconfig remove root dir
MQ37 Apr 7, 2025
e982411
Refactor actor run data handling by moving logic to getActorRunData f…
MQ37 Apr 7, 2025
ca13d54
split actors.ts
MQ37 Apr 7, 2025
2c7edaf
fix test imports
MQ37 Apr 7, 2025
f8ad397
simplify mcp server class, move to actors/call.ts
MQ37 Apr 7, 2025
204b358
decouple processParamsAndUpdateTools
MQ37 Apr 7, 2025
8ed82ab
dataset push only in normal mode for debugging
MQ37 Apr 7, 2025
915faf8
add server tests
MQ37 Apr 7, 2025
f1d630d
update processParamsAndUpdateTools docs
MQ37 Apr 7, 2025
ce711e9
fix: clearly separate Actor related code and rest of the codebase. On…
jirispilka Apr 9, 2025
b78fb6b
fix: Update packages, add TODOs
jirispilka Apr 9, 2025
8735e8f
fix: lint issue
jirispilka Apr 9, 2025
6879923
fix: rename server to ActorsMcpServer
jirispilka Apr 11, 2025
af3eb35
Update src/mcp-server.ts
MQ37 Apr 11, 2025
b665a2c
remove double updateTools main.ts call, extend ApifyClient with MCP u…
MQ37 Apr 11, 2025
90b87f8
fix: deploy to npm
jirispilka Apr 11, 2025
2573e74
add default tools and load tools from url MCP server methods
MQ37 Apr 11, 2025
52ccf0c
fix wf name
MQ37 Apr 11, 2025
b0b558e
bump beta version
MQ37 Apr 11, 2025
d8e7294
chore(release): Update changelog and package version [skip ci]
Apr 11, 2025
0a836c9
move defaults from actors/ to consts in src/
MQ37 Apr 14, 2025
581f096
feat: local apify api base url (#71)
MQ37 Apr 15, 2025
a9d3b65
chore(release): Update changelog and package version [skip ci]
Apr 15, 2025
e918d26
feat: add new specification regarding json response streamable http (…
jirispilka Apr 16, 2025
95c311d
chore(release): Update changelog and package version [skip ci]
Apr 16, 2025
d8514f9
fix: lint issues, disable feat/decouple
jirispilka Apr 16, 2025
b538c04
Merge remote-tracking branch 'origin/feat/decouple' into feat/decouple
jirispilka Apr 16, 2025
28d5621
feat: Actorized MCP servers proxy (#69)
MQ37 Apr 16, 2025
b27a607
fix: merge master
jirispilka Apr 16, 2025
118f049
fix: unit-tests
jirispilka Apr 16, 2025
76eba1c
fix stream not readable and apify api url base for Actor server
MQ37 Apr 16, 2025
f5310a6
fix: logic when starting server
jirispilka Apr 17, 2025
aadd4a0
fix: server.ts
jirispilka Apr 17, 2025
5d0a84a
fix: change port to not collide with inspector
jirispilka Apr 17, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
389 changes: 389 additions & 0 deletions .actor/ACTOR.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .actor/actor.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
"description": "Implementation of a Model Context Protocol (MCP) Server for Apify Actors that enables AI applications (and AI agents) to interact with Apify Actors",
"version": "0.1",
"input": "./input_schema.json",
"readme": "./ACTOR.md",
"dockerfile": "./Dockerfile"
}
6 changes: 3 additions & 3 deletions .github/scripts/before-beta-release.cjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { execSync } = require('child_process');
const fs = require('fs');
const path = require('path');
const { execSync } = require('node:child_process');
const fs = require('node:fs');
const path = require('node:path');

const PKG_JSON_PATH = path.join(__dirname, '..', '..', 'package.json');

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ storage/key_value_stores/default/*
# Added by Apify CLI
.venv
.env
.aider*
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ You can launch the MCP Inspector via [`npm`](https://docs.npmjs.com/downloading-

```bash
export APIFY_TOKEN=your-apify-token
npx @modelcontextprotocol/inspector node ./dist/index.js
npx @modelcontextprotocol/inspector node ./dist/stdio.js
```

Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.
Expand Down
Loading
Loading