vpndetection-mcp 5.0.0 → 5.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 +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -52,7 +52,7 @@ A key unlocks the provider name, the classification databases and the proxy fami
|
|
|
52
52
|
|---|---|
|
|
53
53
|
| `lookup_ip` | Classify one address. |
|
|
54
54
|
| `lookup_ips` | Classify up to 100 addresses in one call, keyed by address. |
|
|
55
|
-
| `
|
|
55
|
+
| `my_entitlement` | What this key is entitled to and what it has spent: plan, field tier, requests so far, allowance, and when it resets. |
|
|
56
56
|
| `list_databases` | The databases your organization is licensed for. |
|
|
57
57
|
| `database_metadata` | A database's columns, sample rows, row count, build date and file sizes. |
|
|
58
58
|
| `database_checksum` | The published digests for one database file. |
|
|
@@ -60,7 +60,7 @@ A key unlocks the provider name, the classification databases and the proxy fami
|
|
|
60
60
|
|
|
61
61
|
Every tool is read-only. There is deliberately no download tool: the databases run to several GB, which is not something an agent should pull into a conversation. Fetch them with the [client libraries](https://github.com/vpndetection-io) or the API instead.
|
|
62
62
|
|
|
63
|
-
**There is deliberately no `my_ip` tool, although every client library has one.** Over a hosted transport the address our edge observes belongs to whatever proxied the call - Claude's infrastructure, not the person asking - so the tool would answer confidently and wrongly for the only reading anyone would put on it. `
|
|
63
|
+
**There is deliberately no `my_ip` tool, although every client library has one.** Over a hosted transport the address our edge observes belongs to whatever proxied the call - Claude's infrastructure, not the person asking - so the tool would answer confidently and wrongly for the only reading anyone would put on it. `my_entitlement` has no such problem and is the same answer from any transport, because it describes the credential rather than the connection. A test pins the tool's absence so it cannot be added back by accident.
|
|
64
64
|
|
|
65
65
|
Usage counts against the anniversary of the subscription, not the calendar month and not the billing period. A null `hard_limit` means we never stop serving; it is not a limit of zero.
|
|
66
66
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vpndetection-mcp",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "Official MCP server for the VPNDetection API. Gives an LLM agent VPN, proxy, Tor, hosting and CDN detection for any IP address.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@modelcontextprotocol/sdk": "^1.20.2",
|
|
53
|
-
"vpndetection": "^5.
|
|
53
|
+
"vpndetection": "^5.1.0",
|
|
54
54
|
"zod": "^4.1.12"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@mslmio/eslint-config": "^1.0.
|
|
57
|
+
"@mslmio/eslint-config": "^1.0.1",
|
|
58
58
|
"@types/node": "^26.2.0",
|
|
59
59
|
"ajv": "^8.20.0",
|
|
60
60
|
"ajv-formats": "^3.0.1",
|