@apify/actors-mcp-server 0.10.7-beta.0 → 0.10.7-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/stdio.js +0 -0
- package/dist/tools/core/search_actors_common.d.ts +2 -11
- package/dist/tools/core/search_actors_common.d.ts.map +1 -1
- package/dist/tools/core/search_actors_common.js +30 -30
- package/dist/tools/core/search_actors_common.js.map +1 -1
- package/dist/tools/default/search_actors.js +2 -2
- package/dist/tools/default/search_actors.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/web/dist/actor-detail-widget.js +1973 -1371
- package/dist/web/dist/actor-run-widget.js +1854 -1252
- package/dist/web/dist/search-actors-widget.js +1856 -1254
- package/package.json +23 -18
package/package.json
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apify/actors-mcp-server",
|
|
3
|
-
"version": "0.10.7-beta.
|
|
3
|
+
"version": "0.10.7-beta.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Apify MCP Server",
|
|
6
6
|
"mcpName": "com.apify/apify-mcp-server",
|
|
7
7
|
"engines": {
|
|
8
|
-
"node": ">=
|
|
8
|
+
"node": ">=22.0.0"
|
|
9
|
+
},
|
|
10
|
+
"devEngines": {
|
|
11
|
+
"packageManager": {
|
|
12
|
+
"name": "pnpm",
|
|
13
|
+
"version": "11.1.3",
|
|
14
|
+
"onFail": "error"
|
|
15
|
+
}
|
|
9
16
|
},
|
|
10
17
|
"main": "dist/index.js",
|
|
11
18
|
"exports": {
|
|
@@ -50,6 +57,7 @@
|
|
|
50
57
|
"ajv": "^8.17.1",
|
|
51
58
|
"algoliasearch": "^5.31.0",
|
|
52
59
|
"apify-client": "^2.22.1",
|
|
60
|
+
"axios": "^1.16.0",
|
|
53
61
|
"dedent": "^1.7.2",
|
|
54
62
|
"dotenv": "^17.4.1",
|
|
55
63
|
"express": "^4.21.2",
|
|
@@ -79,35 +87,32 @@
|
|
|
79
87
|
"typescript": "^5.3.3",
|
|
80
88
|
"vitest": "^3.0.8"
|
|
81
89
|
},
|
|
90
|
+
"author": "Apify",
|
|
91
|
+
"license": "MIT",
|
|
82
92
|
"scripts": {
|
|
83
93
|
"start": "tsx src/dev_server.ts",
|
|
84
94
|
"dev": "node scripts/dev_standby.js",
|
|
85
|
-
"build": "
|
|
95
|
+
"build": "pnpm run build:core && pnpm run build:web",
|
|
86
96
|
"build:core": "tsc -b src",
|
|
87
97
|
"build:watch": "tsc -b src -w",
|
|
88
|
-
"build:web": "
|
|
98
|
+
"build:web": "pnpm --filter @apify/mcp-web-widget run build",
|
|
89
99
|
"postbuild": "mkdir -p dist/web && (cp -r src/web/dist dist/web/ 2>/dev/null || :)",
|
|
90
100
|
"clean": "tsc -b src --clean && rm -rf dist/web",
|
|
91
101
|
"lint": "oxlint .",
|
|
92
102
|
"lint:fix": "oxlint . --fix",
|
|
93
103
|
"type-check": "tsc -p tsconfig.json --noEmit",
|
|
94
|
-
"typecheck": "
|
|
95
|
-
"check": "
|
|
104
|
+
"typecheck": "pnpm run type-check",
|
|
105
|
+
"check": "pnpm run type-check && pnpm run lint",
|
|
96
106
|
"check:widgets": "tsx scripts/check_widgets.ts",
|
|
97
|
-
"test": "
|
|
107
|
+
"test": "pnpm run test:unit",
|
|
98
108
|
"test:unit": "vitest run tests/unit",
|
|
99
|
-
"test:integration": "
|
|
100
|
-
"test:integration:stdio": "
|
|
101
|
-
"test:integration:sse": "
|
|
102
|
-
"test:integration:streamable": "
|
|
109
|
+
"test:integration": "pnpm run build && vitest run tests/integration",
|
|
110
|
+
"test:integration:stdio": "pnpm run build && vitest run tests/integration/stdio.test.ts",
|
|
111
|
+
"test:integration:sse": "pnpm run build && vitest run tests/integration/actor.server_sse.test.ts",
|
|
112
|
+
"test:integration:streamable": "pnpm run build && vitest run tests/integration/actor.server_streamable.test.ts",
|
|
103
113
|
"inspector:stdio": "npx @modelcontextprotocol/inspector -e APIFY_TOKEN=$APIFY_TOKEN -- node dist/stdio.js",
|
|
104
114
|
"evals:create-dataset": "tsx evals/create_dataset.ts",
|
|
105
115
|
"evals:run": "tsx evals/run_evaluation.ts",
|
|
106
|
-
"evals:workflow": "
|
|
107
|
-
},
|
|
108
|
-
"author": "Apify",
|
|
109
|
-
"license": "MIT",
|
|
110
|
-
"overrides": {
|
|
111
|
-
"@modelcontextprotocol/sdk": "1.29.0"
|
|
116
|
+
"evals:workflow": "pnpm run build && tsx evals/workflows/run_workflow_evals.ts"
|
|
112
117
|
}
|
|
113
|
-
}
|
|
118
|
+
}
|