@voidmob/mcp 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +138 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +22 -0
- package/dist/mock-data/esim.d.ts +17 -0
- package/dist/mock-data/esim.js +30 -0
- package/dist/mock-data/proxy.d.ts +17 -0
- package/dist/mock-data/proxy.js +29 -0
- package/dist/mock-data/sms.d.ts +13 -0
- package/dist/mock-data/sms.js +24 -0
- package/dist/sandbox/state.d.ts +75 -0
- package/dist/sandbox/state.js +42 -0
- package/dist/tools/esim.d.ts +2 -0
- package/dist/tools/esim.js +218 -0
- package/dist/tools/orders.d.ts +2 -0
- package/dist/tools/orders.js +81 -0
- package/dist/tools/proxy.d.ts +2 -0
- package/dist/tools/proxy.js +232 -0
- package/dist/tools/sms.d.ts +2 -0
- package/dist/tools/sms.js +158 -0
- package/dist/tools/wallet.d.ts +2 -0
- package/dist/tools/wallet.js +66 -0
- package/dist/utils/format.d.ts +12 -0
- package/dist/utils/format.js +55 -0
- package/dist/utils/validation.d.ts +6 -0
- package/dist/utils/validation.js +32 -0
- package/package.json +46 -0
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@voidmob/mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Mobile proxies, non-VoIP SMS verifications, and global eSIMs for AI agents and MCP clients.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"voidmob-mcp": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "./dist/index.js",
|
|
10
|
+
"files": ["dist", "README.md"],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "tsc",
|
|
13
|
+
"postbuild": "chmod +x dist/index.js",
|
|
14
|
+
"dev": "tsc --watch",
|
|
15
|
+
"start": "node dist/index.js",
|
|
16
|
+
"prepublishOnly": "npm run build"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"mcp",
|
|
20
|
+
"mcp-server",
|
|
21
|
+
"sms",
|
|
22
|
+
"proxy",
|
|
23
|
+
"esim",
|
|
24
|
+
"privacy"
|
|
25
|
+
],
|
|
26
|
+
"homepage": "https://voidmob.com",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "https://github.com/voidmobcom/voidmob-mcp"
|
|
30
|
+
},
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public"
|
|
34
|
+
},
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=20"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
40
|
+
"zod": "^4.3.6"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@types/node": "^25.2.3",
|
|
44
|
+
"typescript": "^5.9.3"
|
|
45
|
+
}
|
|
46
|
+
}
|