mac-lookup-mcp 1.0.0 → 1.0.1

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 CHANGED
@@ -18,3 +18,21 @@ node dist/index.js
18
18
  ```
19
19
 
20
20
  Vendor data comes from the public MAC Vendors API.
21
+
22
+ <!-- paywall -->
23
+ ## Premium tools
24
+
25
+ These tools need a license key:
26
+
27
+ * `oui_lookup`
28
+
29
+ Buy a key at https://mcp-marketplace.io/server/io-github-mrfentmen-mac-lookup-mcp and set it in your MCP client config:
30
+
31
+ ```json
32
+ "env": { "MCP_LICENSE_KEY": "mcp_live_..." }
33
+ ```
34
+
35
+ The key is checked against MCP Marketplace, cached for 24 hours, and keeps
36
+ working offline once one check has succeeded. Every other tool on this server
37
+ stays free.
38
+ <!-- /paywall -->
package/dist/api.js CHANGED
@@ -16,3 +16,33 @@ export async function vendorLookup(args) {
16
16
  const vendor = (await res.text()).trim();
17
17
  return `${mac} is assigned to ${vendor}`;
18
18
  }
19
+ // ---- muxC tools:
20
+ /**
21
+ * A MAC's first three octets are the OUI, which is what the IEEE actually
22
+ * assigns to a vendor. Looking that prefix up answers "who made this hardware"
23
+ * without needing a full address.
24
+ */
25
+ export async function ouiLookup(args) {
26
+ const raw = (args.oui ?? "").trim().toUpperCase().replace(/[^0-9A-F:.-]/g, "");
27
+ if (!raw)
28
+ throw new MacError("Provide an OUI prefix like 3C:07:54");
29
+ // Accept 3C:07:54, 3c0754, 3C-07-54 and the full six-octet form.
30
+ const digits = raw.replace(/[^0-9A-F]/g, "");
31
+ if (!/^[0-9A-F]{6}$/.test(digits) && !/^[0-9A-F]{12}$/.test(digits)) {
32
+ throw new MacError(`"${raw}" is not a MAC address or a 3-octet OUI prefix`);
33
+ }
34
+ const prefix = digits.slice(0, 6).match(/.{2}/g).join(":");
35
+ const res = await fetch(`${BASE}/${encodeURIComponent(prefix)}`, {
36
+ headers: { "User-Agent": UA, Accept: "text/plain" },
37
+ signal: AbortSignal.timeout(20000),
38
+ });
39
+ if (res.status === 429)
40
+ throw new MacError("MAC Vendors rate limit hit, wait and retry");
41
+ if (res.status === 404)
42
+ return `No vendor is registered for OUI ${prefix}`;
43
+ if (!res.ok)
44
+ throw new MacError(`MAC Vendors error ${res.status}`);
45
+ const vendor = (await res.text()).trim();
46
+ const shown = raw === prefix || digits.length === 6 ? prefix : `${prefix} (from ${raw})`;
47
+ return `OUI ${shown} is assigned to ${vendor}`;
48
+ }
@@ -0,0 +1,78 @@
1
+ // Premium tools on this server need a license key bought from MCP Marketplace.
2
+ // Buyers put the key in their MCP client config as MCP_LICENSE_KEY. Every tool
3
+ // that is not listed in PREMIUM keeps working without a key.
4
+ const SLUG = "mac-lookup-mcp";
5
+ // Tools that need a key. Everything else is free.
6
+ const PREMIUM = new Set([
7
+ "oui_lookup",
8
+ ]);
9
+ const BUY_URL = `https://mcp-marketplace.io/server/io-github-mrfentmen-${SLUG}`;
10
+ // The license check calls the marketplace's verify endpoint directly instead of
11
+ // using @mcp_marketplace/license. That SDK sends no `apikey` header, so every
12
+ // check it makes is rejected by Supabase before it reaches the function. The
13
+ // publishable key below is public by design - it ships in mcp-marketplace.io's
14
+ // own JavaScript and only ever reaches their licence check.
15
+ const DEFAULT_VERIFY_URL = "https://virupvwhtkpkjsiskckg.supabase.co/functions/v1/verify-key";
16
+ const PUBLISHABLE_KEY = "sb_publishable_BuqlW96Ke8C_zzJG-LQv1Q_YHi_r_4h";
17
+ const OK_CACHE_MS = 60 * 60 * 1000;
18
+ const BAD_CACHE_MS = 60 * 1000;
19
+ const seen = new Map();
20
+ const REASONS = {
21
+ missing_key: "no key is set",
22
+ invalid_format: "that key is not a valid MCP Marketplace key",
23
+ not_found: "that key was not found",
24
+ revoked: "that key has been revoked",
25
+ rotated: "that key was rotated, use your new one",
26
+ expired: "that key has expired, renew it",
27
+ rate_limited: "there were too many checks just now, try again shortly",
28
+ network_error: "the license server could not be reached",
29
+ };
30
+ function blocked(tool, reason) {
31
+ const why = REASONS[reason] ?? `the license server answered "${reason}"`;
32
+ return `"${tool}" needs a license key, but ${why}. ` +
33
+ `Set MCP_LICENSE_KEY in your MCP client config. Get a key: ${BUY_URL}`;
34
+ }
35
+ async function verify(key) {
36
+ const res = await fetch(process.env.MCP_LICENSE_VERIFY_URL || DEFAULT_VERIFY_URL, {
37
+ method: "POST",
38
+ headers: {
39
+ apikey: PUBLISHABLE_KEY,
40
+ Authorization: `Bearer ${PUBLISHABLE_KEY}`,
41
+ "Content-Type": "application/json",
42
+ },
43
+ body: JSON.stringify({ key, slug: SLUG }),
44
+ // an unusable key answers 400 with a JSON body, so read the body either way
45
+ signal: AbortSignal.timeout(15000),
46
+ });
47
+ const data = (await res.json());
48
+ if (typeof data?.valid !== "boolean")
49
+ return { valid: false, reason: "unexpected_response" };
50
+ return data;
51
+ }
52
+ /**
53
+ * Returns null when the caller may run the tool, or a short message telling
54
+ * them how to get a key.
55
+ *
56
+ * A good key is remembered for an hour, so a busy session does not hit the
57
+ * license server on every call and keeps working through a brief outage.
58
+ */
59
+ export async function premiumRequired(tool) {
60
+ if (!PREMIUM.has(tool))
61
+ return null;
62
+ const key = process.env.MCP_LICENSE_KEY;
63
+ if (!key)
64
+ return blocked(tool, "missing_key");
65
+ const hit = seen.get(key);
66
+ if (hit && Date.now() - hit.at < (hit.valid ? OK_CACHE_MS : BAD_CACHE_MS)) {
67
+ return hit.valid ? null : blocked(tool, hit.reason ?? "invalid");
68
+ }
69
+ let result;
70
+ try {
71
+ result = await verify(key);
72
+ }
73
+ catch {
74
+ result = { valid: false, reason: "network_error" };
75
+ }
76
+ seen.set(key, { ...result, at: Date.now() });
77
+ return result.valid ? null : blocked(tool, result.reason ?? "invalid");
78
+ }
package/dist/server.js CHANGED
@@ -1,6 +1,7 @@
1
1
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
2
2
  import { z } from "zod";
3
- import { vendorLookup } from "./api.js";
3
+ import { vendorLookup, ouiLookup } from "./api.js";
4
+ import { premiumRequired } from "./license.js";
4
5
  const text = (value) => ({ content: [{ type: "text", text: value }] });
5
6
  const textError = (t) => ({ content: [{ type: "text", text: t }], isError: true });
6
7
  const READ_ONLY = { readOnlyHint: true, openWorldHint: true };
@@ -20,5 +21,23 @@ export function createServer() {
20
21
  return textError(error(e));
21
22
  }
22
23
  });
24
+ server.registerTool("oui_lookup", {
25
+ title: "OUI lookup",
26
+ description: "Look up the vendor behind a MAC address's first three octets, the block the IEEE actually assigned.",
27
+ inputSchema: z.object({ oui: z.string().describe("OUI prefix like 3C:07:54, or a full MAC address.") }),
28
+ annotations: READ_ONLY,
29
+ }, async (args) => {
30
+ // ---- paywall: oui_lookup ----
31
+ const paywallMessage = await premiumRequired("oui_lookup");
32
+ if (paywallMessage)
33
+ return { content: [{ type: "text", text: paywallMessage }], isError: true };
34
+ // ---- paywall: end ----
35
+ try {
36
+ return text(await ouiLookup(args));
37
+ }
38
+ catch (e) {
39
+ return textError(error(e));
40
+ }
41
+ });
23
42
  return server;
24
43
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.0",
2
+ "version": "1.0.1",
3
3
  "type": "module",
4
4
  "repository": {
5
5
  "type": "git",