-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@apify/actors-mcp-client",
"version": "0.1.0",
"type": "module",
"description": "Model Context Protocol Client",
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"bin": {
"actors-mcp-client": "./dist/index.js"
},
"files": [
"dist",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/apify/actors-mcp-client.git"
},
"bugs": {
"url": "https://github.com/apify/actors-mcp-client/issues"
},
"homepage": "https://apify.com/apify/actors-mcp-client",
"keywords": [
"apify",
"mcp",
"client",
"actors",
"model context protocol"
],
"dependencies": {
"@anthropic-ai/sdk": "^0.36.2",
"@anthropic-ai/tokenizer": "^0.0.4",
"@modelcontextprotocol/sdk": "^1.3.1",
"apify": "^3.2.6",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"eventsource": "^3.0.2",
"express": "^4.21.2"
},
"devDependencies": {
"@apify/eslint-config": "^0.5.0-beta.2",
"@apify/tsconfig": "^0.1.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.0.0",
"@types/minimist": "^1.2.5",
"eslint": "^9.17.0",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.18.2"
},
"scripts": {
"start": "npm run start:dev",
"start:prod": "node dist/main.js",
"start:dev": "tsx src/main.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "tsc",
"test": "echo \"Error: oops, the actor has no tests yet, sad!\" && exit 1",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector dist/main.js"
},
"author": "Apify",
"license": "MIT"
}