netintel-mcp 1.1.20 → 1.1.22

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 — 72 network intelligence tools for AI agents.
3
+ MCP server for NetIntel — 73 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
- 72 pay-per-call tools across DNS, SSL/TLS, WHOIS & domains, email security, IP intelligence, web & content, OSINT, AI text processing, and bundled reports.
34
+ 73 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
  |------|-------------|-------|
@@ -63,6 +63,7 @@ Or add manually to your Claude Desktop config:
63
63
  | netintel_ip_reputation | Check an IP address against AbuseIPDB and AlienVault OTX threat feeds… | $0.05 |
64
64
  | netintel_cron_parser | Parse any cron expression into a human-readable explanation, validate… | $0.03 |
65
65
  | netintel_currency_exchange | Convert any amount between 32 fiat currencies (live European Central… | $0.01 |
66
+ | netintel_github_intel | Fetch public metadata for any GitHub repository — stars, forks, open… | $0.03 |
66
67
  | netintel_holidays | Look up public holidays for any country and year, check whether a… | $0.005 |
67
68
  | netintel_ip_geo | IP geolocation lookup (geoip / IP location API) — geolocate any IPv4 or… | $0.002 |
68
69
  | netintel_jwt_inspector | Decode and inspect any JWT token — extracts header algorithm, payload… | $0.005 |
package/dist/index.js CHANGED
@@ -740,17 +740,7 @@ function registerTools(server, api) {
740
740
  return err(e);
741
741
  }
742
742
  });
743
- // 71. Ai Image Assets (POST)
744
- server.tool("netintel_ai_image_assets", "Generate agent-ready image assets — app icons, logos, social graphics, blog thumbnails, product mockups, banners, OG/web images. Claude first does prompt-engineering for the chosen use case (folding in style and brand colors), screens for…", { prompt: z.string(), use_case: z.string().optional(), style: z.string().optional(), brand_colors: z.array(z.string()).optional(), aspect_ratio: z.string().optional(), quality: z.string().optional(), n: z.number().optional(), provider: z.string().optional() }, async ({ prompt, use_case, style, brand_colors, aspect_ratio, quality, n, provider }) => {
745
- try {
746
- const res = await api.post("/ai-image-assets/generate", { prompt, use_case, style, brand_colors, aspect_ratio, quality, n, provider });
747
- return ok(res.data);
748
- }
749
- catch (e) {
750
- return err(e);
751
- }
752
- });
753
- // 72. Ai Image (POST)
743
+ // 71. Ai Image (POST)
754
744
  server.tool("netintel_ai_image", "Generate agent-ready image assets (icons, logos, social graphics, thumbnails, banners) with gpt-image-1. Claude refines the prompt, screens content, adds alt text and a score. Returns image_url as a base64 PNG data URI. Flat $0.25; n=1…", { prompt: z.string(), use_case: z.string().optional(), aspect_ratio: z.string().optional(), style: z.string().optional(), brand_colors: z.array(z.string()).optional() }, async ({ prompt, use_case, aspect_ratio, style, brand_colors }) => {
755
745
  try {
756
746
  const res = await api.post("/ai-image/generate", { prompt, use_case, aspect_ratio, style, brand_colors });
@@ -760,7 +750,7 @@ function registerTools(server, api) {
760
750
  return err(e);
761
751
  }
762
752
  });
763
- // 73. Convert
753
+ // 72. Convert
764
754
  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
755
  try {
766
756
  const res = await api.get("/convert", { params: params({ value, from, to, system, base }) });
@@ -770,7 +760,7 @@ function registerTools(server, api) {
770
760
  return err(e);
771
761
  }
772
762
  });
773
- // 74. Domain (POST)
763
+ // 73. Domain (POST)
774
764
  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
765
  try {
776
766
  const res = await api.post("/domain/vendor-risk", { domain });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "netintel-mcp",
3
- "version": "1.1.20",
3
+ "version": "1.1.22",
4
4
  "mcpName": "io.github.kjgueye/netintel-mcp",
5
5
  "repository": {
6
6
  "type": "git",