@mackody/quickenrich-mcp 0.1.1 → 0.1.2

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.
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "quickenrich-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Standalone MCP server and CLI for Quick Enrich lead enrichment APIs.",
5
5
  "author": {
6
6
  "name": "Cody Robertson"
7
7
  },
8
8
  "homepage": "https://app.quickenrich.io/docs",
9
9
  "repository": "https://github.com/codyrobertson/quickenrich-mcp",
10
- "license": "UNLICENSED",
10
+ "license": "SEE LICENSE IN LICENSE.md",
11
11
  "keywords": [
12
12
  "quickenrich",
13
13
  "quick-enrich",
package/LICENSE.md ADDED
@@ -0,0 +1,59 @@
1
+ # Quick Enrich MCP Restricted License
2
+
3
+ Copyright (c) 2026 Cody Robertson. All rights reserved.
4
+
5
+ This software is not open source. The package is published for controlled installation, review, and internal evaluation only. No rights are granted except the limited rights expressly stated in this license.
6
+
7
+ ## 1. Limited Permitted Use
8
+
9
+ You may install, run, inspect, and test this software solely for internal evaluation, internal development, and integration planning.
10
+
11
+ This permission is personal, non-exclusive, non-transferable, revocable, and non-sublicensable.
12
+
13
+ ## 2. No Commercial, Production, or Payment-Gated Use
14
+
15
+ You may not use this software, in whole or in part, for any commercial, production, revenue-generating, customer-facing, or payment-gated purpose without prior written permission from Cody Robertson or an authorized Mackody representative.
16
+
17
+ Prohibited uses include, without limitation:
18
+
19
+ - integrating this software into any commercial product, SaaS, hosted service, agent platform, automation platform, marketplace listing, CRM, enrichment platform, prospecting platform, customer deliverable, or managed service;
20
+ - making this software available behind subscriptions, paid seats, usage-based billing, credits, checkout, payment processing, paid API access, or any other monetization mechanism;
21
+ - using this software to provide lead enrichment, prospecting, data enrichment, automation, implementation, consulting, or agency services to third parties;
22
+ - bundling, embedding, white-labeling, reselling, sublicensing, leasing, renting, or otherwise commercially distributing this software;
23
+ - using this software to compete with, replace, or commercially replicate Quick Enrich, Mackody, or their related services.
24
+
25
+ ## 3. No Redistribution
26
+
27
+ You may not copy, publish, mirror, redistribute, repackage, upload, or make this software available to any third party except as expressly authorized in writing.
28
+
29
+ You may not remove, obscure, or alter copyright notices, license notices, package metadata, or attribution notices.
30
+
31
+ ## 4. API, Credentials, and Rate Limits
32
+
33
+ This license does not grant access to Quick Enrich APIs, data, credentials, trademarks, or services. You must use your own authorized Quick Enrich API key and comply with Quick Enrich's API documentation, account terms, data rules, and published rate limits.
34
+
35
+ You may not use this software to bypass, evade, overload, or work around Quick Enrich limits, billing, credit accounting, authentication, authorization, or abuse controls.
36
+
37
+ ## 5. Ownership
38
+
39
+ Cody Robertson and/or Mackody retain all right, title, and interest in and to this software, including all intellectual property rights. No implied licenses are granted.
40
+
41
+ Feedback, suggestions, bug reports, or proposed changes may be used without restriction or compensation unless separately agreed in writing.
42
+
43
+ ## 6. Termination
44
+
45
+ Any use outside this license automatically terminates your rights immediately. Upon termination, you must stop using the software and delete all copies in your possession or control.
46
+
47
+ ## 7. Commercial Permission
48
+
49
+ Commercial, production, hosted, payment-gated, customer-facing, or third-party use requires a separate written license or written approval from Cody Robertson or an authorized Mackody representative before use begins.
50
+
51
+ ## 8. Disclaimer
52
+
53
+ THE SOFTWARE IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AVAILABILITY, ACCURACY, OR ERROR-FREE OPERATION.
54
+
55
+ TO THE MAXIMUM EXTENT PERMITTED BY LAW, CODY ROBERTSON, MACKODY, AND THEIR AFFILIATES WILL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES, OR FOR LOST PROFITS, LOST REVENUE, LOST DATA, BUSINESS INTERRUPTION, API CHARGES, CREDIT USAGE, OR PROCUREMENT OF SUBSTITUTE SERVICES.
56
+
57
+ ## 9. No Waiver
58
+
59
+ Failure to enforce any provision of this license is not a waiver. If any provision is held unenforceable, the remaining provisions remain in effect.
package/README.md CHANGED
@@ -6,6 +6,12 @@ Standalone MCP server and CLI for Quick Enrich's documented APIs. It is built fo
6
6
 
7
7
  Docs source: [Quick Enrich API Documentation](https://app.quickenrich.io/docs).
8
8
 
9
+ ## License
10
+
11
+ This package is not open source. It is published under the [Quick Enrich MCP Restricted License](./LICENSE.md) for controlled internal evaluation only.
12
+
13
+ Commercial, production, hosted, payment-gated, customer-facing, SaaS, resale, agency, consulting, marketplace, or third-party service integrations require prior written permission from Cody Robertson or an authorized Mackody representative.
14
+
9
15
  ## Install From NPM
10
16
 
11
17
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mackody/quickenrich-mcp",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "description": "Standalone MCP server and CLI for Quick Enrich lead enrichment APIs.",
6
6
  "bin": {
@@ -15,6 +15,7 @@
15
15
  "agents/",
16
16
  "scripts/",
17
17
  "skills/",
18
+ "LICENSE.md",
18
19
  "README.md"
19
20
  ],
20
21
  "scripts": {
@@ -36,5 +37,5 @@
36
37
  "engines": {
37
38
  "node": ">=20"
38
39
  },
39
- "license": "UNLICENSED"
40
+ "license": "SEE LICENSE IN LICENSE.md"
40
41
  }