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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113{
"name": "volcano-sdk",
"version": "1.1.0",
"description": "Build AI agents that seamlessly combine LLM reasoning with real-world actions via MCP tools โ in just a few lines of TypeScript.",
"author": "Kong <office@konghq.com>",
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Kong/volcano-sdk.git"
},
"homepage": "https://github.com/Kong/volcano-sdk",
"bugs": {
"url": "https://github.com/Kong/volcano-sdk/issues"
},
"exports": {
".": {
"types": "./dist/volcano-sdk.d.ts",
"import": "./dist/volcano-sdk.js"
}
},
"main": "./dist/volcano-sdk.js",
"types": "./dist/volcano-sdk.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"sideEffects": false,
"engines": {
"node": ">=18.17"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pretest": "./scripts/kill-test-servers.sh",
"test": "NODE_OPTIONS='--no-deprecation' vitest run",
"test:watch": "NODE_OPTIONS='--no-deprecation' vitest",
"test:kill-servers": "./scripts/kill-test-servers.sh",
"test:ollama": "node scripts/test-ollama-health.mjs"
},
"peerDependencies": {
"@aws-sdk/client-bedrock-runtime": "^3.895.0",
"@aws-sdk/credential-providers": "^3.895.0",
"@azure/identity": "^4.0.0",
"@opentelemetry/api": "^1.9.0"
},
"peerDependenciesMeta": {
"@aws-sdk/client-bedrock-runtime": {
"optional": true
},
"@aws-sdk/credential-providers": {
"optional": true
},
"@azure/identity": {
"optional": true
},
"@opentelemetry/api": {
"optional": true
}
},
"devDependencies": {
"@aws-sdk/client-bedrock-runtime": "^3.895.0",
"@aws-sdk/credential-providers": "^3.895.0",
"@azure/identity": "^4.0.0",
"@eslint/js": "^9.36.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.56.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.56.0",
"@opentelemetry/sdk-metrics": "^1.28.0",
"@opentelemetry/sdk-node": "^0.56.0",
"@opentelemetry/sdk-trace-base": "^1.28.0",
"@opentelemetry/sdk-trace-node": "^1.28.0",
"@opentelemetry/resources": "^1.28.0",
"@types/node": "^24.5.2",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"cors": "^2.8.5",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"express": "^5.1.0",
"rimraf": "^6.0.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.1",
"vitest": "^4.0.4",
"zod": "^3.23.8"
},
"keywords": [
"mcp",
"llm",
"openai",
"sdk",
"agents",
"ai",
"anthropic",
"mistral",
"bedrock",
"vertex",
"volcano"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.2",
"ajv": "^8.17.1",
"openai": "^6.7.0",
"ora": "^8.1.1"
}
}