-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.08 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
{
"name": "sv-number-mcp",
"version": "1.0.2",
"mcpName": "io.github.sv-number/mcp-server",
"description": "Phone numbers for AI agents: order a private number in any country, read the SMS verification code, hand it back.",
"license": "MIT",
"homepage": "https://sms-verification-number.com/en/number-for-ai-agents/",
"repository": {
"type": "git",
"url": "git+https://github.com/sv-number/mcp-server.git"
},
"bugs": {
"url": "https://github.com/sv-number/mcp-server/issues"
},
"type": "module",
"bin": {
"sv-number-mcp": "dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"start": "node dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.5.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai-agents",
"sms",
"otp",
"phone-verification"
]
}