netintel-mcp 1.1.0 → 1.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.
Files changed (3) hide show
  1. package/README.md +12 -1
  2. package/dist/index.js +200 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # netintel-mcp
2
2
 
3
- MCP server for NetIntel — 25 network intelligence tools for AI agents.
3
+ MCP server for NetIntel — 36 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
 
@@ -58,6 +58,17 @@ Or add manually to your Claude Desktop config:
58
58
  | netintel_rss_parser | RSS/Atom feed parser | $0.001 |
59
59
  | netintel_username_check | Username availability (20+ platforms) | $0.003 |
60
60
  | netintel_wayback_lookup | Wayback Machine snapshots | $0.001 |
61
+ | netintel_ip_reputation | IP reputation via AbuseIPDB + AlienVault OTX | $0.010 |
62
+ | netintel_cron_parser | Parse cron expressions, explain schedule | $0.001 |
63
+ | netintel_currency_exchange | Convert between 32 currencies | $0.001 |
64
+ | netintel_github_intel | GitHub repo metrics and maintenance score | $0.001 |
65
+ | netintel_holidays | Public holidays by country | $0.001 |
66
+ | netintel_ip_geo | IP geolocation — country, city, ISP, ASN | $0.001 |
67
+ | netintel_jwt_inspector | Decode JWT tokens, flag security issues | $0.001 |
68
+ | netintel_lang_detect | Detect language with confidence scoring | $0.001 |
69
+ | netintel_npm_intel | npm package analysis and quality score | $0.001 |
70
+ | netintel_sitemap_parser | Parse XML sitemaps, extract URL metadata | $0.001 |
71
+ | netintel_url_safety | Check URL against URLhaus + heuristics | $0.002 |
61
72
 
62
73
  ## Payment
63
74
  All tools pay automatically via x402 on Base mainnet (USDC).
package/dist/index.js CHANGED
@@ -400,6 +400,206 @@ function registerTools(server, api) {
400
400
  return err(e);
401
401
  }
402
402
  });
403
+ // 37. Domain Age
404
+ server.tool("netintel_domain_age", "Determine a domain's age from registration data and archival history — returns creation date, age in years, first Wayback Machine capture, total archived snapshots, and a maturity signal so agents can assess domain trustworthiness and…", { domain: z.string() }, async ({ domain }) => {
405
+ try {
406
+ const res = await api.get("/domain-age/check", { params: { domain } });
407
+ return ok(res.data);
408
+ }
409
+ catch (e) {
410
+ return err(e);
411
+ }
412
+ });
413
+ // 38. Bulk Domain (POST)
414
+ server.tool("netintel_bulk_domain", "Check availability of many domain names across multiple TLDs in a single call — submit up to 50 name/TLD combinations and get back per-domain registration status, registrar, and expiry concurrently, so agents can scan an entire naming…", { names: z.array(z.string()), tlds: z.array(z.string()).optional() }, async ({ names, tlds }) => {
415
+ try {
416
+ const res = await api.post("/bulk-domain/check", { names, tlds });
417
+ return ok(res.data);
418
+ }
419
+ catch (e) {
420
+ return err(e);
421
+ }
422
+ });
423
+ // 39. Domain Appraise
424
+ server.tool("netintel_domain_appraise", "Estimate the market value tier of a domain name using transparent heuristics — length, TLD premium, dictionary-word presence, pronounceability, keyword value, and numeric/hyphen penalties — returns a value tier and 0-100 quality score so…", { domain: z.string() }, async ({ domain }) => {
425
+ try {
426
+ const res = await api.get("/domain-appraise/estimate", { params: { domain } });
427
+ return ok(res.data);
428
+ }
429
+ catch (e) {
430
+ return err(e);
431
+ }
432
+ });
433
+ // 40. Domain Report
434
+ server.tool("netintel_domain_report", "One call returns a complete intelligence profile for a domain — WHOIS registration, DNS records, SSL certificate, detected tech stack, and blacklist status — aggregated into a single risk-scored report so agents can fully vet a domain…", { domain: z.string() }, async ({ domain }) => {
435
+ try {
436
+ const res = await api.get("/domain-report/analyze", { params: { domain } });
437
+ return ok(res.data);
438
+ }
439
+ catch (e) {
440
+ return err(e);
441
+ }
442
+ });
443
+ // 41. Ip Risk
444
+ server.tool("netintel_ip_risk", "One call returns a complete risk profile for an IP address — geolocation, ASN/network owner, blacklist status across multiple DNSBLs, and proxy/VPN/hosting classification — aggregated into a single verdict so agents can make a block/allow…", { ip: z.string() }, async ({ ip }) => {
445
+ try {
446
+ const res = await api.get("/ip-risk/score", { params: { ip } });
447
+ return ok(res.data);
448
+ }
449
+ catch (e) {
450
+ return err(e);
451
+ }
452
+ });
453
+ // 42. Name Gen
454
+ server.tool("netintel_name_gen", "Generate brandable startup/product names from a keyword using prefixes, suffixes, blends, and phonetic patterns, then check .com (or any TLD) availability for each via DNS — returns available names ranked by a brandability heuristic so…", { keyword: z.string(), tld: z.string().optional(), limit: z.number().optional() }, async ({ keyword, tld, limit }) => {
455
+ try {
456
+ const res = await api.get("/name-gen/suggest", { params: params({ keyword, tld, limit }) });
457
+ return ok(res.data);
458
+ }
459
+ catch (e) {
460
+ return err(e);
461
+ }
462
+ });
463
+ // 43. Tld Price
464
+ server.tool("netintel_tld_price", "Compare registration, renewal, and transfer prices for a TLD across major registrars, or for a single domain name across many TLDs — returns sorted reference pricing so agents can find the cheapest place to register, budget domain…", { tld: z.string().optional(), name: z.string().optional() }, async ({ tld, name }) => {
465
+ try {
466
+ const res = await api.get("/tld-price/compare", { params: params({ tld, name }) });
467
+ return ok(res.data);
468
+ }
469
+ catch (e) {
470
+ return err(e);
471
+ }
472
+ });
473
+ // 44. Typosquat
474
+ server.tool("netintel_typosquat", "Generate common typo and look-alike variations of a domain and check which are already registered — catches character swaps, omissions, additions, homoglyphs, and alternate TLDs so agents can detect typosquatting and brand-impersonation…", { domain: z.string(), limit: z.number().optional() }, async ({ domain, limit }) => {
475
+ try {
476
+ const res = await api.get("/typosquat/scan", { params: params({ domain, limit }) });
477
+ return ok(res.data);
478
+ }
479
+ catch (e) {
480
+ return err(e);
481
+ }
482
+ });
483
+ // 45. Classify (POST)
484
+ server.tool("netintel_classify", "Classify text into caller-supplied categories using Claude Haiku — zero-shot classification where the agent provides the label set and gets back the best-matching category with confidence and per-label scores, so agents can route, tag, and…", { text: z.string(), labels: z.array(z.string()), multi_label: z.boolean().optional() }, async ({ text, labels, multi_label }) => {
485
+ try {
486
+ const res = await api.post("/classify", { text, labels, multi_label });
487
+ return ok(res.data);
488
+ }
489
+ catch (e) {
490
+ return err(e);
491
+ }
492
+ });
493
+ // 46. Content Moderate (POST)
494
+ server.tool("netintel_content_moderate", "Moderate text content using Claude Haiku — flags categories like harassment, hate, sexual content, violence, self-harm, and spam with per-category severity and an overall allow/flag/block recommendation, so agents can screen user-generated…", { text: z.string() }, async ({ text }) => {
495
+ try {
496
+ const res = await api.post("/content-moderate", { text });
497
+ return ok(res.data);
498
+ }
499
+ catch (e) {
500
+ return err(e);
501
+ }
502
+ });
503
+ // 47. Entity Extract (POST)
504
+ server.tool("netintel_entity_extract", "Extract named entities from text using Claude Haiku — people, organizations, locations, dates, emails, URLs, money amounts, and products — returned as structured typed arrays so agents can pull structured signals out of unstructured text…", { text: z.string(), types: z.array(z.string()).optional() }, async ({ text, types }) => {
505
+ try {
506
+ const res = await api.post("/entity-extract", { text, types });
507
+ return ok(res.data);
508
+ }
509
+ catch (e) {
510
+ return err(e);
511
+ }
512
+ });
513
+ // 48. Sentiment (POST)
514
+ server.tool("netintel_sentiment", "Analyze the sentiment of text using Claude Haiku — returns overall polarity (positive/negative/neutral/mixed), a -1 to +1 score, detected emotions, and optional per-aspect sentiment, so agents can gauge tone in reviews, messages, and…", { text: z.string(), aspects: z.array(z.string()).optional() }, async ({ text, aspects }) => {
515
+ try {
516
+ const res = await api.post("/sentiment/analyze", { text, aspects });
517
+ return ok(res.data);
518
+ }
519
+ catch (e) {
520
+ return err(e);
521
+ }
522
+ });
523
+ // 49. Text Summarize (POST)
524
+ server.tool("netintel_text_summarize", "Summarize any text or web page into a concise summary plus key bullet points using Claude Haiku — accepts raw text or a URL (which it fetches and extracts), enforces an input cap, and returns a clean structured summary so agents can…", { text: z.string().optional(), url: z.string().optional(), max_points: z.number().optional() }, async ({ text, url, max_points }) => {
525
+ try {
526
+ const res = await api.post("/text-summarize", { text, url, max_points });
527
+ return ok(res.data);
528
+ }
529
+ catch (e) {
530
+ return err(e);
531
+ }
532
+ });
533
+ // 50. Translate (POST)
534
+ server.tool("netintel_translate", "Translate up to 2000 words between languages using Claude Haiku — auto-detects source, supports 30+ target languages, preserves formatting, for larger documents and articles. For short snippets use the cheaper /translate/short.", { text: z.string(), target: z.string(), source: z.string().optional() }, async ({ text, target, source }) => {
535
+ try {
536
+ const res = await api.post("/translate/long", { text, target, source });
537
+ return ok(res.data);
538
+ }
539
+ catch (e) {
540
+ return err(e);
541
+ }
542
+ });
543
+ // 51. Translate (POST)
544
+ server.tool("netintel_translate_short", "Translate up to 500 words between languages using Claude Haiku — auto-detects source language, supports 30+ target languages, preserves formatting, and returns the translation with detected source so agents can localize short content…", { text: z.string(), target: z.string(), source: z.string().optional() }, async ({ text, target, source }) => {
545
+ try {
546
+ const res = await api.post("/translate/short", { text, target, source });
547
+ return ok(res.data);
548
+ }
549
+ catch (e) {
550
+ return err(e);
551
+ }
552
+ });
553
+ // 52. Domain Due Diligence
554
+ server.tool("netintel_domain_due_diligence", "One call combines domain availability, heuristic value appraisal, and TLD pricing into a single acquisition brief — tells an agent whether a name is available, what it's worth, and what it costs across TLDs, concurrently and with graceful…", { domain: z.string() }, async ({ domain }) => {
555
+ try {
556
+ const res = await api.get("/domain-due-diligence", { params: { domain } });
557
+ return ok(res.data);
558
+ }
559
+ catch (e) {
560
+ return err(e);
561
+ }
562
+ });
563
+ // 53. Domain Report
564
+ server.tool("netintel_domain_report_full", "One premium call returns a complete six-part domain profile — DNS records, SSL certificate, WHOIS registration, cloud fingerprint, technology stack, and security headers — each section run concurrently with graceful partial-failure…", { domain: z.string() }, async ({ domain }) => {
565
+ try {
566
+ const res = await api.get("/domain-report/full", { params: { domain } });
567
+ return ok(res.data);
568
+ }
569
+ catch (e) {
570
+ return err(e);
571
+ }
572
+ });
573
+ // 54. Email Report
574
+ server.tool("netintel_email_report", "One call combines domain email authentication (SPF/DKIM/DMARC), email-address intelligence (deliverability, disposable/role detection), and an optional password breach check into a single email-trust report — each section run concurrently…", { email: z.string(), password: z.string().optional() }, async ({ email, password }) => {
575
+ try {
576
+ const res = await api.get("/email-report/full", { params: params({ email, password }) });
577
+ return ok(res.data);
578
+ }
579
+ catch (e) {
580
+ return err(e);
581
+ }
582
+ });
583
+ // 55. Ip Report
584
+ server.tool("netintel_ip_report", "One premium call returns a complete five-part IP profile — geolocation, ASN/network ownership, multi-DNSBL blacklist status, threat reputation, and an aggregate risk verdict — run concurrently with graceful partial-failure handling, so…", { ip: z.string() }, async ({ ip }) => {
585
+ try {
586
+ const res = await api.get("/ip-report/full", { params: { ip } });
587
+ return ok(res.data);
588
+ }
589
+ catch (e) {
590
+ return err(e);
591
+ }
592
+ });
593
+ // 56. Url Safety
594
+ server.tool("netintel_url_safety_full", "One call vets a URL end to end — traces its full redirect chain, checks it against malware/phishing databases, audits its security headers, and inspects its SSL certificate — concurrent with graceful partial-failure handling, so agents get…", { url: z.string() }, async ({ url }) => {
595
+ try {
596
+ const res = await api.get("/url-safety/full", { params: { url } });
597
+ return ok(res.data);
598
+ }
599
+ catch (e) {
600
+ return err(e);
601
+ }
602
+ });
403
603
  }
404
604
  async function main() {
405
605
  const api = await createClient();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "netintel-mcp",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "mcpName": "io.github.kjgueye/netintel-mcp",
5
5
  "repository": {
6
6
  "type": "git",