netintel-mcp 1.1.14 → 1.1.16

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 — 70 network intelligence tools for AI agents.
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
- 70 pay-per-call tools across DNS, SSL/TLS, WHOIS & domains, email security, IP intelligence, web & content, OSINT, AI text processing, and bundled reports.
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
  |------|-------------|-------|
@@ -105,6 +105,7 @@ Or add manually to your Claude Desktop config:
105
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();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "netintel-mcp",
3
- "version": "1.1.14",
3
+ "version": "1.1.16",
4
4
  "mcpName": "io.github.kjgueye/netintel-mcp",
5
5
  "repository": {
6
6
  "type": "git",