netintel-mcp 1.1.13 → 1.1.15
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 +5 -4
- package/dist/index.js +10 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# netintel-mcp
|
|
2
2
|
|
|
3
|
-
MCP server for NetIntel —
|
|
3
|
+
MCP server for NetIntel — 71 network intelligence tools for AI agents.
|
|
4
4
|
DNS, SSL, WHOIS, email security, cloud fingerprinting, OSINT and more.
|
|
5
5
|
Pay-per-call via x402 on Base mainnet. No API keys needed — just a wallet with USDC.
|
|
6
6
|
|
|
@@ -31,7 +31,7 @@ Or add manually to your Claude Desktop config:
|
|
|
31
31
|
|
|
32
32
|
## Tools
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
71 pay-per-call tools across DNS, SSL/TLS, WHOIS & domains, email security, IP intelligence, web & content, OSINT, AI text processing, and bundled reports.
|
|
35
35
|
|
|
36
36
|
| Tool | Description | Price |
|
|
37
37
|
|------|-------------|-------|
|
|
@@ -41,7 +41,7 @@ Or add manually to your Claude Desktop config:
|
|
|
41
41
|
| netintel_security_headers | Fetches a URL and evaluates 10 security-critical response headers (CSP… | $0.01 |
|
|
42
42
|
| netintel_email_auth | Email deliverability & domain security check — validates SPF, DKIM… | $0.002 |
|
|
43
43
|
| netintel_cloud_fingerprint | Fingerprints a domain's cloud infrastructure by probing DNS records… | $0.01 |
|
|
44
|
-
| netintel_schema_parse |
|
|
44
|
+
| netintel_schema_parse | Extract structured data from any unstructured text into your own JSON… | $0.10 |
|
|
45
45
|
| netintel_asn_lookup | Resolves an IP address or domain to its Autonomous System Number (ASN)… | $0.03 |
|
|
46
46
|
| netintel_whois_lookup | WHOIS domain lookup via RDAP — registrar, creation/expiry/updated… | $0.003 |
|
|
47
47
|
| netintel_cert_transparency | Query the crt.sh certificate transparency log database to enumerate all… | $0.01 |
|
|
@@ -102,9 +102,10 @@ Or add manually to your Claude Desktop config:
|
|
|
102
102
|
| netintel_money | Normalize any messy money string into a typed decimal amount plus ISO… | $0.01 |
|
|
103
103
|
| netintel_calendar | Turn event fields into a valid RFC 5545 .ics calendar file — handles… | $0.005 |
|
|
104
104
|
| netintel_event_classify | Cheap, fast "is this a dateable event?" filter for social and web text… | $0.02 |
|
|
105
|
-
| netintel_event_extract |
|
|
105
|
+
| netintel_event_extract | Event extraction / event parsing — turn any caption, announcement… | $0.10 |
|
|
106
106
|
| netintel_messages | OpenAI-compatible chat completions over x402, answered by Claude Sonnet… | $0.06 |
|
|
107
107
|
| netintel_ai_image | Generate agent-ready image assets (icons, logos, social graphics… | $0.25 |
|
|
108
|
+
| netintel_convert | Convert any physical measurement to another — length, mass, volume… | $0.01 |
|
|
108
109
|
|
|
109
110
|
## Payment
|
|
110
111
|
All tools pay automatically via x402 on Base mainnet (USDC).
|
package/dist/index.js
CHANGED
|
@@ -760,6 +760,16 @@ function registerTools(server, api) {
|
|
|
760
760
|
return err(e);
|
|
761
761
|
}
|
|
762
762
|
});
|
|
763
|
+
// 73. Convert
|
|
764
|
+
server.tool("netintel_convert", "Convert any physical measurement to another — length, mass, volume, temperature, area, speed, pressure, energy, time, data, and angle. Auto-detects the unit category, handles US/imperial ambiguity, and returns the exact converted value…", { value: z.number(), from: z.string(), to: z.string(), system: z.string().optional(), base: z.string().optional() }, async ({ value, from, to, system, base }) => {
|
|
765
|
+
try {
|
|
766
|
+
const res = await api.get("/convert", { params: params({ value, from, to, system, base }) });
|
|
767
|
+
return ok(res.data);
|
|
768
|
+
}
|
|
769
|
+
catch (e) {
|
|
770
|
+
return err(e);
|
|
771
|
+
}
|
|
772
|
+
});
|
|
763
773
|
}
|
|
764
774
|
async function main() {
|
|
765
775
|
const api = await createClient();
|