netintel-mcp 1.1.18 → 1.1.20

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
@@ -1,6 +1,6 @@
1
1
  # netintel-mcp
2
2
 
3
- MCP server for NetIntel — 71 network intelligence tools for AI agents.
3
+ MCP server for NetIntel — 72 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
- 71 pay-per-call tools across DNS, SSL/TLS, WHOIS & domains, email security, IP intelligence, web & content, OSINT, AI text processing, and bundled reports.
34
+ 72 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 | Extract structured data from any unstructured text into your own JSON… | $0.10 |
44
+ | netintel_schema_parse | Extract structured data from any unstructured text into your own JSON… | $0.05 |
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,10 +102,11 @@ 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 | Event extraction / event parsing — turn any caption, announcement… | $0.10 |
105
+ | netintel_event_extract | Event extraction / event parsing — turn any caption, announcement… | $0.05 |
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
108
  | netintel_convert | Convert any physical measurement — length, mass, volume, temperature… | $0.01 |
109
+ | netintel_domain | Composite 0-100 trust/risk score for a domain in one call — blends… | $0.10 |
109
110
 
110
111
  ## Payment
111
112
  All tools pay automatically via x402 on Base mainnet (USDC).
package/dist/index.js CHANGED
@@ -770,6 +770,16 @@ function registerTools(server, api) {
770
770
  return err(e);
771
771
  }
772
772
  });
773
+ // 74. Domain (POST)
774
+ server.tool("netintel_domain", "Composite 0-100 trust/risk score for a domain in one call — blends domain age, SSL/TLS, DNS health, email auth (SPF/DKIM/DMARC), IP reputation, and certificate transparency into a single \"safe to do business with this domain?\" verdict with…", { domain: z.string() }, async ({ domain }) => {
775
+ try {
776
+ const res = await api.post("/domain/vendor-risk", { domain });
777
+ return ok(res.data);
778
+ }
779
+ catch (e) {
780
+ return err(e);
781
+ }
782
+ });
773
783
  }
774
784
  async function main() {
775
785
  const api = await createClient();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "netintel-mcp",
3
- "version": "1.1.18",
3
+ "version": "1.1.20",
4
4
  "mcpName": "io.github.kjgueye/netintel-mcp",
5
5
  "repository": {
6
6
  "type": "git",