glippy-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/LICENSE +64 -0
- package/README.md +734 -0
- package/package.json +43 -0
- package/src/geo-checker.js +4870 -0
- package/src/index.js +3318 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
Glippy MCP Server - End User License Agreement
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Jan-Willem Bobbink. All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software ("Glippy MCP Server") is proprietary and is made available
|
|
6
|
+
through the npm registry for convenience of installation. It is NOT open
|
|
7
|
+
source software.
|
|
8
|
+
|
|
9
|
+
1. License Grant
|
|
10
|
+
|
|
11
|
+
Subject to your acceptance of and continued compliance with this Agreement,
|
|
12
|
+
and subject to payment for a valid Glippy MCP license key, Glippy grants
|
|
13
|
+
you a non-exclusive, non-transferable, revocable license to install and
|
|
14
|
+
use the Software solely for your own internal business or personal use.
|
|
15
|
+
|
|
16
|
+
A valid, paid license key (format: GLMCP-XXXX-XXXX-XXXX) is required to
|
|
17
|
+
use the Software. License keys may be purchased at https://glippy.dev.
|
|
18
|
+
Running the Software without a valid license key, or in a manner that
|
|
19
|
+
circumvents license verification, is not permitted.
|
|
20
|
+
|
|
21
|
+
2. Restrictions
|
|
22
|
+
|
|
23
|
+
You may NOT:
|
|
24
|
+
(a) redistribute, sublicense, resell, rent, lease, or lend the Software;
|
|
25
|
+
(b) modify, adapt, translate, or create derivative works of the Software;
|
|
26
|
+
(c) reverse engineer, decompile, or disassemble the Software, except to
|
|
27
|
+
the extent such restriction is prohibited by applicable law;
|
|
28
|
+
(d) remove or alter any proprietary notices, labels, or license
|
|
29
|
+
verification mechanisms in the Software;
|
|
30
|
+
(e) use the Software to build a competing product or service;
|
|
31
|
+
(f) share, publish, or transfer your license key to any third party.
|
|
32
|
+
|
|
33
|
+
3. Ownership
|
|
34
|
+
|
|
35
|
+
All right, title, and interest in and to the Software, including all
|
|
36
|
+
intellectual property rights, remain with Jan-Willem Bobbink. No rights
|
|
37
|
+
are granted except as expressly set forth in this Agreement.
|
|
38
|
+
|
|
39
|
+
4. Termination
|
|
40
|
+
|
|
41
|
+
This license terminates automatically if you breach any term of this
|
|
42
|
+
Agreement, or if your license key expires, is revoked, or is not renewed.
|
|
43
|
+
Upon termination, you must cease all use of the Software and delete all
|
|
44
|
+
copies in your possession.
|
|
45
|
+
|
|
46
|
+
5. Disclaimer of Warranty
|
|
47
|
+
|
|
48
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
49
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
50
|
+
FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT.
|
|
51
|
+
|
|
52
|
+
6. Limitation of Liability
|
|
53
|
+
|
|
54
|
+
IN NO EVENT SHALL THE AUTHOR OR COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM,
|
|
55
|
+
DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR
|
|
56
|
+
OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR
|
|
57
|
+
THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
58
|
+
|
|
59
|
+
7. Governing Law
|
|
60
|
+
|
|
61
|
+
This Agreement is governed by the laws of the Netherlands, without regard
|
|
62
|
+
to its conflict of laws principles.
|
|
63
|
+
|
|
64
|
+
For license purchases or enquiries: https://glippy.dev
|