-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.31 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
{
"name": "voyp-mcp",
"version": "0.1.0",
"description": "Voyp Model Context Protocol server",
"author": "Control Space BV",
"license": "MIT",
"type": "module",
"bin": {
"voyp-mcp": "build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"voyp-mcp",
"voyp",
"mcp",
"model-context-protocol",
"mcp-server",
"automation",
"automation-tools",
"calls",
"call-assistant",
"call-agent",
"call-automation",
"call-center",
"call-center-automation",
"call-center-tools",
"claude",
"claude-desktop",
"goose",
"llm",
"ai",
"ai-automation",
"ai-tools",
"conversational-ai",
"artificial-intelligence",
"anthropic",
"openai",
"chatgpt"
],
"repository": {
"type": "git",
"url": "git+https://github.com/paulotaylor/voyp-mcp.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"axios": "^1.7.8",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
}
}