-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.64 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.64 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
{
"name": "virtualsms-mcp",
"mcpName": "io.github.virtualsms-io/sms",
"version": "1.0.10",
"description": "MCP server for VirtualSMS — receive SMS verification codes with AI agents. Virtual phone numbers and number rentals for WhatsApp, Telegram, Google & 200+ services. SMS-Activate alternative.",
"main": "dist/index.js",
"bin": {
"virtualsms-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"sms",
"sms-verification",
"sms-activate",
"virtual-number",
"virtual-phone-number",
"phone-verification",
"receive-sms",
"ai-agent",
"claude",
"cursor",
"temporary-phone-number",
"whatsapp-verification",
"telegram-verification",
"virtualsms",
"phone-number-rental",
"long-term-virtual-number",
"sms-rental"
],
"author": "VirtualSMS",
"license": "MIT",
"homepage": "https://virtualsms.io",
"repository": {
"type": "git",
"url": "git+https://github.com/virtualsms-io/mcp-server.git"
},
"bugs": {
"url": "https://github.com/virtualsms-io/mcp-server/issues"
},
"engines": {
"node": ">=18"
},
"type": "module",
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"smithery.yaml"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.7.0",
"ws": "^8.18.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"esbuild": "^0.27.4",
"typescript": "^5.5.0"
}
}