-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.88 KB
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
{
"name": "@vapi-ai/mcp-server",
"description": "Build AI voice assistants and phone agents with Vapi through the Model Context Protocol",
"version": "0.0.11",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"author": {
"name": "Vapi AI",
"url": "https://vapi.ai"
},
"contributors": [
{
"name": "ramsrib",
"url": "https://github.com/ramsrib"
}
],
"homepage": "https://github.com/VapiAI/mcp-server#readme",
"repository": "https://github.com/VapiAI/mcp-server",
"bugs": {
"url": "https://github.com/VapiAI/mcp-server/issues"
},
"keywords": [
"vapi",
"mcp",
"model-context-protocol",
"mcp-server",
"mcp-client",
"ai",
"voice-agents",
"voice-api",
"tool-calling"
],
"bin": {
"mcp-server": "dist/index.js"
},
"scripts": {
"prepare": "npm run build",
"clean": "shx rm -rf dist",
"build": "npm run clean && tsc -p tsconfig.build.json && shx chmod +x dist/*.js",
"typecheck": "tsc --noEmit -p tsconfig.json",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"dev:stdio-example": "tsx examples/stdio-client.ts",
"dev:sse-example": "tsx examples/sse-client.ts",
"dev:shttp-example": "tsx examples/shttp-client.ts",
"inspector": "mcp-inspector",
"pretest": "npm run build",
"test": "VAPI_TOKEN=test-mock-token NODE_OPTIONS=--experimental-vm-modules jest --runInBand --testPathIgnorePatterns='.*-live\\.test\\.ts$'",
"test:unit": "VAPI_TOKEN=test-mock-token NODE_OPTIONS=--experimental-vm-modules jest --runInBand src/__tests__/mcp-tool-execution.test.ts src/__tests__/mcp-tools-list.test.ts",
"test:docs": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand src/__tests__/documentation-tools.test.ts",
"pretest:stdio": "npm run build",
"test:stdio": "VAPI_TOKEN=test-mock-token NODE_OPTIONS=--experimental-vm-modules jest --runInBand src/__tests__/mcp-stdio-compat.test.ts",
"pretest:package": "npm run build",
"test:package": "node scripts/package-smoke.mjs",
"test:live:readonly": "npm run build && RUN_VAPI_READONLY_TESTS=1 NODE_OPTIONS=--experimental-vm-modules jest --runInBand src/__tests__/mcp-server-readonly-live.test.ts",
"test:live:mutating": "npm run build && RUN_VAPI_MUTATING_TESTS=1 NODE_OPTIONS=--experimental-vm-modules jest --runInBand src/__tests__/mcp-server-mutating-live.test.ts"
},
"files": [
"dist",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map"
],
"dependencies": {
"@modelcontextprotocol/sdk": "1.26.0",
"@vapi-ai/server-sdk": "^0.5.2",
"dotenv": "^16.4.7",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "1.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.0",
"jest": "^29.7.0",
"shx": "^0.4.0",
"ts-jest": "^29.3.1",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
}
}